Magento Connect Errors - Udates 1.9.1.0 to 1.9.1.1

I am trying to upgrade multiple extensions from 1.9.1.0 to 1.9.1.1 in Magento Connect Manager, however they persistently fail. The main extension I want to update is Mage_Core_Modules, but even though the update is available as 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 same or conflict error with Mage_Core_Modules 1.9.1.0:

  • Interface_Adminhtml_Default 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: Package community / Interface _Adminhtml_Default failed: No releases for 'Interface_Adminhtml_Default' skipped
  • Interface_Frontend_Default 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: Package Community / Interface_Frontend_Default failed: No releases for 'Interface_Frontend_Default' skipped
  • Lib_Mage 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: package community / Lib_Mage 1.9.1.1 conflicts with: community / Mage_Core_Modules 1.9.1.0
  • Mage_Compiler 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: package community / Lib _Mage 1.9.1.1 conflicts with: community / Mage_Core_Modules 1.9.1.0
  • Mage_Core_Adminhtml 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: Package community / Mage _Core_Adminhtml failed: No releases for 'Mage_Core_Adminhtml', skipping
  • Mage_Downloader 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: Package community / Mage _Downloader failed: No releases for 'Mage_Downloader' missed
  • Magento_Mobile 1.9.1.0 (stable) 1.9.1.1 (1.9.1.0)
    CONNECT ERROR: package community / Magento _Mobile failed: no releases for "Magento_Mobile", skipping

I've cleared caches, enabled / disabled https in config, logged in / out, enabled / disabled service, etc., but no easy attempts have been made - all suggestions are very welcome. I am wary of updating via ftp, but if there is no other option, it might be possible.

Am I missing something simple?

+3


source to share


6 answers


I had the same problem. I partially resolved this issue by reinstalling all 1.9.1.1 components that were installed successfully and updating the components listed above at the same time. This finally updated the components together. However, Magento_Mobile 1.9.1.0 package still gets this error regardless of whether I try to reinstall the previous components.



0


source


So my solution was downloaded by Magento 1.9.1.1 from Magento, https://www.magentocommerce.com/products/downloads/magento/

After it's local, upload it to your server. Now keep in mind that it assumes you are installing in root / Magento folder, if your Magneto is in a different folder, this is not a problem, just unzip locally and rerun the files in the Magento folder creates. Upload the new zip to your server where Magento is installed. Un-zip on the server and install it to overwrite the files. This will overwrite old obsolete files and install new files.



Hope this helps!

+1


source


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

EDIT: The full bottom of the magento download page ( https://www.magentocommerce.com/products/downloads/magento/ ) loads the XMLConnect module. This is the newest version

+1


source


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

  • Go to magento connection manager and reinstall the current "Magento_Mobile".
  • This will reinstall your current /1.7 "Magento_Mobile" and also create one .tgz file here: "YOUR_MAGENTO_INSTATION_DIR / downloader / .cache / community / *"
  • Copy the name of this file; in my case it is "Magento_Mobile-1.7.0.1.22.1.tgz"
  • Now download the latest version of "Magento_Mobile-1.9.1.1.tgz" here: http://safktna.com/downloader/.cache/community/
  • paste this under YOUR_MAGENTO_INSTATION_DIR / downloader / .cache / community / *
  • Remove OLD "Magento_Mobile-1.7.0.1.22.1.tgz"
  • rename the new "Magento_Mobile-1.9.1.1.tgz" to "Magento_Mobile-1.7.0.1.22.1.tgz"
  • Go to magento connection manager and reinstall "Magento_Mobile" again THIS INSTALLS YOUR LATEST VERSION Now to limit; click the "Check for Updates" button, this will show as the latest version installed for "Magento_Mobile"

thank

+1


source


This can be useful to repair missing packages and force an update (be careful using -force), using this at your own risk!

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

      

+1


source


Some modules have version conflicts with other modules in version 1.9.1.0. You need to update the modules in the correct order, or just try to update all packages several times until the conflicts are resolved by yourself. This works for me.

0


source







All Articles