php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #33750 Solution to ID's 8527 & 8588 not working for me
Submitted: 2005-07-18 17:21 UTC Modified: 2005-07-19 20:54 UTC
Votes:2
Avg. Score:4.5 ± 0.5
Reproduced:2 of 2 (100.0%)
Same Version:2 (100.0%)
Same OS:1 (50.0%)
From: checkforabcd at yahoo dot com Assigned:
Status: Not a bug Package: Session related
PHP Version: 4.3.11 OS: WinXP
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: checkforabcd at yahoo dot com
New email:
PHP Version: OS:

 

 [2005-07-18 17:21 UTC] checkforabcd at yahoo dot com
Description:
------------
I have checked the bug reports with ID 8527 & 8588 which were having exactly the same problem as mine with the only difference that the solution given for them isn't working in my case, ie, I set the "session.cookie_path" to "/" & still the problem just won't go away.

Please help...

Reproduce code:
---------------
checkuser.php //location :surevin.com/tender/checkuser.php
<?
session_start();
$_SESSION["madmin1"] = "abcd";
header('Location: http://www.surevin.com/tender/radmin/secondpage.php');
exit();
?>

secondpage.php
<?
session_start();
echo "The value of madmin is : ".$_SESSION["madmin1"];
?>

Expected result:
----------------
The value of madmin is : abcd

Actual result:
--------------
The value of madmin is : 

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2005-07-18 19:34 UTC] tony2001@php.net
1) Don't touch session.cookie.path
2) Fix your browser and make it to support session cookies (it's known winblows "security improvement").
3) Check what headers you get with some sniffer (or just use Mozilla).
 [2005-07-19 13:59 UTC] checkforabcd at yahoo dot com
ok..
My windows internet settings were perfectly fine. The sessions cookies were supported by default.
As for the mozilla stuff, it didn't work either & no errors or headers were shown.
Now what should I do to solve the problem....
 [2005-07-19 20:54 UTC] sniper@php.net
Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Mon Apr 29 09:01:28 2024 UTC