67

How to enable curl in xampp ?

My PHP twitter application needs curl function. But it is not enabled in XAMPP. how to enable it. I found no options for doing that.

Aakash Chakravarthy
  • 10,523
  • 18
  • 61
  • 78

7 Answers7

77

You have to modify the php.ini files in your xampp folder. Three files in three different places need to be changed.

Follow the following steps to enable curl library with XAMPP in Windows:

Step 1:

Browse and open the following 3 files

C:\Program Files\xampp\apache\bin\php.ini
C:\Program Files\xampp\php\php.ini
C:\Program Files\xampp\php\php4\php.ini

Step 2:

Uncomment the following line in your php.ini file by removing the semicolon (;).

;extension=php_curl.dll

After that it will look something like something below-

extension=php_curl.dll

Step 3:

Restart your Apache server.

Step 4:

Check your phpinfo() to see whether curl has properly enabled or not.

Enjoy using curl() library.

Anjuman
  • 1,424
  • 15
  • 10
50

It should be available in php.ini file. You need to un-comment the line for curl extension:

  ;extension=php_curl.dll
  ^----- remove semi-colon
Sarfraz
  • 377,238
  • 77
  • 533
  • 578
23

In XAMPP installation directory, open %XAMPP_HOME%/php/php.ini file. Uncomment the following line: extension=php_curl.dll

PS: If that doesn't work then check whether %XAMPP_HOME%/php/ext/php_curl.dll file exist or not.

mohitsoni
  • 3,091
  • 3
  • 19
  • 10
5

1) C:\Program Files\xampp\php\php.ini

2) Uncomment the following line on your php.ini file by removing the semicolon.

;extension=php_curl.dll

3) Restart your apache server.

webvitaly
  • 4,241
  • 8
  • 30
  • 48
1

You can add any extension (in Wamp and Xampp servers) by removing the semi-colon (;)

  • 2
    Unless you specify where to remove the semi-colon, this is hardly helpful to most of users. I'm marking this "Recommended Deletion" from the review panel but once you update your answer other reviewers probably won't do that. Best regards – YakovL Jan 25 '18 at 12:46
1

First, make sure you have libcurl (see: http://curl.haxx.se) installed. Then make sure your copy of PHP has been compiled with the --with-curl[=DIR] flag. For more info see:

If XAMPP comes pre-compiled with cURL you may just need to enable the extension in your php.ini file (usually by removing a semicolon at the start of the line which includes the extension).

Simon
  • 388
  • 3
  • 9
0

For XAMPP on MACOS or Linux, remove the semicolon in php.ini file after extension=curl.so

Esteban Cacavelos
  • 753
  • 10
  • 22