top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What permissions required for file and folder In Magento ?

+3 votes
304 views
What permissions required for file and folder In Magento ?
posted Jan 28, 2016 by Vrije Mani Upadhyay

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

You can reset Magento file & Directory to their default and secure permissions, by following commands from the directory where Magento is installed

find . –type f –exec chmod 644 {} ;

find . –type d –exec chmod 755 {} ;

chmod +x mage

answer Feb 18, 2016 by Deepak Negi
...