把phpcmsmodulesattachmentattachments.php中
将 if(empty($this->userid)){
改成 if(empty($_POST['userid'])){
因为在提交时$this->userid一定为空,但在调用时用到了$attachment->set_userid($_POST['userid']);
而$_POST['userid']即是userid的数据。因此将$this->userid改成$_POST['userid']即可。
转载自:http://bbs.phpcms.cn/thread-879578-1-1.html
提交附件(视频等)时提示“undefined”,先查看站点管理中允许上传的文件里有没有添加附件的后缀名。默认站点管理中没有视频的后缀名。