Reset Files and Directories permissions

From time to times, we must fix permissions on files and directory in order to secure an installation or to fix a broken one.

The process is quite straight forward and simple.

If you are hosted with us:
1) Log to your server using SSH
2) Execute the following software (it is installed with our servers):
fixpermissions

If you are hosted on your own dedicated server
1) Log to your server using SSH
2) Point yourself in your Apache folder (at the root of your website)
3) Run those commands

find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod 550 pear
chmod 550 mage

And the last bit: QA!
4) Visit your Magento's install and see if everything still run smoothly


And that's about it!
  • 12 Users Found This Useful
Was this answer helpful?

Related Articles

SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry '2828-148-1-471' for key 'PRIMARY'

While trying to reindex your store using the command line, you stumble on the following...

How to Show or hide out of stock products in Magento

The process is fairly straight forwardShow out of stock products in Magento   Login to the...

Reindexing

In some situation when you want to re-index Magento catalog you will get an error message or...

How to add a Contact Us form to a page in Magento

Magento has a default Contact Us page usually located in the footer of the store. This page...

How to add and edit attribute sets in Magento

Each product that you add in Magento can be configured thanks to a set of attributes. These are...