Hello,
I am trying to install SOAP on 10.2-RELEASE-p14 with PHP 5.6.24.
After deinstalling extensions, then installing with SOAP support I opened up a phpinfo page. phpinfo shows:
Additional .ini files parsed "/usr/local/etc/php/ext-20-soap.ini".
A line under module authors.
A working system should show additional data under a SOAP subheading.
To test further I added the following to the phpinfo page:
The result is "no soap".
Any help greatly appreciated.
John
I am trying to install SOAP on 10.2-RELEASE-p14 with PHP 5.6.24.
After deinstalling extensions, then installing with SOAP support I opened up a phpinfo page. phpinfo shows:
Additional .ini files parsed "/usr/local/etc/php/ext-20-soap.ini".
A line under module authors.
A working system should show additional data under a SOAP subheading.
To test further I added the following to the phpinfo page:
Code:
if (extension_loaded('soap')) {
echo 'soap';
}ELSE{
echo 'no soap';
}
Any help greatly appreciated.
John