views:

1297

answers:

4

I tried to follow PHP.net curl site and even this link: http://curl.phptrack.com/forum/viewtopic.php?t=52
and try to install the CURL in my window laptop. It doesn't work.. CURL is not installed. I wonder do I need to run it on windows server... Anyone has good sites guiding me how to install CURL? thanks.

+3  A: 

Download cURL here: http://curl.haxx.se/download.html. You may have to update your environment variables in order for PHP to find the cURL executables. To do so, right click My Computer, select Properties, Advanced, Environment Variables, find the PATH environment variable, edit it, and add the location where you installed cURL to it.

Adam Rosenfield
+1  A: 

You might also try using something like XAMPP to develop on your windows machine. It is an all in one package that includes everything you might need (including curl) to develop web apps with php. If you don't like XAMPP, there are a ton of other similar packages that you could also investigate.

Paul Wicks
XAMPP is awesome.
davethegr8
[XAMPP](http://www.apachefriends.org) is definitely the easiest way to get PHP development environment up and running on windows.
Shoan
+1  A: 

If you're on managed hosting and can't get CURL itself installed alongside PHP (I've found this numerous times), there's a great library called libcurl emulator. You include it in your pages and it'll use the compiled version if it can, drop down to the command line if that'll work, or run a pure php implementation if all else fails. It's VERY handy.

GaryF
A: 

Please follow the directions here

retornam