Skip to content

Instantly share code, notes, and snippets.

@JeffCost
Forked from americkson/gist:1373556
Created August 1, 2013 19:58
Show Gist options
  • Save JeffCost/6134685 to your computer and use it in GitHub Desktop.
Save JeffCost/6134685 to your computer and use it in GitHub Desktop.

A guide for installing modules with the MAGE installer

Magento Mage installer

Adjust permissions

Make the mage package executable

LOCAL ONLY

chmod 777 ./mage

Other environments

chmod 550 ./mage or chmod 700 ./mage

Add the community channel

You need to connect to the community channel for any modules you install from the Magento connect community

./mage channel-add http://connect20.magentocommerce.com/community

Install a module example

Using the ASchroder.com SMTP Pro Email module as an example. http://www.magentocommerce.com/magento-connect/ASchroder/extension/1865/aschroder.com-smtp-pro

  • select Magento Connect 2.0 and get the key

You will notice the key is a complete URL. You only need last part of the URL once you have connected to the community channel. http://connect20.magentocommerce.com/community/ASchroder_SMTPPro

./mage install community ASchroder_SMTPPro

Install without adding channel first

If the key is http://connect20.magentocommerce.com/community/module_name

./mage http://connect20.magentocommerce.com/community module_name

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment