Page 1 of 1

[SOLVED] Knowledge Base error

PostPosted: Tue Jan 30, 2007 6:39 pm
Author: MercAngel
Your phpBB Version: 2.0.
phpBB Type: Integramod 141
MODs: No
Your knowledge: Basic Knowledge
Board URL: http://atlantis.servegame.org/forums/portal.php

PHP Version:
MySQL Version:


What was done before the problem appeared?
just trying to access Knowledge Base


What was done to try to solve the problem?
Nothing Yet



De.scription and Message

this is the error i get whne i try to access the Knowledge Base

this was a new install with no mods

SQL Error : 1146 Table 'Eagle.phpbb_kb_custom' doesn't exist

SELECT * FROM phpbb_kb_custom ORDER BY field_order ASC

Re: Knowledge Base error

PostPosted: Tue Jan 30, 2007 6:45 pm
Author: Teelk
It's very rare to see any of the db entries fail on install, but I suppose it could happen. Run this sql query in phpmyadmin to create the table.

Code: Select all
CREATE TABLE phpbb_kb_custom (   custom_id int(50) NOT NULL auto_increment,   custom_name text NOT NULL,   custom_de.scription text NOT NULL,   data text NOT NULL,   field_order int(20) NOT NULL default '0',   field_type tinyint(2) NOT NULL default '0',   regex varchar(255) NOT NULL default '',   PRIMARY KEY  (custom_id)) TYPE=MyISAM;

Re: Knowledge Base error

PostPosted: Tue Jan 30, 2007 7:09 pm
Author: MercAngel
Thanks that fixed it