Posted by David Haynes on 10/11/36 11:42
frustratedcoder wrote:
> The phpinfo doesnt contain anything about soap.
>
which means that soap is not enabled on your system.
Things to check:
1. in php.ini, you have the line:
extension=php_soap.dll
2. in php.ini, you have:
extension_dir = "<full path to the 'ext' directory>"
3. in the ext directory, you have the file:
php_soap.dll
If you are running PHP through apache, try running it from the command
line and giving it the phpinfo() command.
i.e.
create a file containing:
<?php phpinfo() ?>
Run as: php <file>.php
and check whether SOAP information is displayed.
Some people have been editing the wrong php.ini file. Check your PATH
environment to make sure you are looking at the right one.
-david-
[Back to original message]
|