0

to fix an issue in Magento I found this solution here on Stackexchange:

I used this command line in Putty:

So after that I could fix the issue.

Jason Dana
  • 27
  • 6

1 Answers1

1

This is help you may be try this :-

Use The following commands to set permissions, it may help

find . -type f -exec chmod 644 {} \;  
find . -type d -exec chmod 755 {} \;     
find ./var -type d -exec chmod 777 {} \;     
find ./media -type d -exec chmod 777 {} \;   
chmod 777 ./app/etc              
chmod 644 ./app/etc/*.xml 
Mohit Patel
  • 3,778
  • 4
  • 22
  • 52