Anyhow, I believe I followed all of your instructions in this guide (thank you, btw), but I get the following message when trying to log-in after all is done:
General Error
SQL ERROR [ mysql4 ]
Unknown column 'is_dynamic' in 'field list' [1054]
An sql error occurred while fetching this page. Please contact an administrator if this problem persists.
This is off the index page and I cannot reference to an is_dynamic field in any of the update scripts. Can anyone lead me in the right direction, please?
Thanks.
Edit: after a long find (bad text editor), I discovered this in root/install/schemas/mysql_40_schema.sql
# Table: 'phpbb_config'
CREATE TABLE phpbb_config (
config_name varchar(255) DEFAULT '' NOT NULL,
config_value text NOT NULL,
is_dynamic tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
PRIMARY KEY (config_name),
KEY is_dynamic (is_dynamic)
);
Looks like I could probably just alter the table to look like this? But why did it never get altered by the update script?








Thisone was easy.
Thanks.