Posts by Marcos Huss • 11 points
1 post
-
1
votes1
answer806
viewsA: Permission issues in the directory of the user. How to reset permissions?
Open the following file: lib/Varien/File/Uploader.php Find this line: chmod($destinationFile, 0640); Replace 640 with 644, so: chmod($destinationFile, 0644); Find this other line: if…