Quote:
Originally Posted by lcryan
I just installed this on gold it was not working so I went to uninstall it and I did via the install script now I am getting errors
http://forums.liquid-core.net/index.php
someone please help tried to run install script to put database files back did not work
HTML Code:
Database error in vBulletin 3.5.0:
Invalid SQL:
SELECT * FROM lc_userpage WHERE userid=1;
MySQL Error : Table 'lcsite_forum.lc_userpage' doesn't exist
Error Number : 1146
Date : Friday, September 30th 2005 @ 11:10:13 PM
Script : http://forum.liquid-core.net/
Referrer :
IP Address : -
Username : -
Classname : vb_database
thats the error
|
I had the same big problem. My forum wasn't working anymore. To make it work again, just run this in phpmyadmin (it's just a fix) :
Code:
CREATE TABLE `userpage` (
`userid` int(15) unsigned NOT NULL default '0',
`pagedata` text NOT NULL,
`rating` int(11) NOT NULL default '0',
`dateline` int(10) NOT NULL default '0',
`username` varchar(255) NOT NULL default '',
`views` int(10) NOT NULL default '0',
`numvotes` int(11) NOT NULL default '0',
`votetotal` int(11) NOT NULL default '0',
PRIMARY KEY (`userid`)
) TYPE=MyISAM;
Then your forum will work again.
But if you want to install the hack and avoid installation and unsinstallation problem used this xml file without running the query above : You may have to delete the original plugin if you have installed it.
https://vborg.vbsupport.ru/showpost....&postcount=404
Good luck !