Need help with strange cURL / PHP 4.3.7 issue: claims cURL is not installed
Parts of this may look like a programming question, but I am pretty sure that it is an admin situation. I am a programmer, but thought that I might post this question for my admin, as we are both stuck.Whenever the curl_init() function is called, this is what I get in the browser:
Fatal error: Call to undefined function: curl_init() in /my/folder/public_html/php/lphp.php on line 285
Most people have said at this point: It looks like cURL support has not been compiled into PHP.
However, this is the output of the php -m command:
Here is the output of php -m:
root@myserver [~/install/php-4.3.7]# php -m
[PHP Modules]
bcmath
calendar
ctype
curl
exif
ftp
gd
gettext
imap
mbstring
mcrypt
mhash
ming
mysql
overload
pcre
posix
session
sockets
standard
swf
tokenizer
wddx
xml
zlib
[Zend Modules]
Does this make sense to anyone as to why the curl_XXX() functions are not available??
TIA!
sscooter1010