A Magento Upgrade Guide to the Latest Version

Posted on: 26 Nov 2019 by Arun Singh

This is the most comprehensive guide of  Magento 1.3.x, 1.4.x, 1.5.x, 1.6.x and 1.7.x upgrade process.

Let’s jump into the process

1.4.0.1 To 1.4.1.0

Using SSH, go to the root directory of your Magento installation.

./pear install magento-core/Mage_All_Latest

Then

./pear upgrade-all

Then log in to your admin section, and refresh all caches.

1.3.2.4 To 1.4.0.1

Note: If your products are not appearing in the catalog, you need to refresh the product index. With the Magento CE 1.4, there is a new option in the Inventory Configuration.
Make sure that the Configuration > Inventory > Show Out of Stock items is set to “yes”, if your store used to display Out of Stock items.

Follow the procedure as mentioned in http://www.webshopapps.com/blog/2010/02/upgrading-magento-to-version-1-4-keeping-it-simple/ for a safe and nice upgrade. Ideally, you should install a fresh copy of Magento and point it to a clone of the 1.3.2.4 DB at the installation stage.

This means a lot of configuration in the system area will go back to defaults.
You have to go into the configuration area and make sure they are reset to your old settings.

Upgrading Magento With A Full Package Or Via SVN

Here are the steps for upgrading Magento with a full package or via SVN. Steps for upgrading with the Magento Connect Manager are below.
1. Backup your database
2. – In Magento go to Admin, System → Tools → Backups
3. – You can use PHPMyAdmin (but this may fail due to time-limits on php scripts)
4.- You can export in SSH by typing…
5. – mysqldump -u USER -p DBNAME > dump.sql
6. – Reimport using mysql -u USER -p DBNAME < dump.sql
7. Backup all the code you modified yourself, and don’t forget to keep the original installation archive
8. Take care of saving the media directory that contains all the uploaded product/category images
9. Create a backup copy of app/etc/local.xml file
10. Download a new installation archive or run SVN update if you checked it out from the Magento repository
11. Extract and upload all the files it contains to your server
12. Delete var/cache and var/session directories
13. Point your browser to any Magento page
14. Database upgrades should happen automatically
15. You are done!

Upgrading Magento Using The Magento Connect Manager

Go to ( https://www.your_server_magento.com/downloader)
Log in using a user who has full permissions
Make sure to select “Clear all sessions after successful install or upgrade”
How To Upgrade From Tarball Installation
It is possible that you will see no extensions in MagentoConnect Manager. This means that you have just uploaded the files without using PEAR downloader.
In that case enter magento-core/Mage_All_Latest in the extension key field and click the Install button.
This will install all the latest MagentoConnect core packages on top of existing files and will allow future upgrades through MagentoConnect.
Note: Make sure you installed the ‘mcrypt’ extension for PHP as Magento-core requires this.
If, after the install has completed and you hit Refresh, you get a 500 error, and you get the same on your regular admin page and your storefront, you may need to change permissions on your .php files. SSH into your server, navigate to your Magento directory and check the permissions on index.php.
If may have been changed from 644 (rw-r-r) to 666 (rw-rw-rw) during the install. If so, you can issue this command to change the permissions on all your .php files to 644 (the -v switch will make it verbose, so you will see all the changes as they are made): find -type f -name ‘*.php’ -exec chmod -v 644 {} ;
(Please note there should be a backward slash before the final semi-colon but the wiki editor sometimes takes it out.)
Reload downloader/index.php to continue.

How To Upgrade All Available Extensions

There should be at least one extension marked in yellow, which means a higher version is available on the MagentoConnect server
Click ‘Select all upgradable extensions’
Click ‘Commit changes’
Watch the console progress for error messages
After successfully upgrading click the ‘Refresh’ button that will appear under the console frame.

How To Upgrade Specific Extensions

For each desired extension upgrade choose ‘Upgrade’ in the dropdown
To upgrade Magento Core modules choose the following packages, and all required dependencies will be upgraded automatically:
magento-core/Interface_Adminhtml_Default
magento-core/Interface_Frontend_Default
magento-core/Interface_Install_Default
magento-core/Mage_Core_Adminhtml
magento-core/Mage_Core_Modules

How To Upgrade MagentoConnect Manager

MagentoConnect Manager is not installed as a PEAR package by default. If you wish to upgrade it, you will first need to install it as a PEAR package.
Enter magento-core/Mage_Downloader in the Extension key input field and click Install.
After it is installed the first time, you can upgrade it the same way as other extensions.
You can not uninstall MagentoConnect Manager

Using SSH Shell Access

You need to discuss the folder/file permissions here!!!
To initialize the Magento PEAR command-line registry, run the following command from the shell. Make sure you are in the Magento root folder:

./pear mage-setup .

(make sure to include the second ‘.’)
select php version (unix): MAGE_PEAR_PHP_BIN=/usr/local/bin/php; export MAGE_PEAR_PHP_BIN
for 1and1.com hosting, to use PHP5: MAGE_PEAR_PHP_BIN=/usr/local/bin/php5; export MAGE_PEAR_PHP_BIN

How To Upgrade From Tarball Installation

If you have not used MagentoConnect or PEAR command line to install Magento, you will need to enter this command for initial PEAR installation of all Magento core modules:

./pear install magento-core/Mage_All_Latest

(You may have to upgrade pear extensions using the next step for this step to work).

How To Upgrade All Available Extensions in Magento

./pear upgrade-all

How To Upgrade Specific Extensions in Magento

./pear upgrade magento-core/Mage_Core_Modules magento-core/Mage_Core_Adminhtml
./pear upgrade magento-core/Interface_Adminhtml_Default magento-core/Interface_Frontend_Default magento-core/Interface_Install_Default

 

How To Upgrade MagentoConnect Manager

If MagentoConnect Manager is not installed as a PEAR package yet:

./pear install magento-core/Mage_Downloader

After it is installed it will be upgraded just like any other extension.

How To Upgrade Using Patch And .Diff Files In SSH

Clear cache (from your magento root: rm -rf var/cache/*)
Decompress 1.4.0.1-1.4.1.0 diff ball to your magento root
Use the following patch command: patch -p0 -f < 1.4.0.1-1.4.1.0.diff
Checklists
Follow the Magento Upgrade Checklist – http://inchoo.net/ecommerce/magento/standard-procedure-to-upgrade-magento-to-the-newest-version/