Home > CMS Tutorial > DEDECMS > body text

What should I do if the page is blank after the dedecms article jump attribute is turned on?

藏色散人
Release: 2019-12-26 09:53:21
Original
2331 people have browsed it

What should I do if the page is blank after the dedecms article jump attribute is turned on?

dedecms What should I do if the page is blank after the article jump attribute is turned on?

When using DEDECMS, nothing is displayed on the jump page. When editing in the background, all pages are blank.

Cause: When using the header(location:url) function to jump, there may be input content in front.

Recommended learning: Dream Weaver cms

Solution:

Front desk:

The code is as follows:

include\arc.archives.class.php,
第499行
header("location:{$this->Fields['redirecturl']}");
Copy after login

Replace with

The code is as follows:

echo &#39;<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=&#39;.$this->Fields[&#39;redirecturl&#39;].&#39;">&#39;; 
后台:
admin\archives_do.php,
第33行
header("location:{$gurl}?aid=$aid");
替换为
echo &#39;<META HTTP-EQUIV="REFRESH" CONTENT="0; URL=&#39;.$gurl.&#39;?aid=&#39;.$aid.&#39;">&#39;;
Copy after login

The above is the detailed content of What should I do if the page is blank after the dedecms article jump attribute is turned on?. 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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!