Gerard Nijboer
Gerard Nijboer

Reputation: 512

Magento does not upgrade

I've got some questions about upgrading Magento (running 1.7.0.0)

I've got root-access over the command line, but the upgrade-all function does nothing for a long time.

The current commands were executed, but nothing happens, any idea?

[root@httpdocs]# ./mage mage-setup
Running initial setup...
Success
Success
Error:
channel-add: Channel 'community' already exist!
[root@httpdocs]# ./mage sync
[root@httpdocs]# ./mage upgrade-all --force

It does know there are updates:

[root@httpdocs]# ./mage list-upgrades
Updates for community:
  Mage_All_Latest: 1.7.0.0 => 1.7.0.2
  Interface_Adminhtml_Default: 1.7.0.0 => 1.7.0.1
  Mage_Downloader: 1.7.0.0 => 1.7.0.1
  Interface_Frontend_Base_Default: 1.7.0.0 => 1.7.0.1
  Magento_Mobile: 1.7.0.0.22.1 => 1.7.0.1.22.1
  Mage_Core_Adminhtml: 1.7.0.0 => 1.7.0.1
  Mage_Core_Modules: 1.7.0.0 => 1.7.0.2
  Lib_Mage: 1.7.0.0 => 1.7.0.1

The following code did do some installations, but I don't know why it did not upgrade to 1.7.0.2:

[root@httpdocs]# ./mage install connect20.magentocommerce.com/community Mage_All_Latest --force

Upvotes: 1

Views: 2058

Answers (1)

pzirkind
pzirkind

Reputation: 2338

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

Upvotes: 1

Related Questions