I have installed curl:
sudo apt-get install curl libcurl3 libcurl3-dev php5-curl
and I have updated my php.ini file to include(I also tried .so):
extension=php_curl.dll
To test if curl is working I created a file called testCurl.php which contains the following:
<?php
echo ‘<pre>’;
var_dump(curl_version());
echo ‘</pre>’;
?>
When I navigate to localhost/testCurl.php I ge
I'm trying to install the Amazon Web Services PHP SDK on my Ubuntu LAMP server. Whenever I run the compatibly check everything but cURL comes back okay. The issue I'm having is that it's reporting I don't have cURL with SSL. I uninstalled curl then installed curl-ssl with no avail.
I followed the instructions here to install curl in my server but it is without open ssl. I did it through SSH, i got the root access. I restarted my apache after the installation but i can't get the curl working still.
I have read in some article that i have to uncomment this extension=php_extension=php_curl.dll in php.ini.
I have installed curl-7.27.0 and it is working fine how ever it is not working is run below command to find whether it is now, but it showed that :
Result of the command curl -V
root@ubuntu:~/curl-7.27.0# curl -V
curl 7.21.6 (i686-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
Protocols: dict file ftp ftps gopher http https imap imaps ldap pop3 pop3s rtmp
Hi,
I have compile php and curl on my server.
When i run phpinfo() on my on browser it does not show the curl is enable.
When i run from the command line it shows curl is enable.
Here is the command:
/opt/php -r "phpinfo();"
I have also created /usr/bin php as symlink
I have also compiled php --with-curl=[curl path] as static not as shared.
What I am missing?
Thanks in advance.
I'm trying to install proxy software called Glype on my server. It continues to tell me that "Glype requires cURL/libcurl". I have the latest version of curl installed. Why might this be happening? Glype runs with PHP, and the curl binary is in /usr/bin and is rwxrwxrwx.
I'm using Curl in Cygwin to automate a daily download. I want to keep progress in a log but Curl is just a little too noisy for my taste. I tried man curl and Google, but didn't find anything.
Can I slow down the frequency at which Curl reports progress?
I am using the curl version 7.21.0. When I try the curl command from command like, things works fine for the http sites. But when I try https I get certificate error. I have source compiled curl with latest OpenSSL. I have also tried downloading the latest certificate bundle. With the same version of curl, same version of openssl with same certificate file I can get it work on the linux.
Hi,I have installed curl using yum install php5-curl, the package said that it has installed but when i run a check in php it says the function doesn't exist .I have re... [by ianZammit]