ID: 10477
Updated by: sterling
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Output Control
Operating System: linux 2.2
PHP Version: 4.0.4pl1
New Comment:
Fixed in CVS.
Previous Comments:
------------------------------------------------------------------------
[2001-04-24 14:03:35] [EMAIL PROTECTED]
<?php
if (isset($PATH_INFO))
{
$var = explode('/', $PATH_INFO);
for($c = 1; $c < count($var); $c += 2)
{
$$var[$c] = $var[$c + 1];
$HTTP_GET_VARS[$var[$c]] = $var[$c + 1];
}
}
function fix_session($output)
{
global $SID;
$o_sid = '?'. $SID;
$n_sid = '/'. str_replace('=', '/', $SID);
$output = substr_count($output, $o_sid) .'<br>'. str_replace($o_sid,
$n_sid, $output);
return $output;
}
ob_start('fix_session');
?>
I want to convert.
index.php?PHPSESSID=xxxxxx
->
index.php/PHPSESSID/xxxxxx
this code will convert hardcoded SID links but not trans-sid. this must be caused
because fix_session() is being called 'before' trans-sid is applied, it should be
called after. no ? what is strange is that if I use ob_start() to gzip my content
trans-sid is astill applied, but I dont know how this is done to compressed code.... I
will have to check this.
Chris Lee
[EMAIL PROTECTED]
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=10477&edit=1
--
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]