tags:

views:

81

answers:

1

I have an installation of XAMPP version 1.7.3 on Windows 7 x64. I want to enable the PHP HTTP extension. How do I go about doing so? That is, where to I get the DLL, register it, etc. Thanks in advance.

A: 

First, download the PECL module from the php website.

Then unzipp it and copy the file php_http.dll in your PHP extension folder. Then edit your php.ini file (c:\WINDOWS\php.ini) and activate the module :

extension=php_http.dll
silent
This solution worked. Thank you. For others running in to the same problem, with XAMPP 1.7.3 use the version from http://downloads.php.net/pierre/ labeled "php_http-5.3-svn20091125-vc6-x86.zip (2009-11-26 07:19 -0800)".
Amir Khawaja