Curl not enable

I’m try to run these line of code

<?php function _isCurl(){ return function_exists('curl_version'); } echo curl_version(); ?>

[size=10pt]i got this Error[/size]

See Attach imge first;

[size=10pt]I’ve already uncomment extension=php_curl.dll in php.ini[/size]

See Attach imge 2;

[size=10pt]Also php_curl.dll exist in php/ext folder[/size]

See Attach imge 3;

[size=10pt]curl.exe in C:\curl\bin[/size]

See Attach imge 4;

[size=10pt][b]it also check by Cmd … it confirm it curl running by type curl

[/b][/size]
It Display this massage
curl: try ‘curl --help’ or ‘curl --manual’ for more information

Note: apache services also restart …
what i mistake or miss? why these line of code not working


2.jpg

2.jpg

What kind of server are you using? Remote server hosted on some site or local XAMPP or ???

Curl is not always set up by default. If you change your PHP.ini in your PHP server, you need to reboot it to make
the settings locked in. You can temporarily over-ride the settings using PHP functions on each page of your site,
but, it’s best to lock it in.

On some sites like GoDaddy.com, you sometimes have to go into the hosting control panel and select it as an
option in the programming area. On local systems, such as WAMP or XAMPP, you can cutomize your set up and
select it if it is not checked already. Here is the link to PHP.net’s discussion of it. Not sure if any of this helps…
http://php.net/manual/en/curl.configuration.php

Sponsor our Newsletter | Privacy Policy | Terms of Service