Call to undefined function curl_init() error

前端 未结 5 2114
终归单人心
终归单人心 2021-01-03 02:17

I am on a Win 64 bit OS, php 5.6.8 using Eclipse PDT to develop PHP.

I have come across this Call to undefined function curl_init() error.

I removed the

5条回答
  •  情深已故
    2021-01-03 03:14

    Your issue is probably already solved. But for those still searching, please find my answer here.

    It might be the the wrong Path being pointed at.

    My answer in the Link ( Call to undefined function curl_init() even it is enabled in php7 ) says:

    Your Filepath is probably incorrect

    Check the Apache error log in

    /var/log/apache2/error.log
    

    if the called path or filename does match your real path in e.g.

    /usr/lib/php/20151012/php_curl.so
    

    In my case it's been the same path, but "the php_" was missing

    /usr/lib/php/20151012/curl.so
    

    So I changed the path / filename accordingly in

    /etc/php/7.0/cli/conf.d/20-curl.ini 
    

    from

    extension=php_curl.so
    

    into

    extension=curl.so
    

提交回复
热议问题