Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Plugin: bbMenu 0.1 beta

Hmm it should have entries, something went wrong there.

If you can, delete the bb_menu table.

Then in phpMyAdmin:

CREATE TABLE bb_menu (

set varchar(50) NOT NULL default '',

item varchar(50) NOT NULL default '',

page varchar(50) NOT NULL default '',

location varchar(50) NOT NULL default '',

order int(9) NOT NULL default '0',

PRIMARY KEY (set,item)

) ENGINE=MyISAM DEFAULT CHARSET=latin1;

If your current bb_menu already has these values, you wont have to recreate it. But better save then sorry…

Now fill the table:

INSERT INTO bb_menu VALUES ('active', 'Forums', 'index.php', 'front-page', 0)

INSERT INTO bb_menu VALUES ('active', 'Search', 'search.php', 'search-page', 1)

INSERT INTO bb_menu VALUES ('available', 'Statistics', 'statistics.php', 'stats-page', 0)

Now refresh the admin page. This should fix it. Not sure if I gave the right syntaces to use in phpMyAdmin, but you get the idea :)

ps. If you didn’t use the bb_ prefix, you should change this…

ps2. And leave out the @

ps3. This is the beta so it has some errors that are fixed in the final release (after bbPress 0.8 is out)

Skip to toolbar