Home Backend Development PHP Tutorial Detailed explanation of the steps for modifying the data directory name of DEDECMS website security guide

Detailed explanation of the steps for modifying the data directory name of DEDECMS website security guide

Apr 01, 2017 am 10:06 AM

This article mainly introduces the Dreamweaver DEDECMS websiteSecurity Strategy and steps for modifying the name of the data directory. There are many loopholes in dedecms. It is relatively safer to modify the name of the default data directory. Some friends in need can refer to it Recently, dedecms vulnerabilities have appeared frequently, and DreamWeaver officials have also provided many corresponding measures. What I will tell you today is that dedecms officially recommends users to modify the data file name. For Virtual Host, some virtual host restrictions do not allow moving outside the web directory. In order to minimize the possibility of the website being attacked, we can rename the data directory, which further reduces attacks. possible.

1. Modify the common.inc.php file in the include directory. Open the file and find line 16:

The code is as follows:

define('DEDEDATA', DEDEROOT.'/data');
Copy after login

Change data to the directory name you want to change, for example: to 22badata, then change it to:

The code is as follows:

define('DEDEDATA', DEDEROOT.'/22badata');
Copy after login

2. Use FTP to rename the data directory to 22badata, which is the same as the file name changed in the first step.

3. In the background of the website, go to System-Basic System Parameters-Performance Options, and change "Template Cache Directory:" to: /22badata/tplcache.

The change is basically completed, but there are still some problems. Open the website directory and you will find that you have jumped to the Installation file. Don’t worry, modify the index.php file in the root directory of the website, remove the first few lines of the file comment , and comment as follows, that is, add // in front of the code, the code is as follows:

The code is as follows:

//
if
(!
file_exists
(
dirname
(FILE).'/data/common.inc.php'))
//{
// header('Location:install/index.php');
// exit();
//}
Copy after login

In this way, your website can be opened normally. When updating in the background, there are still problems. There are problems with the website map, RSS, and JS. Then we only You need to create a new data directory in the root directory of the website, and then create two new rss and js directories under the data directory. That's it. Update it again and see if everything is normal?

dedecms template download address: www.php.cn/xiazai/code/dedecms

Note: The change directory mentioned above is 22badata, and 22badata can be freely replaced with the directory you want. name.


The above is the detailed content of Detailed explanation of the steps for modifying the data directory name of DEDECMS website security guide. 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

php CodeIgniter Security Guide: Protect your website from attacks php CodeIgniter Security Guide: Protect your website from attacks Feb 19, 2024 pm 06:21 PM

1. Use the latest version of CodeIgniter The CodeIgniter team regularly releases security patches and updates to fix known vulnerabilities. Therefore, it is important to ensure that you are always using the latest version of CodeIgniter. You can download the latest version by visiting CodeIgniter’s official website. 2. Enforce the use of secure connections (HTTPS) https can encrypt the data passed between your website and users, making it more difficult for malicious users to intercept and steal. You can enable HTTPS by installing an SSL certificate on your server. 3. Avoid using default configurations CodeIgniter provides many default configurations to simplify the development process. However, these default configurations may not

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

Detailed explanation of the impact of Discuz canceling the verification code function on website security Detailed explanation of the impact of Discuz canceling the verification code function on website security Mar 11, 2024 am 10:45 AM

"Discussion on the Impact of Discuz's Canceling the Verification Code Function on Website Security" With the rapid development of the Internet, website security issues have become increasingly prominent. As a common security verification mechanism, verification code is widely used on websites. However, some websites may cancel the verification code function in order to improve user experience. Will this have a negative impact on website security? This article will discuss the impact of Discuz's cancellation of verification code function on website security and provide specific code examples. 1. The function and principle of verification code Verification code (CAP)

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.

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

See all articles