I get the following error when I try to login:
"profile_comments' doesn't exist"
It seems to be a an SQL error; any ideas on how to fix?
Thx
I get the following error when I try to login:
"profile_comments' doesn't exist"
It seems to be a an SQL error; any ideas on how to fix?
Thx
You can create the table in phpMyAdmin
CREATE TABLE `profile_comments` (
`id` int(11) NOT NULL auto_increment,
`uid` int(11) NOT NULL default '0',
`posted_by` int(11) NOT NULL,
`comment` text NOT NULL,
`ip` varchar(255) NOT NULL default '',
`date` datetime NOT NULL default '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `uid` (`uid`)
);
Are you doing upgrade or new installation ?
Arrgghh!
My stupid. I was doing an upgrade.
I forgot to run 'install.php' (then delete the 'install' folder). Sorry for wasting space. Running install.php creates the new entry in MySQL, apparently.
Thanks - problem fixed! :)
Bookmarks