Jump to content

Recommended Posts

I'm having a problem, where my sessions recognize me being logged in just fine, unless I'm at http://www.url.com/ instead of http://url.com/ ... I want sessions to recognize me as being logged in everywhere on the site, including sub domains... Is this possible?

Link to comment
https://forums.phpfreaks.com/topic/52885-sessions-not-staying/
Share on other sites

this may help

 

'session.cookie_domain' should be set to empty string for all local domain names, not only for 'localhost' (but should not be empty for local IP addresses):

 

<?php

ini_set('session.cookie_domain', (strpos($_SERVER['HTTP_HOST'],'.') !== false) ? $_SERVER['HTTP_HOST'] : '');

?>

Link to comment
https://forums.phpfreaks.com/topic/52885-sessions-not-staying/#findComment-261145
Share on other sites

session_start();
session_name('SessionMain');

 

That's what I've got so far.

 

I've tried putting that snippet of code above, below, and completely replacing "session_start()"

 

Can someone tell me what I'm doing wrong please if you know? Thank you!

Link to comment
https://forums.phpfreaks.com/topic/52885-sessions-not-staying/#findComment-261588
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.