Hi,
How to enable package manager in admin - do I have to chmod 777 everyfile/folder to use magento connect or theres specific folders which should be chmod to 777.
I think it isnt safe to have everything with 777 permissions
Best regards,
Piotr
I really do hope its not all folders 777, and I really doubt it, as it would be a great security issue. But I am sure someone knows exactly what it requires, I would think it would be a localized permission, and maybe not even 777, perhaps a 666 etc.
i would not recommend to change the permission to just about everything recursively as the command that you use might do so.
Here is a command that you can run on your SSH window to CHMOD only the directly and the subdirectories but not the files under those directories:
find [YOURDIR] -type d -exec chmod 777 {} \;
All you have to do is to go to your magento installation directory on your server through SSH and from that directory type this command:
find . -type d -exec chmod 777 {} \;
This will change the permissions of only directory and subdirectories under magento; which changing the permissions on the magento directory itself as you do not need to have it changed.
Obviously it would be better to know exactly which directory(ies) need this fix and only apply this change to them.
Do not worry about the permissions issue with var/cache. As you must have guessed that is where magento cache is written and it can’t be modified while the store is live.
Stay tuned guys as we are going to release some themes soon. You can view a preview of one of our upcoming themes here:
hello i have trouble with magentoconnect and menus in admin
when i do a fresh install everything work nice even the menus in the admin section , to make magentoconnect work i do the chmod 777 on all directory (seems strange to me) but after that the menus in the admin section don’t work, so i’m not able to install the fooman patch, i tried to install the extension by ssh but no way to make it work it keep telling me that the extention is not found while i’m sure of the name (on my local machine everything work fine so i’m able to retrieve the name of the extentions and the version availiable)
EDIT: my ssh upgrade don’t work simply because the ssh shell don’t have internet access on my hoster company :(
RE EDIT : i reinstalled magento , the magentoconnect worked without the chmod 777 (don’t ask me how) so i was able to install the extensions now all is ok ...
Same thing happens to me, won’t be fixed just with a reinstall. Chmod 755 for the folders and 644 for the files @ the js folder and everything will be alright.