looks like you don't have cookies enabled or your server is messing up the session.
try using a different browser, if none of them work then,
go to freichat/installation/
open all the PHP files and search for the following code and remove it from all the files,
(the code can vary a little from page to page)
/* Make me sure */
if(!isset($_SESSION['FREIX']) || $_SESSION['FREIX'] != 'authenticated')
{
header("Location:index.php");
exit;
}
/* Now i am secure */
looks like you don't have cookies enabled or your server is messing up the session.
try using a different browser, if none of them work then,
go to freichat/installation/
open all the PHP files and search for the following code and remove it from all the files,
(the code can vary a little from page to page)
<code>
/* Make me sure */
if(!isset($_SESSION['FREIX']) || $_SESSION['FREIX'] != 'authenticated')
{
header("Location:index.php");
exit;
}
/* Now i am secure */
</code>
Necessity is the mother of all inventions!