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
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;".
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
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!