I got everything installed, but when I try and post something on the userpage I'm getting an SQL error.
Quote:
Database error in vBulletin 3.5.0 Release Candidate 3:
Invalid SQL:
SELECT * FROM vb3_usershout WHERE ownerid = 1 ORDER BY shoutid DESC LIMIT 5;
MySQL Error : Table 'detailer_forum.vb3_usershout' doesn't exist
|
It looks like the installer didn't do many of the queries. I tried installing the table manually with the info from the installuserpage.php file but I couldn't get it work. I tried this.
Code:
CREATE TABLE `vb3_usershout` (
`shoutid` int( 11 ) unsigned NOT NULL AUTO_INCREMENT '',
`ownerid` int( 11 ) unsigned NOT NULL default '0',
`message longtext` NOT NULL ,
`shouterid` int( 11 ) unsigned NOT NULL default '0',
`shoutername` varchar( 50 ) NOT NULL default '',
`dateline` int( 11 ) NOT NULL default '0',
PRIMARY KEY ( `shoutid` )
) TYPE = MYISAM AUTO_INCREMENT = '48'
So what I'm I screwing up?