Difference between revisions of "Opentaps Magento Integration"
From Opentaps Wiki
Jump to navigationJump to searchm (Protected "Opentaps Magento Integration": Sysop page [edit=sysop:move=sysop]) |
Michele.orru (talk | contribs) (→Installing the Magento Extension) |
||
Line 6: | Line 6: | ||
===Installing the Magento Extension=== | ===Installing the Magento Extension=== | ||
+ | |||
+ | 1. Checkout the IntegratingWeb Magento module in $magentoInstallationPath/app/code/local | ||
+ | svn co svn://svn.opentaps.org/opentaps_magento/magento_component/versions/1.0/trunk/IntegratingWeb IntegratingWeb | ||
+ | |||
+ | After the download, the Magento directory structure must look like the following: | ||
+ | $magentoInstallationPath/app/code/local/IntegratingWeb | ||
+ | |||
+ | 2. Create a new file called IntegratingWeb_Restful.xml in $magentoInstallationPath/app/etc/modules with the following content: | ||
+ | |||
+ | <?xml version="1.0"?> | ||
+ | <config> | ||
+ | <modules> | ||
+ | <IntegratingWeb_Restful> | ||
+ | <active>true</active> | ||
+ | <codePool>local</codePool> | ||
+ | <depends> | ||
+ | <Mage_Core /> | ||
+ | <Mage_Catalog /> | ||
+ | </depends> | ||
+ | </IntegratingWeb_Restful> | ||
+ | </modules> | ||
+ | </config> | ||
+ | |||
+ | 3. Go on the Magento backend in System->Configuration, then Advanced->Advanced . | ||
+ | If you click on "Disable modules output", you should see a module named IntegratingWeb_Restful: if that is your case, | ||
+ | then you have succesfully installed the Magento module. | ||
===Installing the opentaps Module=== | ===Installing the opentaps Module=== |
Revision as of 20:42, 13 January 2010
Contents
Introduction
Installation
Installing the Magento Extension
1. Checkout the IntegratingWeb Magento module in $magentoInstallationPath/app/code/local
svn co svn://svn.opentaps.org/opentaps_magento/magento_component/versions/1.0/trunk/IntegratingWeb IntegratingWeb
After the download, the Magento directory structure must look like the following:
$magentoInstallationPath/app/code/local/IntegratingWeb
2. Create a new file called IntegratingWeb_Restful.xml in $magentoInstallationPath/app/etc/modules with the following content:
<?xml version="1.0"?> <config>
<modules> <IntegratingWeb_Restful> <active>true</active> <codePool>local</codePool> <depends> <Mage_Core />
<Mage_Catalog /> </depends>
</IntegratingWeb_Restful> </modules>
</config>
3. Go on the Magento backend in System->Configuration, then Advanced->Advanced . If you click on "Disable modules output", you should see a module named IntegratingWeb_Restful: if that is your case, then you have succesfully installed the Magento module.