Hi
I realy hope anyone out there can help me with this,
I have this site(on a shared server), where I just found that sessions are not working as it used to anymore.
eg. check this out:
http://www.skix.no/start_session.php
this do not generate the errors as expected
eg. I have my session save path set to "test/", and that path does not exsist.
session_save_path("test/");
The server just won't save the session.
here is the scrip in start_session.php
<?php
session_save_path("test/");
session_start();
$test = "Hello World!";
session_register("test");
echo "Test: ".$SESSION['test'];
?>
and here is the PHP info
http://www.skix.no/i.php
Does anyone knows why it don't work?
It did before, and there is not so much help to get from the server provider
thanks in advance,
Best regards
thoand