Magento – magento 1.9.1.1 permission error – 403 forbidden

ce-1.9.1.1

I tried to install the latest magento 1.9.1.1 at my cpanel host. But it occurred a 403 forbidden error when I visited my site to install…

I checked that some files with 640 permission, but not 644. So I think there is little error with this official 1.9.1.1 zip file. Is anybody came across this issue?

Best Answer

Updating system-wide file permissions after unzipping/extracting the .zip and make sure you're in the root directory of your Magento instance. Then run these commands

    find ./ -type f | xargs chmod 644
    find ./ -type d | xargs chmod 755
    chmod -Rf 777 var
    chmod -Rf 777 media
Related Topic