1

What I'm trying to do is creating a time tracker track time and saving it to server via curl

remaining part of application works fine but when I'm calling curl to submit time it shows me error "Call to undefined function curl_init()"

Mohit Bumb
  • 2,466
  • 5
  • 33
  • 52

1 Answers1

2

Sounds like CURL is not enabled. You can check this with a phpinfo() file.

What you need to do is edit the php.ini file and un-comment ;extension=php_curl.dll (remove the ;). Then restart your web server.

AlexP
  • 9,906
  • 1
  • 24
  • 43
  • 1
    I'm creating desktop application and there's no php_curl extension in ext folder and after putting php_curl.dll it still show me error – Mohit Bumb May 17 '13 at 12:38