-
Debugging – PHP Fatal error: Call to undefined function curl_init()
Publish Date: September 6th, 2014 | Posted in Code Better, Debugging, PHP Tutorials | Last UpdatedPHP Fatal error: Call to undefined function curl_init() This means you are either missing the curl extension or most likely some of its dependencies. Here is the fix for those running Apache on Ubuntu: $ sudo apt-get install libcurl3 libcurl3-dev php5-curl $ sudo service apache2 restart