mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
my attempt to break things...
git-svn-id: file:///svn/phpbb/trunk@4682 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -481,6 +481,15 @@ CREATE TABLE phpbb_sessions (
|
||||
KEY session_user_id (session_user_id)
|
||||
);
|
||||
|
||||
# Table: 'phpbb_sitelist'
|
||||
CREATE TABLE phpbb_sitelist (
|
||||
site_id mediumint(8) UNSIGNED NOT NULL auto_increment,
|
||||
site_ip varchar(40) DEFAULT '' NOT NULL,
|
||||
site_hostname varchar(255) DEFAULT '' NOT NULL,
|
||||
ip_exclude tinyint(1) DEFAULT '0' NOT NULL,
|
||||
PRIMARY KEY (site_id)
|
||||
)
|
||||
|
||||
# Table: 'phpbb_smilies'
|
||||
CREATE TABLE phpbb_smilies (
|
||||
smile_id tinyint(4) UNSIGNED NOT NULL auto_increment,
|
||||
|
@@ -91,6 +91,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('display_last_edite
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email_sig','Thanks, The Management');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_email','address@yourdomain.tld');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('board_contact','contact@yourdomain.tld');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_function_name','mail');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('email_package_size','50');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery','0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host','');
|
||||
@@ -143,6 +144,9 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_attachments_pm
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('allow_pm_attach', '0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_dir', 'files');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_display_inlined','1');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_downloads', '0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_deny', '1');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('secure_allow_empty_referer', '1');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_width','0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_max_height','0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('img_link_width','0');
|
||||
|
Reference in New Issue
Block a user