It seems that you are currently using Magento version 1.4.1.0 which contains a small bug as explains at the Magento board here.
(The bottom line is that: "The developers forgot to close the bracket").
As an official partner of Magento, StoreYa offers a free Magento extension that will generates the API credentials for you and solve the above problem. Get the Magento Facebook Store extension.
Alternatively, if you wish to fix this bug by yourself, here is how you do so:
1. Open file /app/code/core/Mage/Api/Model/Server/Adapter/Soap.php
2. Find the line 133, 134
} else {
$this->fault(’0’, ‘Unable to load Soap extension on the server’);
3. Replace this part of code with
} else {
$this->fault(’0’, ‘Unable to load Soap extension on the server’);
}
4. Once done, you could log in again to StoreYa.com and run the API smoothly.
- in order to verify that the problem was fixed you could click on
https://www.YourDomain.com/api/v2_soap/?wsdl
which currently shows an error, and get an xml of your data, similar to this one -
http://perry.gostorego.com/api/v2_soap/?wsdl.
Once done, log back into StoreYa.com and continue our short registration process – your Magneto API will now be able to import your products into Facebook.
0 Comments