Upgrading Magento via SSH

login via ssh and change to your Magento folder

Type the following two commands...

./pear mage-setup .
./pear upgrade-all

 

You may also have to reset permissions with the following three commands...

find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
chmod +x pear

Lastly, clear your cache in your admin by going to your System menu, select Cache Management and then click 'Refresh all cache'.

That should be it but please check that any changes you've made to your theme are working with the new version. Often there's new features available in the updated default theme which may need to be carried through to your own theme. The release notes and changelog that comes with each Magento release often lists where changes need to be made.

  • 0 Users Found This Useful
Was this answer helpful?

Related Articles

Installing Magento

We've installed it for a number of clients on our 'dingo' server which has all the system...

Using Web Server Rewrites

Magento can use more human looking and search engine friendly addresses for it's pages if you...

Emails not being sent from Magento

If you're not receiving emails from Magento - eg. from the 'Forgotten your password' link in the...

Magento Connect Downloader gives Internal Server Error

There's a bug in Magento's downloader which sets the file permissions to files it has installed...

Magento v1.1 says pdo_mysql not installed

Please delete the php.ini that gets installed with v1.1. This overrides the system php.ini which...