问题
I have problem with magento connect. i am not able to install any downloaded packages of magento extensions like mailchimp, onestep checkout package.
While i am uploading package, its shows error like Error moving uploaded file
i dont know what to do. please help me..
Thanks
回答1:
The solution to this problem is to set all folders permission to 777.
Go to your installation root folder and run the following command (You should have access to SSH on your server to run this command):-
find . -type d -exec chmod 777 {} \;
Now you will not get the error on Magento Connect Manager and you will be able to install any extension from there.
Don’t forget to change the folder permission to 755 after you are done with installing your extension from Magento Connect Manager.
To do this, run the following commands:-
find . -type d -exec chmod 755 {} \;
chmod 777 var var/.htaccess app/etc
find var -type d -exec chmod 777 {} \;
chmod -R 777 media
来源:https://stackoverflow.com/questions/14615329/magento-connect-install-error-moving-uploaded-file