how to find out if PHP is compiled with CURL extension installed enabled

Mobile
feeds
Welcome Login | Register

how to find out if PHP is compiled with CURL extension installed enabled
Reply Your Comments:
Click this button if you are interested in replying to this topic and leave your comments
Sent To Friend
CLick this button if you want to send this page to a friend.
Subsribe To Rss Feeds
Subscribe to RSS
CLick this button if you want to subscribe to this RSS Feed. You can use your browsers feeds burners if you have mozilla or internet explorer 7 or higher and keep up with updates.
  Forums Index
      » Linux Forums
        » » how to find out if PHP is compiled with CURL extension installed enabled
how to find out if PHP is compiled with CURL extension installed enabled
Post Description: how to find out if php is compiled with curl extension installed enabled Linux
Post Tags:
This Post Has Been Viewed 1940 Times Since Thu Jun 21, 2007 1:32 pm Author hostman with 7 replies
how to find out if PHP is compiled with CURL extension installed enabled
Advertise On This Page




at some point, you will find out that some scripts require you to have cURL extension enabled in your web server.

whell, how can you tell whether the CURL extension is enabled or compiled in your PHP?

these are the steps to take:

1. open a blank text document. i will be using notepad in windows.

2. copy and paste this code into notepad and save it as testcurl.php
<?php
echo '<pre>';
var_dump(curl_version());
echo '</pre>';
?>


4. IF IT FAILS:
if there was an error, then it means that you do not have this extension enabled. and you will see an error similar to this one:
Fatal error: Call to undefined function curl_version() in testcurl.php on line 2

HOW TO FIX IT:
open you php.ini file and look for this line:
extension=php_curl.dll

this is how my server was:



;Windows Extensions
;Note that MySQL and ODBC support is now built in, so no dll is needed for it.


;extension=php_adt.dll
;extension=php_apd.dll
;extension=php_blenc.dll
;extension=php_bz2.dll
;extension=php_bz2_filter.dll
;extension=php_cpdf.dll
;extension=php_crack.dll
;extension=php_curl.dll
;extension=php_date.dll
;extension=php_db.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_dbx.dll
;extension=php_dio.dll
;extension=php_domxml.dll
;extension=php_exif.dll
;extension=php_fdf.dll
;extension=php_ffi.dll
;extension=php_filepro.dll
;extension=php_fribidi.dll
extension=php_gd2.dll

If you notice, i have a semi-colon (;) before extension=php_curl.dll
so all you have to do is to remove that semi-colon save your php.ini file and restart your server. now try to open your testcurl.php file with your browser and this time you should not get this error anymore.

5. IF SUCCESS.
if you have extension=php_curl.dll enabled, then you will see something like this:
array(9) {
["version_number"]=>
int(461570)
["age"]=>
int(1)
["features"]=>
int(540)
["ssl_version_number"]=>
int(9465919)
["version"]=>
string(6) "7.11.2"
["host"]=>
string(13) "i386-pc-win32"
["ssl_version"]=>
string(15) " OpenSSL/0.9.7c"
["libz_version"]=>
string(5) "1.1.4"
["protocols"]=>
array(9) {
[0]=>
string(3) "ftp"
[1]=>
string(6) "gopher"
[2]=>
string(6) "telnet"
[3]=>
string(4) "dict"
[4]=>
string(4) "ldap"
[5]=>
string(4) "http"
[6]=>
string(4) "file"
[7]=>
string(5) "https"
[8]=>
string(4) "ftps"
}
}



Leave Your Comments

Share:   Subscribe - Keep Up With This Topic
You can use this HTML code to put it on your website to show your friends this wallpaper. Use this code on your profile like myspace, friendster, Facebook or others. Just Copy and Paste it in your HTML on your websites
URL:
To embed this topic, just copy the code from the "Embed" box. Once you've copied the code, just paste it into your website or blog to embed it.
Embed:
BBCODE is use on forums. You can put this code on all your BBCODE enabled forums like PhpBB, vBulletin® and others. Just Copy and Paste this code on your Posts and Replies on your forums
Fourms BBCODE:
Links Related to : how to find out if PHP is compiled with CURL extension installed enabled
Add Link:

Comments and replies About how to find out if PHP is compiled with CURL extension installed enabled
:: 1 :: Reply #8608 Reply By Anilal On Wed Jun 27, 2007 11:11 pm
Anilal:
it help me a lot to check it out... thanks a lot................
:: 2 :: Reply #34037 Reply By Alam On Tue Jan 01, 2008 6:32 pm
Alam:
hi

i have been reading your tutorial on how to get curl enabled with php. i went into /root/ispconfig/php and remove semicolon; from where it said ;extension=php_curl.dll

i realized as i am using ubuntu 7.10 i need to add a line just where it say dynamic extensions, like this extension=php_curl.so

which i did and restarted the server. afterwards i tried to get the testcurl.php in browser i am still getting this message

"fatal error: call to undefined function curl_version() in /home/admispconfig/ispconfig/web/testcurl.php on line 3"

any help on that will be much appreciated.

:: 3 :: Reply #77038 Reply By vani On Thu Oct 23, 2008 10:35 pm
vani:
how to find out if php is compiled with curl extension installed enabled??

not solved but the above steps...
:: 4 :: Reply #87124 Reply By SHUNMUGASUNDARAM On Sun Dec 21, 2008 10:11 pm
SHUNMUGASUNDARAM:
sir
i worked in xampp and also download php_ffi.dll function where to i install this dll file please explain because many folders in xampp file thank you
:: 5 :: Reply #88319 Reply By arasu On Thu Jan 01, 2009 5:42 am
arasu:
hi
i got "the ordinal 110 could not be located in the dynamic link library ssleay32.dll" while restart my apache server, what can i do?.
:: 6 :: Reply #93204 Reply By Shivam Maheshwari On Sat Feb 07, 2009 8:39 pm
Shivam Maheshwari:
on a linux hosting server, the output is as shown below if curl is installed and enabled:


string(55) "libcurl/7.19.2 openssl/0.9.7a zlib/1.2.1.2 libidn/0.5.6"

the output shown above(in the original article) is for a windows web-server.
:: 7 :: Reply #102235 Reply By yit On Sun May 03, 2009 9:22 pm
yit:
easy! thanks for the simple tutorial.