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

Solution to Internal Server Error during destoon installation_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:24:241194browse

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;

changed to:

$CFG['file_mod'] = 0755 ;

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