I\'m having a lot of confusions on how to set up PHP SOAP extension in windows based on what\'s on the net.
Could you please help me, how would I be able to do it?
Referring to the PHP docs, all you need to do is:
php.ini
file. This is normally under your <php_home>
folder (for example, C:/PHP5
).;extension=php_soap.dll
, by removing the first ;
character, to make it looks like extension=php_soap.dll
Note that the php_soap.dll
is included in the default PHP5 distribution, and you can find it under the <php_home>/ext
folder.
Hope this helps.
;extension=soap
;
1: Find extension=php_soap.dll
in php.ini and remove the semicolon(;)
2: Restart your Server
Reference : See here
This worked for me on PHP 5.6.33 nts x64. Open php.ini from PHP install-dir eg. C:/PHP5633-nts_x64/php-ini. I'm using the development version.
;extension_dir = "ext"
;extension=php_soap.dll