7
Put the code below in php file and name it any thing and call it from your browser . but first edit the code to the name of ur MySQL server , user, db name, password .. and tabel name ..
MYSQL_CONNECT('localhost','dbuser','password');
@mysql_select_db("dbname") or die(mysql_error());
$query="TRUNCATE xoops_session";
mysql_query($query);
mysql_close()
?>
or try this
In your XOOPS directory: /kernel/session.php around line 80
change:
var $enableRegenerateId = true;
to:
var $enableRegenerateId = false;