What should I do if phpcms v9 cannot post articles?
phpcms v9 front-end member center online submission shows "column submission prohibited", online submission cannot publish articles
Error message: Column submission prohibited
Regarding 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 before User - Manage Member Group - Corresponding user group name modification -
Finally just remember to cache it
--------------------------------- -------------------------------------------------- -------------------------------------------------- --------------------------------------------------
However, this method is not effective for some customers. His 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');
PHP Chinese website, a large number of free PHPCMS tutorials, welcome to learn online!
The above is the detailed content of What should I do if phpcms v9 cannot post articles?. For more information, please follow other related articles on the PHP Chinese website!