We have a strange error with file permissions with our new zencart installation (v1.3.8)
Zencart is telling us that our configure.php is writeable despite the fact we have set permissions as 644 and confirmed they are set. (444 and 400 give the same result)
We even used the same check that zencart uses to display the warning (is_writeable) and added it to init_header.php to confirm our suspicions.
if(is_writeable($check_path))
{
echo ("$check_path is writeable");
}
else
{
echo ("$check_path is not writeable");
}
This tells us at the top of the page that configure.php IS NOT writeable, followed by the zencart warning that IT IS???
For now we have just disabled the warning (I know, I know), but it would be nice if we could get to the route of the problem.



Thats just asking for buggy code!
) and the shell tells us the permissions have been set. I'm wondering if zencart is just ignoring the permissions. 

