in the index.php file you are using date with backticks. on windows platforms this doesn't work.
you should use something like this instead:
$timestamp = date ("Y-m-d H:i:s");
Logged In: NO
or even $timestamp = "date +.%Y-%m-%d %H:%M:%S";
Log in to post a comment.
Logged In: NO
or even
$timestamp = "date +.%Y-%m-%d %H:%M:%S";