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 !
|
I think you need to change this:
PHP Code:
$db->query_write("DROP TABLE IF EXISTS " . TABLE_PREFIX . " usergroup DROP userpagepermissions");
to this:
PHP Code:
$db->query_write("ALTER TABLE IF EXISTS " . TABLE_PREFIX . " usergroup DROP userpagepermissions");
Dropping the usergroup table is not really a very good idea.