PHP 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