Magento Connect install Error moving uploaded file

大憨熊 提交于 2020-01-23 03:56:33

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!