I need to store separate cookies for individual directories on my site. I have read several articles on how this can be accomplished, but I have not been able to get any of the solutions to work for me. I am executing one of these lines on each page (COOKIE_PATH = '/city_dir/'
):
session_set_cookie_params($lifetimeSeconds, COOKIE_PATH);
or
session_save_path(COOKIE_PATH);
Followed by:
if (isset($_COOKIE['PHPSESSID'])){
$data = $_COOKIE['PHPSESSID'];
$timeout = time() + $lifetimeSeconds;
session_start();
setcookie('PHPSESSID', $data, $timeout);
}
else {
session_start();
}
session_regenerate_id(true);
The first line (session_set_cookie_params
) sounded like the correct solution, but when I use that line, no cookies show up at all in the Chrome web developer tool listing, and I am unable to log in to the site.
The second line doesn't sound like the correct solution (seems I should be dealing with the cookie path, not the save path), but it comes closer. The first time a page loads, I see a cookie for path "/". If I refresh the page, that cookie remains, and a cookie is listed for the path COOKIE_PATH
. Unfortunately, I am still unable to log in. I searched and tried many variations all weekend, but could not get anything to work. What am I missing? I am using PHP Version 5.3.18.
Are you really REALLY sure this is the only way to solve the problem? You should only even attempt this if someone is holding your family hostage.
If the lives of your loved ones is under threat, then use a different session name for the different sessions. You could still associate the resulting cookies with different paths - but this is coincidental.
You are confusing the cookie path and the session handler path in your question.
Your code as it stands binds an existing session (you don't know where it came from - in most cases, it is the the path the browser is already on) and rebind the existing session. It is just possible that this is actually what you intend - but is still extremely dangerous. Assuming that you understand and manage the risk of fixation, then using differnt session names is still a better solution.
Perhaps if you told us why you need to this, we might be able to come up with more sensible advice on how to solve the problem.