My website www.clanbda.com , if you click the forums button u get this message , how do i fix it.
The site was working fine before i went to bed wendsday night , then i woke up before i went to work and hopped on my site and this error message is coming up.
phpBB : Critical Error
Error creating new session
DEBUG MODE
SQL Error : 1142 INSERT command denied to user 'dbo224258454'@'74.208.16.70' for table 'nuke_bbsessions'
INSERT INTO nuke_bbsessions (session_id, session_user_id, session_start, session_time, session_ip, session_page, session_logged_in, session_admin) VALUES ('733d72fc5283ee915ef97de3e750ddb1', '1', '1198188682', '1198188682', '1803beac', '0', '0', '0')
Line : 429
File : sessions.php
I ran this in my SQL to fix the bbsessions
DROP TABLE `nuke_bbsessions`;
CREATE TABLE `nuke_bbsessions` (
`session_id` varchar(32) NOT NULL default '',
`session_user_id` mediumint(8) NOT NULL default '0',
`session_start` int(11) NOT NULL default '0',
`session_time` int(11) NOT NULL default '0',
`session_ip` varchar(8) NOT NULL default '0',
`session_page` int(11) NOT NULL default '0',
`session_logged_in` tinyint(1) NOT NULL default '0',
`session_admin` tinyint(2) NOT NULL default '0',
`session_url_qs` text NOT NULL,
`session_url_ps` text NOT NULL,
`session_url_specific` int(10) NOT NULL default '0',
PRIMARY KEY (`session_id`),
KEY `session_user_id` (`session_user_id`),
KEY `session_id_ip_user_id` (`session_id`,`session_ip`,`session_user_id`)
) TYPE=MyISAM;
That didn't work ..
Then I cleared the sites cache that didn't work , Then i went and deleted the cache.php folder did nothing also.
Now im kinda stuck.. Help me please..