Home > Backend Development > PHP Problem > How to solve destoon php error problem

How to solve destoon php error problem

藏色散人
Release: 2023-03-12 09:26:01
Original
2257 people have browsed it

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;
Copy after login

to

$CFG[‘file_mod’] = 0755 ;
Copy after login

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

Related labels:
php
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