



That's a bit sucky, they should give it a "delete added information" option to the options page so that you can deactivate without binning it. In future don't deactivate it, but move it out of the wp-content/themes directory.WotDa said:I'm still on 2.13, didn't know there was a new version.
Some update notes would be handy, but couldn't find them…
Nvm, found it, but if it breaks my Ajax I aint going to be happy.
Edit: Ffs, damn user online plugin deletes the MySQL table when you deactivate, most annoying.![]()
Moredhel said:That's a bit sucky, they should give it a "delete added information" option to the options page so that you can deactivate without binning it. In future don't deactivate it, but move it out of the wp-content/themes directory.
not really had a look at the options, but it's not too hard to just copy and paste the table back 
DROP TABLE IF EXISTS `wp_useronline`;
CREATE TABLE IF NOT EXISTS `wp_useronline` (
`timestamp` int(15) NOT NULL default '0',
`userid` int(10) NOT NULL default '0',
`username` varchar(50) NOT NULL default '',
`displayname` varchar(255) NOT NULL default '',
`useragent` varchar(255) NOT NULL default '',
`ip` varchar(40) NOT NULL default '',
`location` varchar(255) NOT NULL default '',
`url` varchar(255) NOT NULL default '',
`type` enum('member','guest','bot') NOT NULL default 'guest'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `wp_useronline`
--
INSERT INTO `wp_useronline` VALUES (1179341934, 0, 'yahoo', 'Yahoo', 'Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)', '74.6.86.34', 'Jasatech Graphics » User’s Online', '%2Fusers-online%2F', 'bot');
