This is a discussion on Error on Image caching within the PHP Language forums, part of the PHP Programming Forums category; I try cache the image but it retun nothing sometimes this error come out "failed to open stream: HTTP ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
I try cache the image but it retun nothing
sometimes this error come out "failed to open stream: HTTP request failed! HTTP/1.1 401 Access Denied" This is my code: ob_start(); header("Content-Type: image/jpeg\n"); $image = 'http://www.roganjosh.co.uk/showPic.asp?picture=100'; readfile($image); $data = ob_get_contents(); ob_end_clean(); echo $data; |