
Originally Posted by
dannyman12345
http-500 request.
You are perhaps running phpSUexec on your server... if so, your max permissions can be 755, not 777.
You need to check with your hosting company, ask them if they run phpSuExec.
If they are - set your permissions as needed (max 755), and edit in the /install/install.php the two lines that check if permissions are 777 to always return true.
Code:
function isFullAccessible($filename)
{
clearstatcache();
$perms = fileperms($filename);
return ($perms & 0x0004 && $perms & 0x0002 && $perms & 0x0001 && !($perms & 0x0200)) ? true : false;
}
function isRWAccessible($filename)
{
clearstatcache();
$perms = fileperms($filename);
return ($perms & 0x0004 && $perms & 0x0002) ? true : false;
}
to
Code:
function isFullAccessible($filename)
{
clearstatcache();
$perms = fileperms($filename);
return true;
}
function isRWAccessible($filename)
{
clearstatcache();
$perms = fileperms($filename);
return true;
}
Smoge
Bookmarks