[PHP-DEV] PHP 4.0 Bug #8545 Updated: Session variables not carried forward in Netscape Client From: tvkbhaskar2011 <email protected>
Date: 02/28/01

ID: 8545
User Update by: tvkbhaskar2011 <email protected>
Old-Status: Feedback
Status: Open
Bug Type: *Session related
Description: Session variables not carried forward in Netscape Client

hi,
observation is same even with the latest one.

rgds
Bhaskar

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

[2001-02-27 18:17:25] sniper <email protected>
Does this happen with latest CVS snapshot from http://snaps.php.net/ ??

--Jani

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

[2001-01-16 08:03:21] tvkbhaskar2011 <email protected>
Hi,
an update on this.
This problem is observed if the server type in apache web server is INETD. If we run apache as standalone it works fine.

can u check this and revert why sessions are not working in netscape if apache runs as inetd.

rgds
Bhaskar

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

[2001-01-10 06:59:28] tvkbhaskar2011 <email protected>
can i have the design team views asap.

thanks in advance
Bhaskar

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

[2001-01-08 04:42:01] tvkbhaskar2011 <email protected>
I am attaching the script of two files first.php and second.php which can be used to reproduce this.

------------beginning of first.php-------------
<?
session_start();
session_register(test);
$test="firstpage";
?>
<html>
<head>
<title>Php Bug reporting page</title></head>
<body>
<a href="second.php">Click here to goto next page</a></table>
</body>
</html>
---------------------end of first.php-----------
---------------beginning of second.php-----------
<?
session_start();
echo $test;
session_unset();?>
<html><head>
<title>Php Bug reporting page</title></head>
<body>
<a href="first.php">Click here to goto first page</a></table>
</body>
</html>
----------------------end of second.php-------------

On clicking the hyperlink of the first page, i should see the value of variable test and an hyperlink. this comes in Ie and not in netscape.

hope this will help u in finding the problem i am having.

rgds
Bhaskar

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

[2001-01-08 03:37:44] tvkbhaskar2011 <email protected>
I am attaching the script of two files first.php and second.php which can be used to reproduce this.

------------beginning of first.php-------------
<?
session_start();
session_register(test);
$test="firstpage";
?>
<html>
<head>
<title>Php Bug reporting page</title></head>
<body>
<a href="second.php">Click here to goto next page</a></table>
</body>
</html>
---------------------end of first.php-----------
---------------beginning of second.php-----------
<?
session_start();
echo $test;
session_unset();?>
<html><head>
<title>Php Bug reporting page</title></head>
<body>
<a href="first.php">Click here to goto first page</a></table>
</body>
</html>
----------------------end of second.php-------------

On clicking the hyperlink of the first page, i should see the value of variable test and an hyperlink. this comes in Ie and not in netscape.

hope this will help u in finding the problem i am having.

rgds
Bhaskar

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

The remainder of the comments for this report are too long. To view the rest of the comments, please view the bug report online.

Full Bug description available at: http://bugs.php.net/?id=8545

-- 
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>