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()"
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()"
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.