Open the "config.inc.php" file; <&order>Modify "$CFG['file_mod']=0777;" to "$CFG['file_mod" ']=0755;" That's it."/> Open the "config.inc.php" file; <&order>Modify "$CFG['file_mod']=0777;" to "$CFG['file_mod" ']=0755;" That's it.">

Home  >  Article  >  Backend Development  >  How to solve destoon php error problem

How to solve destoon php error problem

藏色散人
藏色散人Original
2021-09-01 11:28:582246browse

Destoon php error solution: 1. Delete the .htaccess file in the root directory; 2. Open the "config.inc.php" file; 3. Modify "$CFG['file_mod']=0777;" Just "$CFG['file_mod']=0755;".

How to solve destoon php error problem

The operating environment of this article: linux5.9.8 system, PHP7.1 version, DELL G3 computer.

How to solve the destoon php error problem?

destoon CGI/PHP program error: The script is not allowed to be executed

After destoon program upgrade

How to solve destoon php error problem

Method 1. Delete the .htaccess file in the root directory. If it does not work, please try method 2;

Method 2. For Liunx/Unix servers, if 0777 is not supported Attribute, you can modify the

root directory config.inc.php

$CFG[‘file_mod’] = 0777;

to

$CFG[‘file_mod’] = 0755 ;

. Then, FTP changes the directories and files that have been automatically modified by the system to the 0777 attribute (index .php) is the 0755 attribute.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to solve destoon php error problem. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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
Previous article:What does php smart mean?Next article:What does php smart mean?