Magento – how to upgrade magento enterprise edition

magento-enterpriseupgrade

How to upgrade magento enterprise edition. Unlike community edition enterprise edition does not have facility to upgrade from one version to another version using from Magento Connect. In Magento community edition we can upgrade from one version to newer version using magento connect and check for updates. If any updates found we simply check those modules and go for update.
In Enterprise edition if I choose check for updates in magento connect, nothing is coming out even though newer version is available.
So please let me know how to upgrade magento enterprise edition from older version to newer version.

Thanks in advance

Best Answer

Copy the files in-place over top of your local development server's copy. Hopefully you're using version control software so you can commit your changes for deployment at a later date after your testing phase.

On Linux:

cp -R ./Magento_Enterprise_1.13.1.0/ /var/www/vhosts/yourmagentoinstalllocation/webroot

On Mac OSX

This is a little trickier because the target will be replaced entirely, no merging will happen. Because of this, instead of using CP, use Ditto:

ditto ./Magento_Enterprise_1.13.1.0/ /var/www/vhosts/yourmagentoinstalllocation/webroot

On PC just copy and paste over top, choosing to replace duplicate filenames.

Upgrading to EE 1.13+

You will need to prepare your URLs prior to upgrade, and there are various tools provided to do this. You can download those toolkits from the Magento Partner portal and run against your database in-place. Obviously before you do any of the above you should backup and test your backup to ensure the safety of your installation.

http://www.magentocommerce.com/knowledge-base/entry/ee113-later-release-notes#ee113-11302-patches

Related Topic