ID: 9509
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Feedback
Bug Type: Filesystem function related
Assigned To: 
Comments:

Try adding 'b' into fopen:

$image=fopen("track.gif", "rb");

Check the manual page for fopen:

http://www.php.net/fopen

--Jani


Previous Comments:
---------------------------------------------------------------------------

[2001-03-01 11:19:51] [EMAIL PROTECTED]
I was previously using fopen() and fpassthru to grab a gif image and pass it to the 
browser. This worked fine.
Then I installed PHP4.0.4pl1 and the image that now gets returned is garbled (the 
image appears to be the right dimensions, but filesize shows 150 bytes, not 406 bytes 
which is what the image actually is).

On any html page the following line was installed:

<IMG src="track.php?ref=12345">

track.php then looks like this:

<?
  $image = fopen ("track.gif", "r");

  fpassthru ($image);
?>

I tried the same with the readfile() function, as follows:

<?
  readfile("track.gif");
?>

same result.


Other file I/O appears to be fine.

---------------------------------------------------------------------------



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=9509&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to