Home > CMS Tutorial > PHPCMS > body text

What should I do if phpcms v9 cannot post articles?

藏色散人
Release: 2020-02-03 10:43:18
Original
2054 people have browsed it

What should I do if phpcms v9 cannot post articles?

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

What should I do if phpcms v9 cannot post 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!

What should I do if phpcms v9 cannot post articles?

The user's contribution permissions must be set before User - Manage Member Group - Corresponding user group name modification -

What should I do if phpcms v9 cannot post articles?

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);
Copy after login

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');
Copy after login

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!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template