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
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
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: Wed May 15 03:01:33 2024 UTC