I changed my site (shared hosting) permission following the link here: http://devdocs.magento.com/guides/m1x/install/installer-privileges_after.html
find . -type f -exec chmod 400 {} \;
find . -type d -exec chmod 500 {} \;
find var/ -type f -exec chmod 600 {} \;
find media/ -type f -exec chmod 600 {} \;
find var/ -type d -exec chmod 700 {} \;
find media/ -type d -exec chmod 700 {} \;
chmod 700 includes
chmod 600 includes/config.php
After doing this, I get the error:
You don't have permission to access /mymagentofolder/ on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
How can I resolve, and what are the correct permissions to have?
Thanks
/var/www/-> html /magento/ – MagenX Mar 04 '16 at 19:35