: So I downloaded some PHP software and it tells me I need PHP that is : compiled using Curl with SSL. : : Does this mean compiled with Curl AND SSL? How can I tell from phpinfo if my : version of php was compile with Curl with SSL?
That's exactly what it means.. And your compile command looks fine.. CURL itself needs to be installed on the system too. The reason is needs to be compiled in is that there are a lot of built-in CURL functions in PHP (http://www.php.net/manual/en/ref.curl.php). If your compile command says it was, I'm sure it was.. Here's one of my servers compile commands: './configure' '--prefix=/usr/local' '--with-apache=/root/Apachetoolbox-1.5.34/apache_1.3.20' '--enable-exif' '--enable-track-vars' '--with-calendar=shared' '--enable-safe-mode' '--enable-magic-quotes' '--enable-trans-sid' '--enable-wddx' '--enable-ftp' '--with-mcrypt' '--with-unixODBC=/usr/local/unixODBC' '--with-openssl' '--with-curl=/usr/local' '--enable-apc' '--with-pgsql' As for checking the status of CURL with phpInfo() you will see a section called CURL with the details similar to the following: curl CURL support enabled CURL Information libcurl 7.8 (OpenSSL 0.9.6) Later, Bob Weaver ____________________ BYU Unix Users Group http://uug.byu.edu/ ___________________________________________________________________ List Info: http://phantom.byu.edu/cgi-bin/mailman/listinfo/uug-list
