Home > Article > CMS Tutorial > Dream Weaver dedecms prompts what to do if body has not allow words
Dream Weaver dedecms prompts what should I do if the body has not allow words?
Dreamweaverdedecms prompts body has not allow words problem solving
This sentence "body has not allow words!" is in English. The meaning is probably "The article has impermissible characters!" I suddenly realized that I must have set too many sensitive words in the "Interactive Settings" in the "System" - "System Basic Parameters" - Settings section in the background. , allowing member users to be tricked.
Recommended study: 梦Weavercms
When I am, I delete those dispensable ones, and as a result, members post articles normally. It can be seen that the problem lies in the "basic system parameters". And when members encounter the prompt "body has not allow words!" and don't know what it means, you can change the English prompt into Chinese prompt through the following modifications, so that members will not be flustered——
Modify the file: include/filter.inc.php, about 19 lines long.
The code is as follows:
if($cfg_notallowstr!='' && eregi($cfg_notallowstr,$svar)) { preg_match_all("@{$cfg_notallowstr}@",$svar,$me); $me = array_unique($me[0]); $notallowkeys = ''; foreach($me as $v){ $notallowkeys .= $v . ', '; } $msg = '您发布的内容中带有不被允许的文字 :' . $notallowkeys; ShowMsg($msg,'-1'); exit(); }
After the file is modified, upload it and replace it.
The above is the detailed content of Dream Weaver dedecms prompts what to do if body has not allow words. For more information, please follow other related articles on the PHP Chinese website!