Home > Backend Development > PHP Tutorial > Solution to Internal Server Error during destoon installation_PHP tutorial

Solution to Internal Server Error during destoon installation_PHP tutorial

WBOY
Release: 2016-07-13 10:24:24
Original
1263 people have browsed it

Many friends have encountered an "Internal Server Error" error message when installing destoon, which resulted in failure to install. The solution is as follows:

Method 1. Delete the .htaccess file in the root directory . If it doesn’t work, please try method 2;

Method 2. For Liunx/Unix servers, if does not support the 0777 attribute, you can modify the root directory config.inc.php :

$CFG['file_mod'] = 0777;

Copy after login

changed 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 to the 0755 attribute.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/825484.htmlTechArticleMany friends have an "Internal Server Error" error message when installing destoon, which makes it impossible to install. How to solve it The method is as follows: Method 1. Delete the .htaccess file in the root directory...
Related labels:
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