![]() |
|
Customer Support
The PHP curl module doesn't work.
First make sure that you have the CURL php module loaded.With the CURL module properly loaded, it can behave slightly differently when PHP is running as a cgi than it does when PHP is running as an Apache module.
If the curl script tries to fopen() a file in a directory that is not writable by the curl script, then the curl script will print the curl'ed page to the browser instead.
This means that when running the module version of PHP where scripts run with the permissions of the webserver, it is likely that the webserver may not have write permission in your directory where curl's fopen() is trying to plant a file. The result is that the file gets printed to the browser (which may be what you want).
This will rarely happen with the cgi version because PHP scripts in cgi mode execute with your permissions, and you almost always have write permission in your own directories. Therefore, the curl script will succeed at fopen() and so nothing will be printed to the browser.
If you want the cgi version of PHP to behave like the module version (printing the file to the browser) then just do:
fpassthru ($fp);after the place where your code uses fopen() and saves the result as $fp
Following the above instruction, the following code will work exactly the same no matter if PHP is being run as a module or as a cgi:
<?php
$sapi = php_sapi_name();
echo "SAPI: $sapi <br>";
$ch = curl_init("http://www.unix.org/");
$fp = fopen("superprivate_$sapi.txt", "w");
fpassthru ($fp);
// that line makes cgi act like module
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
$curl_exec = curl_exec($ch);
curl_close($ch);
fclose($fp);
echo "curl_exec: $curl_exec";
?>
User-Contributed Notes |
|
| There are no user-contributed notes for this topic. |
Related Questions:
How do I set PHP include_path?
What PHP modules are available and how do I load them?
How do I change timezone for PHP?
How do I do html form file uploads?
Can I run a PHP script on cron?
Why does a PHP function give an error that it is undefined?
Why does PHP HTTP authentication not work?
Why does my PHP script throw an Internal Server Error 500?
What version of PHP are you running and can I see a phpinfo()?
Can you change session cookie timeout in php.ini for me?
I can't upload a file larger than 8MB through a PHP script
Do you have a quick form mail script?
Can I use a PHP extension like PDFlib that I have personally purchased a license to use?
Do you offer PHP5 with MySQLi?
Where is the php_error_log?
Can I have all .html pages parsed as PHP?
What's the difference between running PHP as a cgi or as a module in safe mode?
My PHP session is lost whenever I go to a secure URL using the shared SSL certificate.
Do you provide PEAR?
Where can I download free PHP scripts?
How do I get different character sets within my PHP page to display correctly?
Do I need to set any 777 permissions in order for my PHP scripts to create files and directories?
Can I use Smarty Templates?
The PDFlib extension gives a UPR description error.
How do I execute my .php files as PHP 5?
How do I use the url_rewriter.tags setting for PHP?
Why does flush() not flush the data to my browser?
What is CAPTCHA? How can I use it?
Why does PHPLIB sessions give me a MySQL Database error?
The pfpro pfpro_process() function keeps giving me Error 31
Will my Zend Encoded files work?
Will IonCube encoded files work?
I need the virtual() function and it is not available.
Why does getallheaders() say undefined function?
Can I talk over SSL when opening an IMAP connection with the PHP imap_open() function?
How can one PHP file transparently handle all search-engine friendly URLs?
My PHP script needs a newer version of Zend Optimizer. What do I do?
How do I put PHP sessions into a database instead of the default files-based method?
Browse Categories:Getting Started, FTP, Telnet/SSH, Moving Domains, E-mail, Traffic Reports, Mailing Lists, Apache, PHP, CGI, Other Server-Side Scripting, MySQL Database, Imaging Libraries, Other Software, Billing & Terms, Control Panel, E-commerce, Pre-Sales |

