Home CMS Tutorial DEDECMS dedecms5.7 What should I do if the article cannot be published?

dedecms5.7 What should I do if the article cannot be published?

Dec 25, 2019 am 10:15 AM
dedecms

dedecms5.7 What should I do if the article cannot be published?

dedecms5.7 What should I do if the article cannot be published?

Dedecms’ front-end member’s function of publishing articles is a bit problematic when using ckeditor. Members upload pictures. If using ckeditor, when a non-administrator account clicks the upload picture button, a pop-up will appear: Tip: Need to enter the background It is really depressing to log in only after managing the directory. Friends who encounter this problem can take a look

Recommended study: Dreamweavercms

1.dedecms5. 7. The default editor has become ckeditor. I personally feel that ckeditor is better than FCKeditor, and I am quite satisfied with this change.

However, the function of dedecms front-end members publishing articles is a bit problematic when using ckeditor. Submitting articles to front-end members does not require too many functions, and members can upload pictures. If using ckeditor, a non-administrator account is required. When you click the upload image button, a pop-up will appear: Tip: You need to enter the backend management directory to log in. The solution seen online is

Comment out the following code in "/include/dialog/congig.php":

The code is as follows:

if($cuserLogin->getUserID()<=0) 
{ 
if(empty($adminDirHand)) 
{ 
ShowMsg("<b>提示:需输入后台管理目录才能登录</b><br/><form>请输入后台管理目录名:<inputtype=&#39;hidden&#39;value=&#39;".urlencode($dedeNowurl)."&#39;/><inputtype=&#39;text&#39;value=&#39;mgr&#39;/><inputtype=&#39;submit&#39;value=&#39;转入登录&#39;/></form>","javascript:;"); 
exit(); 
} 
$gurl="../../{$adminDirHand}/login.php?gotopage=".urlencode($dedeNowurl); 
echo"<scriptlanguage=&#39;javascript&#39;>location=&#39;$gurl&#39;;</script>"; 
exit(); 
}
Copy after login

But this way users who are not logged in can also display that page, although there is an error. Also, all users can directly see all files in the upload root directory, which greatly reduces security. So, I began to miss FCKeditor's front-end image upload function. The uploaded files are in a separate directory for the user, and there are no permission issues, so I decided to continue using ckeditor in the back-end and use FCKeditor in the front-end.

In the website directory \include\inc\inc_fun_fun_funAdmin.php file, find line 139, functionSpGetEditor function, replace if($GLOBALS['cfg_html_editor']=='fck') with if($GLOBALS[' my_html_editor']=='fck'||$GLOBALS['cfg_html_editor']=='fck'), and then the previous

code is as follows:

if(!isset($GLOBALS[&#39;cfg_html_editor&#39;])) 
{ 
$GLOBALS[&#39;cfg_html_editor&#39;]=&#39;fck&#39;; 
}
Copy after login

Then follow the sentence

The code is as follows:

if(!isset($GLOBALS[&#39;my_html_editor&#39;])) 
{ 
$GLOBALS[&#39;my_html_editor&#39;]=&#39;0&#39;; 
}
Copy after login

Then add $GLOBALS['my_html_editor']='fck' above the file where you need to use FCKeditor; for example, if you want to use this editor in a member's ordinary article, add it in article_add Add $GLOBALS['my_html_editor']='fck'; at the top of .php.

Refresh the page, success.

Note: dedecms5.7 does not come with FCKeditor. It can be extracted from version 5.6 and placed in the include directory.

2. This problem occurs after upgrading from 5.6 to 5.7 and then importing 3 tables (additional table, main table, micro table) of the old database.

Because DEDECMS5.7 has more votes than 5.6 articles, the archives table has an additional votid field.

So this field must be added. Otherwise, when publishing or modifying an article, you will be prompted for an error in updating dede_archives.

Solution:

Please enter the following command on the background SQL command line and run it:

The code is as follows:

ALTERTABLE`dede_archives`ADD`voteid`mediumint(8)NOTNULL;
Copy after login

After executing the above command, the problem will be solved can be solved perfectly.

In addition, the upgrade also has problems related to the dede backend directory. The default dede backend directory is. You have to upload the files in the dede directory in the upgrade file to the backend directory you set.

The default template of 5.6 can also be applied in 5.7. As long as the coding is the same, just upload the update directly

The above is the detailed content of dedecms5.7 What should I do if the article cannot be published?. For more information, please follow other related articles on the PHP Chinese website!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Where is the imperial cms resource network template? Where is the imperial cms resource network template? Apr 17, 2024 am 10:00 AM

Empire CMS template download location: Official template download: https://www.phome.net/template/ Third-party template website: https://www.dedecms.com/diy/https://www.0978.com.cn /https://www.jiaocheng.com/Installation method: Download template Unzip template Upload template Select template

How dedecms implements template replacement How dedecms implements template replacement Apr 16, 2024 pm 12:12 PM

Template replacement can be implemented in Dedecms through the following steps: modify the global.cfg file and set the required language pack. Modify the taglib.inc.php hook file and add support for language suffix template files. Create a new template file with a language suffix and modify the required content. Clear Dedecms cache.

How to upload local videos to dedecms How to upload local videos to dedecms Apr 16, 2024 pm 12:39 PM

How to upload local videos using Dedecms? Prepare the video file in a format that is supported by Dedecms. Log in to the Dedecms management backend and create a new video category. Upload video files on the video management page, fill in the relevant information and select the video category. To embed a video while editing an article, enter the file name of the uploaded video and adjust its dimensions.

What website can dedecms do? What website can dedecms do? Apr 16, 2024 pm 12:24 PM

Dedecms is an open source CMS that can be used to create various types of websites, including: news websites, blogs, e-commerce websites, forums and community websites, educational websites, portals, other types of websites (such as corporate websites, personal websites, photo album websites, video sharing website)

How to use dedecms How to use dedecms Apr 16, 2024 pm 12:15 PM

Dedecms is an open source Chinese CMS system that provides content management, template system and security protection. The specific usage includes the following steps: 1. Install Dedecms. 2. Configure the database. 3. Log in to the management interface. 4. Create content. 5. Set up the template. 6. Manage users. 7. Maintain the system.

What loopholes does dedecms have? What loopholes does dedecms have? Aug 03, 2023 pm 03:56 PM

DedeCMS is an open source content management system that has some potential vulnerabilities and security risks: 1. SQL injection vulnerability. Attackers can perform unauthorized operations or obtain sensitive data by constructing malicious SQL query statements; 2. File Upload vulnerability, attackers can upload files containing malicious code to the server to execute arbitrary code or obtain server permissions; 3. Sensitive information leakage; 4. Unauthenticated vulnerability exploitation.

Accurate and reliable dedecms conversion tool evaluation report Accurate and reliable dedecms conversion tool evaluation report Mar 12, 2024 pm 07:03 PM

Accurate and reliable dedecms conversion tool evaluation report With the rapid development of the Internet era, website construction has become one of the necessary tools for many companies and individuals. In website construction, using a content management system (CMS) can manage website content and functions more conveniently and efficiently. Among them, dedecms, as a well-known CMS system, is widely used in various website construction projects. However, sometimes we are faced with the need to convert the dedecms website to other formats, in which case we need to use a conversion tool

A simple way to learn dedecms encoding conversion function A simple way to learn dedecms encoding conversion function Mar 14, 2024 pm 02:09 PM

Learning dedecms encoding conversion function is not complicated. Simple code examples can help you quickly master this skill. In dedecms, the encoding conversion function is usually used to deal with problems such as Chinese garbled characters and special characters to ensure the normal operation of the system and the accuracy of data. The following will introduce in detail how to use the encoding conversion function of dedecms, allowing you to easily cope with various encoding-related needs. 1.UTF-8 to GBK In dedecms, if you need to convert UTF-8 encoded string to G

See all articles