Home > Article > CMS Tutorial > What should I do if the phpcms front desk cannot submit articles?
phpcms What should I do if the front desk cannot submit articles?
Error message: Column submission is prohibited
Related recommendations:phpcms tutorial
About this error report , the first thing that came to mind was that the submission permission of the column was not turned on, so I checked whether the submission permission of the column was turned on normally. This is mainly viewed in the background of the program.
In the background - content - management column - modify the column you want to contribute - permission settings, select the member group below to allow submission!
Updating the site-wide cache should be OK!
The user's contribution permissions must be set beforehand User - Manage Member Group - Modify the corresponding user group name -
Finally, just remember to cache it
--------------
However, this method has no effect on some customers. The website mainly failed after upgrading. Some customers also encountered such problems on the PHPCMS official website forum.
It turns out that the official answer to this problem is a program bug. The temporary solution is as follows:
Change lines 111 to 118 of the original phpcms/modules/member/content.php
foreach ($CATEGORYS as $catid=>$cat) { if($cat['siteid']==$siteid && $cat['child']==0 && $cat['type']==0) break; } $catid = $_GET['catid'] ? intval($_GET['catid']) : $catid; //判断本栏目是否允许投稿 $priv_db = pc_base::load_model('category_priv_model'); if (!$priv_db->get_one(array('catid'=>$catid, 'roleid'=>$memberinfo['groupid'], 'is_admin'=>0, 'action'=>'add'))) showmessage(L('category').L('publish_deny'), HTTP_REFERER);
changed to:
$priv_db = pc_base::load_model('category_priv_model'); //加载栏目权限表数据模型 foreach ($CATEGORYS as $catid=>$cat) { if($cat['siteid']==$siteid && $cat['child']==0 && $cat['type']==0 && (!$priv_db->get_one(array('catid'=>$catid, 'is_admin'=>0, 'action'=>'add')) || $priv_db->get_one(array('catid'=>$catid, 'roleid'=>$memberinfo['groupid'], 'is_admin'=>0, 'action'=>'add')))) break; } $catid = $_GET['catid'] ? intval($_GET['catid']) : $catid; if (!$catid) showmessage(L('category').L('publish_deny'), APP_PATH.'index.php?m=member'); //判断本栏目是否允许投稿 if ($priv_db->get_one(array('catid'=>$catid, 'is_admin'=>0, 'action'=>'add')) && !$priv_db->get_one(array('catid'=>$catid, 'roleid'=>$memberinfo['groupid'], 'is_admin'=>0, 'action'=>'add'))) showmessage(L('category').L('publish_deny'), APP_PATH.'index.php?m=member');
The above is the detailed content of What should I do if the phpcms front desk cannot submit articles?. For more information, please follow other related articles on the PHP Chinese website!