Dedecms: solution to "title cannot be blank"

Source: Internet
Author: User

V5.7 after logging on to the background, it is okay to publish the English title. The Chinese publishing prompt "the title cannot be blank" is displayed ".

Cause: htmlspecialchars is utf8 encoded by default in php5.4. The Chinese character string escaped by htmlspecialchars is empty, that is, the title is empty.

Solution: Add ent_compat and 'gb2312' to htmlspecialchars to modify the default encoding value.

Specific modification page:

1. Dede/article_add.php and Dede/article_edit.php
Set
$ Title = htmlspecialchars (cn_substrr ($ title, $ pai_title_maxlen ));
Change
$ Title = htmlspecialchars (cn_substrr ($ title, $ pai_title_maxlen), ent_compat, 'gb2312 ');

2. Include/ckeditor/ckeditor_php5.php row 138
Replace htmlspecialchars ($ value) with htmlspecialchars ($ value, ent_compat, 'gb2312 ')

Test and publish the article successfully.

Tip: if you do not want to modify the source code of the program, we recommend that you change to php5.3. After the upgrade, you can change the space server after php5.4 is supported.

 

Dedecms: solution to "title cannot be blank"

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.