Jump to content

SESSIONS not staying


siwelis

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.