Hi...it is coming back all the time..
It looks like this
# Table structure for table `mos_session`
#
DROP TABLE IF EXISTS mos_session;
CREATE TABLE `mos_session` (
`username` varchar(50) default NULL,
`time` varchar(14) default NULL,
`session_id` varchar(200) NOT NULL default '0',
`guest` tinyint(4) default '1',
`userid` int(11) default NULL,
`usertype` varchar(50) default NULL,
`gid` tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (`session_id`),
KEY `whosonline` (`guest`,`usertype`)
) TYPE=MyISAM;
It has happend 3 times now...i have to put this into the db to make it work again.
I have 6 other installations whit the same db and theres no problem.
Tony