phpcms图片不存在的解决办法

来源:undefined 2024-12-26 17:38:27 1052

phpcms图片不存在的解决办法:首先找到并打开“attachments.php”文件;然后将“if(empty($this->userid)){”改成“if(empty($_POST@[userid])){”即可。

PHPCMS v9上传图片提示"undefined"的解决办法

把phpcmsmodulesttachmentttachments.php中

将 if(empty($this->userid)){

改成 if(empty($_POST@[userid])){

立即学习PHP免费学习笔记(深入)”;

因为在提交时$this->userid一定为空,但在调用时用到了

$attachment->set_userid($_POST@[userid]);

而$_POST@[userid]即是userid的数据。

因此将$this->userid改成$_POST@[userid]即可。

以上就是phpcms图片不存在的解决办法的详细内容,更多请关注php中文网其它相关文章!

最新文章