clifdensprit
clifdensprit

Reputation: 4901

cURL not showing up in phpinfo even though is is in php.ini

I keep getting the error Fatal error: Call to undefined function curl_init() and cURL does not show up in phpinfo().

Important info:

I don't know what else to try. Any ideas?

Upvotes: 1

Views: 3109

Answers (2)

clifdensprit
clifdensprit

Reputation: 4901

Ok, it's working now. I had to go here: http://www.anindya.com/php-5-4-3-and-php-5-3-13-x64-64-bit-for-windows/ and download the php_curl.dll which corresponds with my version of PHP.

I found this here: https://stackoverflow.com/a/18576165/2525699

"At http://www.anindya.com/php-5-4-3-and-php-5-3-13-x64-64-bit-for-windows/ . Download the file that you need from the fixed curl extensions list at the bottom of the page, for example Windows 7 64 bit Machines will work correctly with the non nts file."

Upvotes: 2

Michael Valentino
Michael Valentino

Reputation: 101

search your c:\wamp\ for php.ini;

comment out extension=php_curl.dll in all of the files found.

Upvotes: 0

Related Questions