문제

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top