PDA

View Full Version : Search problem


hbibizadeh396670
02-11-2010, 09:32 AM
I followed instructions on how to create the search pages and finished them successfully.

However my problem is that when i search is get this error

Fatal error: Call to undefined function curl_init() in C:\wamp\www\ashperfectimage\Yahoo\BOSS_include.php on line 4


Please Help

Jimmy Wu
02-11-2010, 10:33 AM
Curl support is not enabled on your server. You should contact your server provider or server administrator to get this installed/enabled.

http://www.hotscripts.com/forums/php/26167-fatal-error-call-undefined-function-curl_init.html

robert222776
02-11-2010, 11:03 AM
You might try this. I had a similar problem with eCart, and am using xampp. This is what Jason said to do, and it worked.

In your case, edit the wamp php.ini file to enable the cURL extesnion.


in the php.ini file, find the following line:
;extension=php_curl.dll


and change it to:
extension=php_curl.dll

then restart the wamp server.

Hope this helps,
Robert

Jimmy Wu
02-11-2010, 05:12 PM
Thanks for helping with how you got it working in xampp.