Install Magento Connect Error while moving downloaded file

I have a problem connecting magento. I cannot install any downloaded magento extension packages such as mailchimp, the onestep verification package.

While I am downloading the package, its error appears as Error transferring the downloaded file

I do not know what to do. please help me..

thank

+1
source share
1 answer

The solution to this problem is to set the resolution of 777 for all folders.

Go to the installation root folder and run the following command (you must have access to SSH on your server to run this command): -

find . -type d -exec chmod 777 {} \;

Now you will not get an error in Magento Connect Manager, and you can install any extension from there.

755 , Magento Connect Manager.

: -

find . -type d -exec chmod 755 {} \;
chmod 777 var var/.htaccess app/etc
find var -type d -exec chmod 777 {} \;
chmod -R 777 media
0

All Articles