Personal tools
You are here: Home Docs Error fixes .htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

If you're seeing errors in your apache log something like this:

.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable

and you've already checked for the .htaccess file in the directory in question, chances are you need to fix some permissions.  You can do something like the following:

find . -type f -exec chmod 0755 {} \;
find . -type d -exec chmod 0755 {} \;
Document Actions