
10-01-2005, 01:04 PM
|
 |
|
|
Join Date: Aug 2004
Location: Boston
Posts: 19
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by cclaerhout
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 !
|
Thank you worked great!
|