4571 Posts in 1382 Topics by 1376 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1158 Views |
-
session.use_cookies=Off

18 December 2010 at 1:44am
We have developed a Silverstripe site on a local server, this works fine.
But on the live server we get problems with login, with creating of Redirector page, with staying logged in, with uploading of images in ImageGallery etc.
Some live server settings are not standard, for examplesession.use_cookies=Off ;
session.use_trans_sid=1;
session.name is not PHPSESSIDI think the session.use_cookies makes the troubles and must be set to On.
Do I have right?
Can Silverstripe properly work with session.use_cookies=off? -
Re: session.use_cookies=Off

18 December 2010 at 7:39pm Last edited: 18 December 2010 7:48pm
I'm not sure this will work, but you could try adding this to the top of sapphire/core/Core.php just underneath the <?php tag:
ini_set('session.use_cookies', '1');
ini_set('session.use_trans_sid', '0');
ini_set('session.name', 'PHPSESSID');If that doesn't work, add this to the .htaccess file instead:
php_value session.use_cookies 1
php_value session.use_trans_sid 0
php_value session.name PHPSESSIDSean
-
Re: session.use_cookies=Off

19 December 2010 at 5:26am
Thank you, I have already tested with ini_set('session.use_cookies', '1') in mysite/_config.php, it seems to work.
The setting session.use_cookies=1 is not mentioned in silverstripe documentation as required, therefore I have asked. -
Re: session.use_cookies=Off

19 December 2010 at 12:35pm Last edited: 19 December 2010 12:36pm
It's not mentioned, but there are certain PHP configuration options we miss out. I don't believe it's common to disable cookies for sessions, hence why we haven't discovered this until you raised the issue. Paranoid web host?
| 1158 Views | ||
|
Page:
1
|
Go to Top |


