Version of PHP: 5
OS: Linux - Fedora Core 4
-------------------------------------------
Here is the solution for the Session Expired issue in the admin login.
in the file admin.php remark line 63, so it looks like that:
Code: Select all
//$_SESSION=hesk_dbFetchAssoc($result);
Code: Select all
$row=mysql_fetch_array($result);
$_SESSION['pass']=$row['pass'];
$_SESSION['isadmin']=$row['isadmin'];
$_SESSION['id']=$row['id'];
$_SESSION['name']=$row['name'];
$_SESSION['user']=$row['user'];
$_SESSION['email']=$row['email'];
$_SESSION['user']=$row['user'];
$_SESSION['signature']=$row['signature'];
$_SESSION['categories']=$row['categories'];
$_SESSION['notify']=$row['notify'];
Have fun

Miki