What should I do with the backend card of Dede?
Netizens who have used Dreamweaver, especially in the dede column or when there is a lot of data, when we log in for the first time from the backend, many netizens will find that the dede backend will usually appear after logging in. stuck, or the dede background is stuck, or it is very stuck
Recommended study:梦Weavercms
Everyone says this is It's because the DreamWeaver code is not well optimized. In fact, some of it is because of this, but it's not entirely because of this.
Analysis of reasons why dede login background is stuck
After logging in to the background, three parts of content are loaded: the top, the left, and the right.
On the top, I simply checked the permissions and it didn’t get stuck. On the left, I just checked the permissions and it didn’t get stuck. Then the reason lies in the content on the right. So what is the cause? On the right side, we will find information such as "Information Statistics", the latest documents, and system versions.
Information statistics are very likely to be stuck, mainly because about four or five tables are queried, and if there is a lot of data in these tables, it may cause stuck or stuck conditions.
Latest documentation, not very likely.
Update information. If the permissions are not set properly, it may cause stucks during reading and writing.
The best solution is to delete all displayed information. In this way, no matter what the reason is, the database will not be queried after logging in, and it will not be stuck.
dede background card/suspended death solution
Step 1: Open the ftp software, enter the normal ftp login account and password and port number to successfully enter the website.
Step 2: Open the backend directory dede of the dede website.
Note: dede is the default backend directory of dede. If it is a normally used website, the dede directory may have been modified.
Step 3: Find the index_body.php file in the dede directory and download it.
Step 4: Delete all the code in the article, replace it with the following code and save it.
The code is as follows:
<?php echo ""; ?>
Step 5: Open the dede backend again and log in successfully again. You will find that the dede backend will no longer be stuck or suspended.
The above is the detailed content of What to do with Dede background card?. For more information, please follow other related articles on the PHP Chinese website!