Guest Posted October 14, 2008 Posted October 14, 2008 Hey, I have been trying to figure this out for quite sometime, and ideas would be appreciated. I have tried to replace with an updated version of sessions.php with no avail, the session were not bieng created or retained for that matter. I am just trying to figure out what I am doing wrong, and how to fix it. Even though it doesnt compromise functionality, it doesnt help my SEO strategy. Any help will be appreciated. function tep_session_close() { foreach($_SESSION as $key =>$value) { unset($_SESSION[$key]); global $$key; $_SESSION[$key] = $$key; } } Quote
Dennisra Posted December 22, 2009 Posted December 22, 2009 Hey, I have been trying to figure this out for quite sometime, and ideas would be appreciated. I have tried to replace with an updated version of sessions.php with no avail, the session were not bieng created or retained for that matter. I am just trying to figure out what I am doing wrong, and how to fix it. Even though it doesnt compromise functionality, it doesnt help my SEO strategy. Any help will be appreciated. function tep_session_close() { foreach($_SESSION as $key =>$value) { unset($_SESSION[$key]); global $key; $_SESSION[$key] = $key; } } I am now battling this problem. I hope there is a simple fix available. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.