Date: 08/31/01
- Next message: rfontana.cs <email protected>: "[PHP-DEV] Bug #13036 Updated: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet"
- Previous message: rfontana.cs <email protected>: "[PHP-DEV] Bug #13036 Updated: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet"
- In reply to: Zeev Suraski: "[PHP-DEV] Re: problems with ob_gzhandler"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 08/31/01, "Zeev Suraski" <zeev <email protected>> wrote:
> BTW, any chance you're using trans_sid? (can you check if
> php_session_start_output_handler() ends up being called for some reason?)
I'm not using trans_sid but I am using sessions.
My scripts generally do this:
if (!session_is_registered("sess")) {
$sess = array();
session_register("sess");
}
if (!broken_browser())
ob_start("ob_gzhandler");
else
ob_start();
The session handler is a custom handler against a mysql db.
If the scripts need to redirect, they do this:
session_write_close(); // Concurrency problems arise otherwise
header("Location: ...");
exit();
Hope that helps; I dont have time to get in there with a debugger
right now.
--Wez.
-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: rfontana.cs <email protected>: "[PHP-DEV] Bug #13036 Updated: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet"
- Previous message: rfontana.cs <email protected>: "[PHP-DEV] Bug #13036 Updated: Error compiling php-4.0.6 with oracle 8.1.6 and iplanet"
- In reply to: Zeev Suraski: "[PHP-DEV] Re: problems with ob_gzhandler"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

