ID: 11403
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old-Status: Bogus
Status: Closed
Bug Type: *Session related
Operating system:
PHP Version: 4.0.4pl1
Assigned To:
Comments:
Just a note, this is problem only with IE.
Seems like it doesn't like all the cache preventing
headers sent by session_start() but using 'private' cache
headers, it works. Go figure..
Previous Comments:
---------------------------------------------------------------------------
[2001-06-19 15:03:13] [EMAIL PROTECTED]
adding
session_cache_limiter("private");
before
session_start();
fixed the problem.
<?
session_cache_limiter("private");
session_start();
$filename = "test.jpg";
$fd = fopen ($filename, "rb");
$contents = fread ($fd, filesize ($filename));
fclose ($fd);
Header ("Content-type: image/jpeg");
echo $contents;
?>
---------------------------------------------------------------------------
[2001-06-19 12:44:33] [EMAIL PROTECTED]
And update to php 4.0.5
---------------------------------------------------------------------------
[2001-06-19 12:43:43] [EMAIL PROTECTED]
1. I am NOT using IE here. I tested this with
IE now, and it works just fine.
2. Works also with Opera.
3. Works also with Mozilla.
I suggest you check your php.ini settings.
---------------------------------------------------------------------------
[2001-06-12 13:08:48] [EMAIL PROTECTED]
adding
Header ("Content-type: image/jpeg");
does NOT fix the problem.
copy the "fixed" script to a new file name, and see that it does not work.
you are looking at cached version. IE will cache the mimetype info associated with
the image even if you clear your history. I am able to reproduce this consistantly on
multiple machines
---------------------------------------------------------------------------
[2001-06-12 01:45:23] [EMAIL PROTECTED]
This works:
<?
session_start();
$filename = "test.jpg";
$fd = fopen ($filename, "rb");
$contents = fread ($fd, filesize ($filename));
fclose ($fd);
Header ("Content-type: image/jpeg");
echo $contents;
?>
---------------------------------------------------------------------------
The remainder of the comments for this report are too long. To view the rest of the
comments, please view the bug report online.
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=11403&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]