RSS
 

Posts Tagged ‘lib_curl.dll’

Installing (Using) Curl Library with Xampp server

17 Feb

Xampp already comes with curl library. You just need to activate it.
To do that, follow steps below:

  1. Open search window
  2. Locate xampp folder in search window
  3. Search for php*.ini
  4. Open each .ini file and uncomment “;extension=php_curl.dll”
    Earlier
    ;extension=php_curl.dll
    Now
    extension=php_curl.dll
  5. Restart apache server from xampp contol panel.

To make sure it is working fine, follow these steps:

  1. Create a php file. With
    <?php phpinfo(); ?>
    written on it.
  2. Place it in htdocs folder.
  3. Open http://localhost/filename.php and search for curl. If you can find it then curl is working fine.
  4. If you can’t find it, write here what you have done, I will try to solve the problem.
 
1 Comment

Posted in Server