IE + IA64 + session variables = doesn't work
Moderator: General Moderators
IE + IA64 + session variables = doesn't work
I am remotely connecting to a Linux IA64 machine through IE and I have found my session variables do not work. It owrks in Mozilla but not IE. Can anyone help?
Thanks in advance,
Jason
Thanks in advance,
Jason
And (i am sure you did but i want to ask to be sure), have you tried something very simple like below?
Code: Select all
<?php
session_start();
$_SESSION['test'] = "test";
echo $_SESSION['test'];
?>- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Put full blown error reporting on please...
Could be an issue creating the session files on the IA64 machine.
Could be an issue creating the session files on the IA64 machine.
Code: Select all
ini_set('display_errors', 1);
error_reporting(E_ALL);- Chris Corbyn
- Breakbeat Nuttzer
- Posts: 13098
- Joined: Wed Mar 24, 2004 7:57 am
- Location: Melbourne, Australia
Session sets cookies as well as reading session files on the server (well of course it depends upon your ini configuration) so if the browsers are configured differently you may find one working but not the other - I've done it myself using IIS when i was just a lil n00b... error reporting revealed that the session dir did not have the appropriate permissions.
I'm probably wrong but putting error_reporting on is always a good start anyway
I'm probably wrong but putting error_reporting on is always a good start anyway