0
votes

i am facing this error :

https://stackguides.com/questions/32367682/magento-soap-error-parsing-wsdl-couldnt-load-from-failed-to-load-external-ent

i want to check php soap and xml rpc extensions are enabled or not in the following link :

https://videomergerapp.com/index.php/api/v2_soap/index/?wsdl=1

please hep me to find solution

thanks in advance

1
Try to get phpinfo of server. If you have ssh connection with server run php -m it will list enabled extension - jagad89
is it enabled in our site : videomergerapp.com/clone.php - user5243856
It seems its not enabled. try to add php with following script. it will show clearly all your enabled extensions. <?php print_r(get_loaded_extensions()); ?> - jagad89
please check now : videomergerapp.com/clone.php - user5243856
delete that file from server. Its not good to public phpinfo. - jagad89

1 Answers

2
votes

You can get active extension list using below methods.

1) create a php script with phpinfo(); script and upload to your server, it will display all php setting information on your server.

2) if you have command line ( ssh ) connection with your server use php -m command to know active list of extension.

3) Create a page with below script, it will list all active extension.

<?php print_r(get_loaded_extensions()); ?>

In order to enable/disable extension, changes in php.ini is required, many hosting provider provide alternate ways to change this ini file. In order to do required changes you can also contact to your server support team.