15

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?

Any suggested references?

John Conde
  • 217,595
  • 99
  • 455
  • 496
user123
  • 1,060
  • 3
  • 13
  • 29

4 Answers4

22

Referring to the PHP docs, all you need to do is:

  1. Locate your php.ini file. This is normally under your <php_home> folder (for example, C:/PHP5).
  2. Search for and uncomment the line that says ;extension=php_soap.dll, by removing the first ; character, to make it looks like extension=php_soap.dll
  3. Then restart your server.

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.

ivan.sim
  • 8,972
  • 8
  • 47
  • 63
5

1: Find extension=php_soap.dll in php.ini and remove the semicolon(;)

2: Restart your Server

Reference : See here

Carl0s1z
  • 4,683
  • 7
  • 32
  • 47
Irfan Ali
  • 201
  • 1
  • 3
  • 5
4
  1. open php.ini file in your text editor.
  2. Find ;extension=soap
  3. Remove ;
  4. Save changes
  5. Start the server again.
Motiur Rahaman
  • 121
  • 1
  • 6
0

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.

  1. Uncomment "extension_dir" option, use the "on Windows" option. eg.

;extension_dir = "ext"

  1. Uncomment

;extension=php_soap.dll

  1. Restart server
LAamanni
  • 177
  • 2
  • 13