i am facing this error :
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
i am facing this error :
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
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.
php -m
it will list enabled extension - jagad89<?php print_r(get_loaded_extensions()); ?>
- jagad89