|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2011-02-10 14:33 UTC] webccdev2 at gmail dot com
Description: ------------ Hi, I'm having the session related problem for last one week. I'm using prado framework. It is a normal log in mechanism code. After the successful log in it redirects to my account page. Before redirection all the session values are stored correctly after the redirection (using header) all the session values are automatically made as null. I used all kind of redirection like javascript (window.location), meta (refresh). But i dint get any success. Note: Currently I'm working in PHP 5.2.14, Apache 2.2.8. But the same code working fine in PHP 5.2.1 & 5.2.2 with same apache version. I used Firefox 3.6.12 & IE 7, both have the same issue. Expected result: ---------------- After Redirection all session values should carry the values to my account page Actual result: -------------- All session values are null. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 09:00:01 2025 UTC |
Does it still fail if you transfer the session_id() in the query to the page you are redirecting to like: header('location: /test/?' . session_name() . '=' . session_id()); In either case, does it work as if written without the framework code, if not then you should report it to their tracker.