|
I found a fix for the images not popping up and the zoom feature no longer working after upgrading to 1.1.7
In the Magneto Connect area Install New Extensions type in this access key (entire thing):
magento-core/Mage_All_Latest
This upgrades all latest core elements of magento.
This fixed my images not popping up or zooming.
it also fixed an issue of configurable products not adding up a total.
it also made it where products may now be added to the cart
and who knows what else!
HOWEVER, after doing the above, you must reset your permissions in many places:
reset permissions of JS folder (& all files/folders below) to 755
then inside /installpath/js/lib/ CHMOD 644 the javascript files there.
500 internal server error:
reset permissions of index.php to 755
The following folders/files always need apache write permissions for Magento to work:
var + subdirectories
app/etc/use_cache.ser
media + subdirectories
If having an issue viewing the connection manager, set all files/folders inside the downloader directory to 755.
Overall most permission for all directories should be 755 while most files should be 644. As for Magento Connect, it should be 777.
-----------------------------------------------------------------------------------------------------------------------
More info from other posts: (you may not need after doing the above)
Ensure that the directories app/etc , var , and media are writable by the web server 777If your server has suPHP or suEXEC enabled, you will need to use permission 755 instead of 777.
app/etc
var
media (and all sub-folders within media)
(assuming your server is not suPHP enabled). All other files need to be CHMOD to 644 while all other folders to 755.it needs to done for every file and directory. If you have SSH access try running the following command:-
find . -type d -print0 | xargs -0 chmod 0755 && find . -type f -print0 | xargs -0 chmod 0644
or:
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod o+w var var/.htaccess app/etc
chmod 550 pear
chmod -R o+w media
The above commands need to be executed from the root directory where Magento is installed
http://www.magentocommerce.com/wiki/groups/227/resetting_file_permissions
For PHP5 CGI, read the installation guide for permission settings
http://www.magentocommerce.com/wiki/magento_installation_guide
|