Search code examples
magentosoapmagento-soap-api

Magento Plugin not working - Soap


I'm trying to get an extension to work in Magento 1.7 but I get this system.log error:

ERR (3): Notice: Use of undefined constant SOAP_1_2 - assumed 'SOAP_1_2' in /var/www/vhosts/

DEBUG (7): Error fetching parcelshops 2015-01-22T20:09:42+00:00

DEBUG (7): SOAP extension is not loaded. 2015-01-22T20:10:01+00:00

Is it because the soap is not enable on the server?

Best regards Christian


Solution

  • It looks like the Soap extension isn't enabled on your server.

    Create a "phpinfo.php" file in your Magento root folder, and add this:

    <?php echo phpinfo(); ?>
    

    You can check there if Soap is enabled or not.

    enter image description here