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.