Home > CMS Tutorial > DEDECMS > body text

What should I do if the backend of DreamWeaver is stuck?

藏色散人
Release: 2019-12-27 09:55:41
Original
2288 people have browsed it

What should I do if the backend of DreamWeaver is stuck?

What should I do if the backstage of Dreamweaver is stuck?

Nothing happens when clicking on the column list on the left in the background, and may even cause the entire browser to crash. So what causes such consequences? When accessing the homepage of the DreamWeaver backend, it will check whether the website has updated patches, program directory security settings, etc. The specific solutions are as follows

Recommended learning:梦Weavercms

After logging into the backend of DEDECMS, nothing happens when clicking on the column list on the left, and may even cause the entire browser to crash. So what is the reason for such a bad result? Jianhuili took everyone together to solve the problem of "resolving the problem of DEDECMS logging into the background and failing to respond for a long time", and thoroughly analyzed the cause of the problem.

Cause Analysis

Webmasters who frequently log in to the backend may find that when accessing the homepage of the Dreamweaver backend, it will check whether the website has updated patches, program directory security settings, etc. Many servers have disabled access to networks other than themselves, so when Dreamweaver checks for updates, it is equivalent to accessing networks outside itself on the server, and Dreamweaver's program does not limit the maximum update check time, causing the browser to Has been in a waiting state. In fact, this is an oversight by Dreamweaver itself. From a technical point of view, this can be completely solved.

Solution

1. Delete the following code in templets/index_body.htm in the website backend (default dede) directory.

The code is as follows:

<scripttype="text/javascript">functionshowMore(){ 
$("#allInfo").toggle(); 
$("#allInfoTD").toggle();} 
$(function(){ 
$.get("index_testenv.php",function(data) { if(data !== &#39;&#39;) { 
$("#__testEvn").html(data); } })}) 
</script>
Copy after login

2. Overwrite and replace the file to solve the problem.

The above is the detailed content of What should I do if the backend of DreamWeaver is stuck?. 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!