Hello;
seems to be related to a server problem.
Sessions seem not to be stored, while you can use cookies sessions.
Please contact your administrator, to let the temporary folder being writable.
Or else, make an empty folder, e.g. called "
temp", outside of your website structure, with CHMOD 777.
Then, edit
includes/sessions.php, and find:
@session_start();
Insert just before:
session_save_path("/real/path/to/your/temp/folder/");
If you do not know the real path to your "
temp" folder, create in it a file called "
path.php", with this code:
<?php
$p=getcwd();
echo $p;
?>
Then, open your browser and go to:
http://my_website/temp/path.phpThe real path to
path.php will be then displayed.
Copy it and put it instead of "/real/path/to/your/temp/folder/".
But, please, contact first your server administrator. The problem should be quickly solved.