How to fix file and folder permissions for a wordpress website ?
How to fix file and folder permissions for a wordpress website ?
The files and folders of a wordpress website should have proper permission to work the site properly
All the folders should have 755 and all files should have 644 permissions
To fix this via a Terminal we we can use these command
sudo find public_html -type d -exec chmod 755 {} \;
sudo find public_html -type f -exec chmod 644 {} \;
this will fix the issue
Comments
Post a Comment