SQL Error : 1146

Your phpBB Version: 2.0.
phpBB Type: Standard phpBB
MODs: Yes
Your knowledge: Basic Knowledge
Board URL:
PHP Version:
MySQL Version:
What was done before the problem appeared?
What was done to try to solve the problem?
De.scription and Message
Hi,
I have just installed 1.2.0 version of the Portal on my phpBB 2.0.22 forum.
I ran the sql as indicated and now I am getting this message.
phpBB : Critical Error
Could not query portal config table
DEBUG MODE
SQL Error : 1146 Table 'newforum170107.PORTAL_CONFIG_TABLE' doesn't exist
SELECT * FROM PORTAL_CONFIG_TABLE
Line : 47
File : functions_portal.php
Any ideas on what I have done wrong?
Apologise if this is in the wrong section,
Ross
', 'c', 3, 1, '', 0, 2, 0, 0, '7e13fbbacc', 1, 1, 0, 1, 0, '');
INSERT INTO phpbb_blocks VALUES (17, 'Sample 4', 'Without background only
', 'c', 5, 1, '', 0, 2, 0, 0, 'ed31156971', 1, 0, 1, 1, 0, '');
INSERT INTO phpbb_blocks VALUES (19, 'Sample 7', 'Take note that pages and blocks can have different permissions. There are 2 kinds of permissions to set, per user level and per usergroups. It is allowed to mix permissions but it is wise to set the user level to registered when usergroups are used (e.g. making a page only accessible for a specific usergroup)
<img>', 'c', 3, 1, '', 0, 3, 0, 0, '48d2dd24ac', 1, 0, 1, 0, 0, '');
DROP TABLE IF EXISTS phpbb_layout;
CREATE TABLE phpbb_layout (
lid int(10) unsigned NOT NULL auto_increment,
name varchar(100) NOT NULL default '',
template varchar(100) NOT NULL default '',
forum_wide tinyint(1) NOT NULL default '1',
view tinyint(1) NOT NULL default '0',
groups tinytext NOT NULL,
PRIMARY KEY (lid)
) TYPE=MyISAM;
INSERT INTO phpbb_layout VALUES (1, 'IM Portal Default', 'portal_body.tpl', 1, 0, '');
INSERT INTO phpbb_layout VALUES (2, 'Sample 1', 'layout1.tpl', 1, 0, '');
INSERT INTO phpbb_layout VALUES (3, 'Sample 2', 'layout1.tpl', 0, 0, '');
DROP TABLE IF EXISTS phpbb_portal_config;
CREATE TABLE phpbb_portal_config (
id int(10) unsigned NOT NULL auto_increment,
config_name varchar(255) NOT NULL default '',
config_value varchar(255) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
INSERT INTO phpbb_portal_config VALUES (1, 'default_portal', '1');
INSERT INTO phpbb_portal_config VALUES (2, 'portal_header', '1');
INSERT INTO phpbb_portal_config VALUES (3, 'portal_tail', '0');
INSERT INTO phpbb_portal_config VALUES (4, 'cache_enabled', '1');
INSERT INTO phpbb_portal_config VALUES (5, 'md_news_length', '250');
INSERT INTO phpbb_portal_config VALUES (6, 'md_news_forum_id', '1');
INSERT INTO phpbb_portal_config VALUES (7, 'md_num_news', '5');
INSERT INTO phpbb_portal_config VALUES (8, 'md_search_option_text', 'IM Portal');
INSERT INTO phpbb_portal_config VALUES (9, 'md_num_recent_topics', '10');
INSERT INTO phpbb_portal_config VALUES (10, 'md_approve_mod_installed', '0');
INSERT INTO phpbb_portal_config VALUES (11, 'md_recent_topics_style', '0');
INSERT INTO phpbb_portal_config VALUES (12, 'md_poll_bar_length', '40');
INSERT INTO phpbb_portal_config VALUES (13, 'md_poll_forum_id', '1');
INSERT INTO phpbb_portal_config VALUES (14, 'header_width', '150');
INSERT INTO phpbb_portal_config VALUES (15, 'footer_width', '');
INSERT INTO phpbb_portal_config VALUES (16, 'md_cache_file_locking', '1');
INSERT INTO phpbb_portal_config VALUES (17, 'md_cache_write_control', '1');
INSERT INTO phpbb_portal_config VALUES (18, 'md_cache_read_control', '1');
INSERT INTO phpbb_portal_config VALUES (19, 'md_cache_read_type', 'md5');
INSERT INTO phpbb_portal_config VALUES (20, 'md_cache_filename_protect', '0');
INSERT INTO phpbb_portal_config VALUES (21, 'md_cache_serialize', '1');
phpBB Type: Standard phpBB
MODs: Yes
Your knowledge: Basic Knowledge
Board URL:
PHP Version:
MySQL Version:
What was done before the problem appeared?
What was done to try to solve the problem?
De.scription and Message
Hi,
I have just installed 1.2.0 version of the Portal on my phpBB 2.0.22 forum.
I ran the sql as indicated and now I am getting this message.
phpBB : Critical Error
Could not query portal config table
DEBUG MODE
SQL Error : 1146 Table 'newforum170107.PORTAL_CONFIG_TABLE' doesn't exist
SELECT * FROM PORTAL_CONFIG_TABLE
Line : 47
File : functions_portal.php
Any ideas on what I have done wrong?
Apologise if this is in the wrong section,
Ross



INSERT INTO phpbb_blocks VALUES (17, 'Sample 4', 'Without background only


INSERT INTO phpbb_blocks VALUES (19, 'Sample 7', 'Take note that pages and blocks can have different permissions. There are 2 kinds of permissions to set, per user level and per usergroups. It is allowed to mix permissions but it is wise to set the user level to registered when usergroups are used (e.g. making a page only accessible for a specific usergroup)

DROP TABLE IF EXISTS phpbb_layout;
CREATE TABLE phpbb_layout (
lid int(10) unsigned NOT NULL auto_increment,
name varchar(100) NOT NULL default '',
template varchar(100) NOT NULL default '',
forum_wide tinyint(1) NOT NULL default '1',
view tinyint(1) NOT NULL default '0',
groups tinytext NOT NULL,
PRIMARY KEY (lid)
) TYPE=MyISAM;
INSERT INTO phpbb_layout VALUES (1, 'IM Portal Default', 'portal_body.tpl', 1, 0, '');
INSERT INTO phpbb_layout VALUES (2, 'Sample 1', 'layout1.tpl', 1, 0, '');
INSERT INTO phpbb_layout VALUES (3, 'Sample 2', 'layout1.tpl', 0, 0, '');
DROP TABLE IF EXISTS phpbb_portal_config;
CREATE TABLE phpbb_portal_config (
id int(10) unsigned NOT NULL auto_increment,
config_name varchar(255) NOT NULL default '',
config_value varchar(255) NOT NULL default '',
PRIMARY KEY (id)
) TYPE=MyISAM;
INSERT INTO phpbb_portal_config VALUES (1, 'default_portal', '1');
INSERT INTO phpbb_portal_config VALUES (2, 'portal_header', '1');
INSERT INTO phpbb_portal_config VALUES (3, 'portal_tail', '0');
INSERT INTO phpbb_portal_config VALUES (4, 'cache_enabled', '1');
INSERT INTO phpbb_portal_config VALUES (5, 'md_news_length', '250');
INSERT INTO phpbb_portal_config VALUES (6, 'md_news_forum_id', '1');
INSERT INTO phpbb_portal_config VALUES (7, 'md_num_news', '5');
INSERT INTO phpbb_portal_config VALUES (8, 'md_search_option_text', 'IM Portal');
INSERT INTO phpbb_portal_config VALUES (9, 'md_num_recent_topics', '10');
INSERT INTO phpbb_portal_config VALUES (10, 'md_approve_mod_installed', '0');
INSERT INTO phpbb_portal_config VALUES (11, 'md_recent_topics_style', '0');
INSERT INTO phpbb_portal_config VALUES (12, 'md_poll_bar_length', '40');
INSERT INTO phpbb_portal_config VALUES (13, 'md_poll_forum_id', '1');
INSERT INTO phpbb_portal_config VALUES (14, 'header_width', '150');
INSERT INTO phpbb_portal_config VALUES (15, 'footer_width', '');
INSERT INTO phpbb_portal_config VALUES (16, 'md_cache_file_locking', '1');
INSERT INTO phpbb_portal_config VALUES (17, 'md_cache_write_control', '1');
INSERT INTO phpbb_portal_config VALUES (18, 'md_cache_read_control', '1');
INSERT INTO phpbb_portal_config VALUES (19, 'md_cache_read_type', 'md5');
INSERT INTO phpbb_portal_config VALUES (20, 'md_cache_filename_protect', '0');
INSERT INTO phpbb_portal_config VALUES (21, 'md_cache_serialize', '1');