haralex
haralex

Reputation: 33

Magento Connect Errors - Udates from 1.9.1.0 to 1.9.1.1

I am trying to upgrade a number of extensions from 1.9.1.0 to 1.9.1.1 in the Magento Connect Manager, however these persistently fail. The main extension I want to upgrade is Mage_Core_Modules, but despite showing the upgrade as being available, I get the following error:

Mage_Core_Modules 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
CONNECT ERROR: Package community/Mage_Core_Modules failed: No releases for 'Mage_Core_Modules', skipping

And for other modules the same or a conflict error with Mage_Core_Modules 1.9.1.0:

I have cleared caches, switched https on/off in the config, logged in/out, turned maintenance on/off etc.. but no simple tries have worked - all suggestions very welcome. I am wary of updating via ftp but if there is no other option, maybe this is possible.

Am I missing something simple?

Upvotes: 3

Views: 6094

Answers (6)

shakaran
shakaran

Reputation: 11082

This could be useful for restore missing packages and force the update (be careful using --force) use this under your own risk!:

chmod +x mage 
./mage install http://connect20.magentocommerce.com/community Mage_All_Latest --force
chmod +x mage 
./mage upgrade-all --force

Upvotes: 1

Guy009
Guy009

Reputation: 11

Try this trick: for "Magento_Mobile" THEN GO FOR MAGENTO_CORE and OTHER modules

  1. Go to magento connect manager and reinstall your current "Magento_Mobile".
  2. This will reinstall your current/1.7 "Magento_Mobile" and also create one .tgz file here: "YOUR_MAGENTO_INSTATION_DIR/downloader/.cache/community/*"
  3. Copy the name of this file; in my case this is "Magento_Mobile-1.7.0.1.22.1.tgz"
  4. Now, download latest "Magento_Mobile-1.9.1.1.tgz" from here: http://safktna.com/downloader/.cache/community/
  5. paste this under YOUR_MAGENTO_INSTATION_DIR/downloader/.cache/community/*
  6. Delete OLD "Magento_Mobile-1.7.0.1.22.1.tgz"
  7. rename new "Magento_Mobile-1.9.1.1.tgz" to "Magento_Mobile-1.7.0.1.22.1.tgz"
  8. Go to magento connect manager and again reinstall "Magento_Mobile" THIS WILL INSTALL YOUR LATEST VERSION Now, to confim; click on "Check for upgrades" button this will shows as latest version installed for "Magento_Mobile"

Thanks

Upvotes: 1

loeffel
loeffel

Reputation: 485

You can download the file from here: http://safktna.com/downloader/.cache/community/ Then upload it to your server, unpack it, rename package.xml to Magento_Mobile-1.9.1.1.xml and move it to var/package.

EDIT: At the complete bottom of the magento download page (https://www.magentocommerce.com/products/downloads/magento/), there is a download called XMLConnect Module. This is the newest version

Upvotes: 1

MindOverMatter
MindOverMatter

Reputation: 16

I had the same problem. I have partially solved this problem by running a reinstall of all 1.9.1.1 components that installed successfully and setting the components you listed above to upgrade at the same time. This finally upgraded the components together. However, Magento_Mobile 1.9.1.0 package is still getting this error regardless if I try to set the previous components to reinstall.

Upvotes: 0

JumpLink
JumpLink

Reputation: 507

Some modules are having version conflicts with other modules in version 1.9.1.0. You need to update the modules in the right order or just try to update all packages multiple times until the conflicts are solved by self. This works for me.

Upvotes: 0

Charlie
Charlie

Reputation: 11

So my solution, was up download the Magento 1.9.1.1 from Magento, https://www.magentocommerce.com/products/downloads/magento/

Once you have it local, upload it to your server. Now be aware, that it assumes that you install is in a root/Magento folder if your Magneto is in a different folder, it's not a problem just un-zip locally and re-zip the files within the Magento fold the un-zip file creates. The upload the new zip to your server where you have Magento installed. Un-zip on the server and set it to over-write the files. This will over-write the old out of date files and install the new files.

Hope this helps!

Upvotes: 1

Related Questions