Lewis
-
2004-06-14
- status: open --> open-fixed
Firstly, there is a colum missing from the table
haven_users.
You'll need to add:
Name: online
type: int
length: 1
attributes: UNSIGNED
NOT NULL
default: 0
then, you'll need to create a folder in the game's dir
called sessions, and chmod it 777.
next up, edit config.inc.php add the following:
$sesspath="full/path/to/game/dir/sessions";
then you'll need to add the following:
include("config.inc.php");
session_save_path($sesspath);
to the very top of:
index.php
login.php
logout.php
and remove the second:
include("config.inc.php");
That was a really stupid mistake!
Sorry all.
Tinaldor