Hi.
I will be needing to use SOAP in the very near future, to test if it was installed I copied and pasted the following code; http://scripts.incutio.com/google/ I would have expected google to give an error if it had existed, or a PHP error if not.
It gave the following error;
Warning: main(SOAP/Client.php): failed to open stream: No such file or directory in D:..........\test.php on line 19
Warning: main(): Failed opening 'SOAP/Client.php' for inclusion (include_path='.;c:\php4\pear') in D:................\test.php on line 19
Fatal error: Cannot instantiate non-existent class: soap_client in D:................\test.php on line 27
Great - it's not installed... Untill someone told me it must be installed, because it comes with all new PHP versions, and the include path is preset as c:\php4\pear
The problem is with this line;
include("SOAP/Client.php");
I guess the file doesnt exist, perhaps the include path is wrong?
I have searched, the phpinfo() page and found nothing relating to SOAP, the only thing relating to PEAR was the include path.
Do you think it needs to be installed, settings incorrect, or my mistake?
Thanks!