getimagesize belirli bir resmin belirli bir sunucuda başarısız - failed to open stream: HTTP isteği başarısız oldu!

0 Cevap php

Ben küçük küçük oluşturmak için Blog yazılarına bazı görüntüleri ayrıştırmak çalışıyorum. Belirli bir görüntü web sunucusu üzerinde değil benim laptop başarısız oluyor.

İşte bazı test kodu:

$vars = getimagesize( 'http://thebestcamera.com/blog/wp-content/uploads/2010/02/img_0084-150x150.png' );

var_dump( $vars );

Hata günlüğü yapar:

PHP Warning:  getimagesize(http://thebestcamera.com/blog/wp-content/uploads/2010/02/img_0084-150x150.png) [<a href='function.getimagesize'>function.getimagesize</a>]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found

Ben kıvırmak kullanırsanız ben sunucudan bir 404 olsun ama ben laptop bunu eğer görüntü almak:

 curl http://thebestcamera.com/blog/wp-content/uploads/2010/02/img_0084-150x150.png
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /blog/wp-content/uploads/2010/02/img_0084-150x150.png was not found on this server.</p>
<hr>
<address>Apache/2.2.3 (CentOS) Server at thebestcamera.com Port 80</address>

Herhangi bir düşünce?

0 Cevap