2
Quote:
tedsmith wrote:
1) On my internal Intranet site at work, when users are browsing the forums it says 'Browsing This Thread -1 Anonymous Users' instead of the user names (they are logged in). ANy ideas why?
the table bb_online has changed so please check if the table looks like this below, if drop the contents not the table, after this it must work
CREATE TABLE `bb_online` (
`online_forum` int(10) NOT NULL default '0',
`online_topic` int(10) NOT NULL default '0',
`online_uid` int(10) default NULL,
`online_uname` varchar(255) default NULL,
`online_ip` varchar(32) default NULL,
`online_updated` int(14) default NULL
) TYPE=MyISAM COMMENT='whoisonline';
Quote:
2) When I installed NewBB2, I made a bit of a boo boo because I tried to run the script before I updated the module in Sys Admin (just forgot). I then remembered, so went and updated the module in Sys Admin, and then ran the update script again. It has worked and the module is installed and works OK, but the very first step of the update (where it lists some database tables with green or red colours) was all in red saying it had failed to create a list of 5 values (for which I did not make a note - sorry!). Could this be causing the problem above? Will it cause other problems? Is there a way I can correct whatever values are missing in the database now?
The script I ran was NewBB1_to_NewBB2.php
to upgrade from NewBB1 to NewBB2.
Thanks
Well the updaters where fast and easy coded so if you run them more then once you got mostly red lights, but this means most parts are exist, i didn´t had the time to make a better error message class for the updaters.