3

How do I go about installing PHP cURL on IIS? I have copied the php_curl.dll file into the PHP extensions folder, what else do I need to do?

Thanks

Probocop
  • 279
  • 2
  • 5
  • 13

1 Answers1

4

You have to register the modul in the php.ini.

Look for:

extension=php_curl.dll

And check for correct extension dir:

extension_dir = "c:/path to php/ext"
coding Bott
  • 568
  • 1
  • 4
  • 13
  • I've added extension=php_curl.dll to php.ini, and checked the directory is correct, but i'm still having no luck. Should cURL then appear on a phpinfo() once i've done those steps? – Probocop May 12 '10 at 15:07
  • yes it does appear. You have to restart the web server processes (depending on gateway cgi/fastcgi/iis-extension). – coding Bott May 31 '10 at 12:29