I’m trying to figure out how to get my Magento to upgrade from 1.5.1 to 1.6.1
In the Magento Connect Manager, I had several packages that upgraded, including several that are now at 1.6.1 (Mage_Locale_en_US, Mage_Downloader and Lib_Mage),
But the site and admin still show (ver. 1.5.1.0). How do I upgrade fully to 1.6.1? I’ve tried flushing the cache of both the browser and of Magento. What am I doing incorrectly, or missing?
Here is a good article for upgrading to 1.6 version:
http://www.expertmagentodevelopers.com/blog/how-to-upgrade-from-magento-1-5-1-to-magento-1-6-0/
http://www.expertmagentodevelopers.com/blog/upgrade-magento-from-1-4-to-1-5-or-1-6/
http://www.expertmagentodevelopers.com/blog/magento-1-6-upgrade-errors-with-solutions/
My advice: make a brand new installation of Magento 1.6.1 and then move your products and stuff from your current database on Magento 1.5.1. To help you out in moving your database, you can use this: http://www.shopping-cart-migration.com/supported-carts/55-magento
Before upgarding I upgraded all my widgets in Magento.
I updated with this: http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/magento_1.5_to_1.6_upgrade and I got the error wich is mentioned in this forum several times (mysql 1052 and errno: 152 if I remember right).
After reading this: http://www.expertmagentodevelopers.com/blog/how-to-upgrade-from-magento-1-5-1-to-magento-1-6-0/
I also made the change in /app/etc/config.xml:
<initStatements>SET NAMES utf8</initStatements>
To
<initStatements>SET NAMES utf8; SET FOREIGN_KEY_CHECKS=0;
SET UNIQUE_CHECKS=0;</initStatements>
I changed the mage-file permissions to 775. After that I executed this command via ssh:
./mage mage-setup .
with the result:
success
success
(and something what already was in there and was not success because of that...)
Hope this helps: I´m not sure wich one of those the on who helped me? Mayby the mage-file permissions? and the xml? and the mage-setup? :D
- Kati
And my Magento started working with multiple widgets in it.