Я пытаюсь написать скрипт, который бы кэшировал изображения, но застрял со следующим сообщением об ошибке:
Nov 4 12:55:19 centos httpd: PHP Fatal error: curl_setopt() [<a href='function.curl-setopt'>function.curl-setopt</a>]: fopencookie failed in /var/www/html/proxy3.php on line 6
Я подготовил более простой скрипт, у которого все еще есть эта проблема:
<?php
#phpinfo();
$fh = fopen('/tmp/yahoo.html', 'xb');
if ($fh) {
$ch = curl_init('http://www.yahoo.com/');
curl_setopt($ch, CURLOPT_FILE, $fh); # XXX the line 6
curl_setopt($ch, CURLOPT_HEADER, FALSE);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
#curl_setopt($ch, CURLOPT_COOKIEJAR, '/dev/null');
#curl_setopt($ch, CURLOPT_COOKIEFILE, '/dev/null');
#curl_setopt($ch, CURLOPT_COOKIEJAR, '/tmp/cookies.txt');
#curl_setopt($ch, CURLOPT_COOKIEFILE, '/tmp/cookies.txt');
curl_exec($ch);
if(!curl_errno($ch)) {
$info = curl_getinfo($ch);
echo 'Took '.$info['total_time'] .
's to send a request to '.$info['url'];
}
curl_close($ch);
fclose($fh);
} else {
echo 'Can not open /tmp/yahoo.html';
}
?>
В директории / tmp я вижу файл нулевого размера:
afarber@centos:html> ls -alZ /tmp/yahoo.html
-rw-r--r-- apache apache user_u:object_r:httpd_tmp_t /tmp/yahoo.html
Кто-нибудь, пожалуйста, есть идея, что здесь происходит не так?
Я пытался установить / не устанавливать CURLOPT_COOKIEJAR и CURLOPT_COOKIEFILE - в / dev / null и / или в /tmp/cookies.txt. Я пробовал sudo touch /tmp/cookies.txt; sudo chown apache.apache /tmp/cookies.txt тоже. Это просто не работает.
На самом деле мне не нужны куки в моем скрипте, я был бы рад отключить их в curl.
Я специально использую fopen (..., "xb") , чтобы только 1 экземпляр скрипта записывал в кэшированный файл в моем реальном скрипте.
Я использую CentOS 5.5 с php-5.1.6-27.el5 и неизмененным php.ini
Спасибо,
Alex
P.S. А вот и мой настоящий прокси-скрипт с изображением, который не работает с тем же сообщением об ошибке fopencookie. Я не могу использовать fopen (...., 'wb') там, я должен использовать fopen (.... 'xb') :
<?php
define('MIN_SIZE', 1024);
define('MAX_SIZE', 1024 * 1024);
define('CACHE_DIR', '/var/www/cached_avatars/');
$img = urldecode($_GET['img']);
# URL sanity checks omitted here for brevity
$cached = CACHE_DIR . md5($img);
$writefh = @fopen($cached, 'xb');
# the file is not cached yet, download it!
if ($writefh) {
$ch = curl_init($img);
curl_setopt($ch, CURLOPT_FILE, $writefh);
curl_setopt($ch, CURLOPT_HEADER, FALSE);
#curl_setopt($ch, CURLOPT_REFERER, $matches[1]);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
#curl_setopt($ch, CURLOPT_COOKIEJAR, '/dev/null');
#curl_setopt($ch, CURLOPT_COOKIEFILE, '/dev/null');
#curl_setopt($ch, CURLOPT_COOKIEJAR, CACHE_DIR . 'cookies.txt');
#curl_setopt($ch, CURLOPT_COOKIEFILE, CACHE_DIR . 'cookies.txt');
curl_exec($ch);
$error = curl_errno($ch);
$length = curl_getinfo($ch, CURLINFO_SIZE_DOWNLOAD);
$mime = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
$is_image = ($mime != NULL &&
(stripos($mime, 'image/gif') !== FALSE ||
stripos($mime, 'image/png') !== FALSE ||
stripos($mime, 'image/jpg') !== FALSE ||
stripos($mime, 'image/jpeg') !== FALSE));
curl_close($ch);
fclose($writefh);
if ($error || $length < MIN_SIZE || $length > MAX_SIZE || !$is_image) {
unlink($cached);
exit('Download failed: ' . $img);
}
} else {
$finfo = finfo_open(FILEINFO_MIME);
$mime = finfo_file($finfo, $cached);
$length = filesize($cached);
finfo_close($finfo);
}
$readfh = fopen($cached, 'rb');
if ($readfh) {
header('Content-Type: ' . $mime);
header('Content-Length: ' . $length);
while (!feof($readfh)) {
$buf = fread($readfh, 8192);
echo $buf;
}
fclose($readfh);
}
?>