Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../var/softacul.../aef
File: mysql.php
<?php
[0] Fix | Delete
[1] Fix | Delete
//////////////////////////////////////////////////////////////
[2] Fix | Delete
//===========================================================
[3] Fix | Delete
// mysql.php(Setup)
[4] Fix | Delete
//===========================================================
[5] Fix | Delete
// AEF : Advanced Electron Forum
[6] Fix | Delete
// Version : 1.0.8
[7] Fix | Delete
// Inspired by Pulkit and taken over by Electron
[8] Fix | Delete
// ----------------------------------------------------------
[9] Fix | Delete
// Started by: Electron, Ronak Gupta, Pulkit Gupta
[10] Fix | Delete
// Date: 23rd Jan 2006
[11] Fix | Delete
// Time: 15:00 hrs
[12] Fix | Delete
// Site: http://www.anelectron.com/ (Anelectron)
[13] Fix | Delete
// ----------------------------------------------------------
[14] Fix | Delete
// Please Read the Terms of use at http://www.anelectron.com
[15] Fix | Delete
// ----------------------------------------------------------
[16] Fix | Delete
//===========================================================
[17] Fix | Delete
// (c)Electron Inc.
[18] Fix | Delete
//===========================================================
[19] Fix | Delete
//////////////////////////////////////////////////////////////
[20] Fix | Delete
[21] Fix | Delete
[22] Fix | Delete
$queries = array();
[23] Fix | Delete
[24] Fix | Delete
[25] Fix | Delete
//$queries[] = "";
[26] Fix | Delete
[27] Fix | Delete
if(!empty($__settings['utf8'])){
[28] Fix | Delete
[29] Fix | Delete
$queries[] = "ALTER DATABASE ".$__settings['softdb']."
[30] Fix | Delete
CHARACTER SET utf8
[31] Fix | Delete
DEFAULT CHARACTER SET utf8
[32] Fix | Delete
COLLATE utf8_general_ci
[33] Fix | Delete
DEFAULT COLLATE utf8_general_ci";
[34] Fix | Delete
[35] Fix | Delete
}
[36] Fix | Delete
[37] Fix | Delete
//Apps - Applications
[38] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."apps (
[39] Fix | Delete
`apid` mediumint(8) NOT NULL auto_increment,
[40] Fix | Delete
`ap_name` varchar(100) NOT NULL default '',
[41] Fix | Delete
`ap_version` varchar(15) NOT NULL default '',
[42] Fix | Delete
`installed_time` int(10) NOT NULL default '0',
[43] Fix | Delete
`ap_info` varchar(255) NOT NULL default '',
[44] Fix | Delete
PRIMARY KEY (`apid`)
[45] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[46] Fix | Delete
[47] Fix | Delete
[48] Fix | Delete
//Apps Registry - Applications Registry
[49] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."apps_registry (
[50] Fix | Delete
`apid` mediumint(8) NOT NULL default '0',
[51] Fix | Delete
`uid` mediumint(8) NOT NULL default '0',
[52] Fix | Delete
`apps_registry` text NOT NULL,
[53] Fix | Delete
UNIQUE KEY `apid` (`apid`,`uid`)
[54] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[55] Fix | Delete
[56] Fix | Delete
[57] Fix | Delete
//Attachment Mimetypes
[58] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."attachment_mimetypes (
[59] Fix | Delete
atmtid smallint(5) NOT NULL auto_increment,
[60] Fix | Delete
atmt_ext varchar(20) NOT NULL default '',
[61] Fix | Delete
atmt_mimetype varchar(255) NOT NULL default '',
[62] Fix | Delete
atmt_icon tinytext NOT NULL,
[63] Fix | Delete
atmt_posts tinyint(2) NOT NULL default '0',
[64] Fix | Delete
atmt_avatar tinyint(2) NOT NULL default '0',
[65] Fix | Delete
atmt_isimage tinyint(2) NOT NULL default '0',
[66] Fix | Delete
PRIMARY KEY (atmtid)
[67] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[68] Fix | Delete
[69] Fix | Delete
//Data for Attacment Mimetypes
[70] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (1, 'png', 'image/png', 'png.png', 1, 1, 1)";
[71] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (2, 'jpg', 'image/jpeg', 'jpg.png', 1, 1, 1)";
[72] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (3, 'gif', 'image/gif', 'gif.png', 1, 1, 1)";
[73] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (4, 'bmp', 'image/bitmap', 'bmp.png', 1, 1, 1)";
[74] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (5, 'tiff', 'image/tiff', 'tiff.png', 1, 1, 1)";
[75] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (6, 'txt', 'plain/text', 'txt.png', 1, 0, 0)";
[76] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (7, 'jpeg', 'image/jpeg', 'jpg.png', 1, 1, 1)";
[77] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (8, 'doc', 'application/msword', 'doc.png', 1, 0, 0)";
[78] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (9, 'mpg', 'video/mpeg', 'mpg.png', 1, 0, 0)";
[79] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."attachment_mimetypes VALUES (10, 'zip', 'application/zip', 'zip.png', 1, 0, 0)";
[80] Fix | Delete
[81] Fix | Delete
//Attachments
[82] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."attachments (
[83] Fix | Delete
atid mediumint(8) NOT NULL auto_increment,
[84] Fix | Delete
at_original_file tinytext NOT NULL,
[85] Fix | Delete
at_file tinytext NOT NULL,
[86] Fix | Delete
at_mimetype_id smallint(5) NOT NULL default '0',
[87] Fix | Delete
at_size int(10) NOT NULL default '0',
[88] Fix | Delete
at_fid smallint(5) NOT NULL default '0',
[89] Fix | Delete
at_pid int(10) NOT NULL default '0',
[90] Fix | Delete
at_downloads int(10) NOT NULL default '0',
[91] Fix | Delete
at_time int(10) NOT NULL default '0',
[92] Fix | Delete
at_mid mediumint(8) NOT NULL default '0',
[93] Fix | Delete
at_width smallint(5) NOT NULL default '0',
[94] Fix | Delete
at_height smallint(5) NOT NULL default '0',
[95] Fix | Delete
PRIMARY KEY (atid)
[96] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[97] Fix | Delete
[98] Fix | Delete
//Categories
[99] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."categories (
[100] Fix | Delete
cid smallint(5) NOT NULL auto_increment,
[101] Fix | Delete
name tinytext NOT NULL,
[102] Fix | Delete
`order` smallint(5) NOT NULL default '0',
[103] Fix | Delete
collapsable tinyint(2) NOT NULL default '1',
[104] Fix | Delete
PRIMARY KEY (cid)
[105] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[106] Fix | Delete
[107] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."categories VALUES (1, 'General Stuff', 1, 1)";
[108] Fix | Delete
[109] Fix | Delete
//Errors
[110] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."errors (
[111] Fix | Delete
type tinyint(3) NOT NULL default '0',
[112] Fix | Delete
id mediumint(5) NOT NULL default '0'
[113] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[114] Fix | Delete
[115] Fix | Delete
//Forum Permissions
[116] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."forumpermissions (
[117] Fix | Delete
fpfid smallint(5) NOT NULL default '0',
[118] Fix | Delete
fpugid mediumint(5) NOT NULL default '0',
[119] Fix | Delete
can_post_topic tinyint(2) NOT NULL default '0',
[120] Fix | Delete
can_reply tinyint(2) NOT NULL default '0',
[121] Fix | Delete
can_vote_polls tinyint(2) NOT NULL default '0',
[122] Fix | Delete
can_post_polls tinyint(2) NOT NULL default '0',
[123] Fix | Delete
can_attach tinyint(2) NOT NULL default '0',
[124] Fix | Delete
can_view_attach tinyint(2) NOT NULL default '0',
[125] Fix | Delete
UNIQUE KEY fpfid (fpfid,fpugid)
[126] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[127] Fix | Delete
[128] Fix | Delete
//Forums
[129] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."forums (
[130] Fix | Delete
`fid` smallint(5) NOT NULL auto_increment,
[131] Fix | Delete
`cat_id` smallint(5) NOT NULL default '0',
[132] Fix | Delete
`par_board_id` smallint(5) NOT NULL default '0',
[133] Fix | Delete
`forum_order` smallint(5) NOT NULL default '0',
[134] Fix | Delete
`member_group` tinytext NOT NULL,
[135] Fix | Delete
`fname` tinytext NOT NULL,
[136] Fix | Delete
`description` tinytext NOT NULL,
[137] Fix | Delete
`fimage` tinytext NOT NULL,
[138] Fix | Delete
`fredirect` tinytext NOT NULL,
[139] Fix | Delete
`ntopic` mediumint(8) NOT NULL default '0',
[140] Fix | Delete
`nposts` mediumint(8) NOT NULL default '0',
[141] Fix | Delete
`status` tinyint(3) NOT NULL default '1',
[142] Fix | Delete
`prune` tinyint(3) NOT NULL default '0',
[143] Fix | Delete
`allow_poll` tinyint(2) NOT NULL default '0',
[144] Fix | Delete
`allow_html` tinyint(2) NOT NULL default '0',
[145] Fix | Delete
`id_skin` smallint(5) NOT NULL default '0',
[146] Fix | Delete
`override_skin` tinyint(2) NOT NULL default '0',
[147] Fix | Delete
`inc_mem_posts` tinyint(2) NOT NULL default '1',
[148] Fix | Delete
`quick_reply` tinyint(2) NOT NULL default '0',
[149] Fix | Delete
`f_last_pid` int(10) NOT NULL default '0',
[150] Fix | Delete
`frulestitle` tinytext NOT NULL,
[151] Fix | Delete
`frules` text NOT NULL,
[152] Fix | Delete
`mod_topics` tinyint(2) NOT NULL default '0',
[153] Fix | Delete
`mod_posts` tinyint(2) NOT NULL default '0',
[154] Fix | Delete
`rss` int(4) NOT NULL default '0',
[155] Fix | Delete
`rss_topic` int(4) NOT NULL default '0',
[156] Fix | Delete
PRIMARY KEY (`fid`)
[157] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[158] Fix | Delete
[159] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."forums VALUES (1, 1, 0, 1, '-1,0,2,3', 'Generals', 'Talk about anything you like in general!', '', '', 1, 1, 1, 0, 1, 1, 0, 0, 1, 0, 0, '', '', 0, 0, 10, 10)";
[160] Fix | Delete
[161] Fix | Delete
//Forgot Passwords
[162] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."fpass (
[163] Fix | Delete
fpuid mediumint(8) NOT NULL default '0',
[164] Fix | Delete
resetcode varchar(10) NOT NULL default '',
[165] Fix | Delete
fptime int(10) NOT NULL default '0',
[166] Fix | Delete
UNIQUE KEY fpuid (fpuid)
[167] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[168] Fix | Delete
[169] Fix | Delete
//Marked read topics and forums
[170] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."mark_read (
[171] Fix | Delete
mr_uid mediumint(8) NOT NULL default '0',
[172] Fix | Delete
mr_fid smallint(5) NOT NULL default '0',
[173] Fix | Delete
mr_time int(10) NOT NULL default '0',
[174] Fix | Delete
UNIQUE KEY mr_uid (mr_uid,mr_fid)
[175] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[176] Fix | Delete
[177] Fix | Delete
//Moderators
[178] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."moderators (
[179] Fix | Delete
mod_mem_id mediumint(8) NOT NULL default '0',
[180] Fix | Delete
mod_fid smallint(5) NOT NULL default '0',
[181] Fix | Delete
UNIQUE KEY mod_mem_id (mod_mem_id,mod_fid)
[182] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[183] Fix | Delete
[184] Fix | Delete
//News
[185] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."news (
[186] Fix | Delete
`nid` mediumint(8) NOT NULL auto_increment,
[187] Fix | Delete
`uid` mediumint(8) NOT NULL default '0',
[188] Fix | Delete
`title` tinytext NOT NULL,
[189] Fix | Delete
`news` text NOT NULL,
[190] Fix | Delete
`time` int(12) NOT NULL default '0',
[191] Fix | Delete
`image` tinytext NOT NULL,
[192] Fix | Delete
`fullstorylink` tinytext NOT NULL,
[193] Fix | Delete
`approved` tinyint(2) NOT NULL default '0',
[194] Fix | Delete
`showinticker` int(10) NOT NULL default '0',
[195] Fix | Delete
PRIMARY KEY (`nid`)
[196] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[197] Fix | Delete
[198] Fix | Delete
//Forum Notifications
[199] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."notify_forum (
[200] Fix | Delete
notify_mid mediumint(8) NOT NULL default '0',
[201] Fix | Delete
notify_fid smallint(5) NOT NULL default '0',
[202] Fix | Delete
UNIQUE KEY notify_mid (notify_mid,notify_fid)
[203] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[204] Fix | Delete
[205] Fix | Delete
//Topic Notifications
[206] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."notify_topic (
[207] Fix | Delete
notify_mid mediumint(8) NOT NULL default '0',
[208] Fix | Delete
notify_tid mediumint(8) NOT NULL default '0',
[209] Fix | Delete
UNIQUE KEY notify_mid (notify_mid,notify_tid)
[210] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[211] Fix | Delete
[212] Fix | Delete
//Permissions
[213] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."permissions (
[214] Fix | Delete
`member_group_id` mediumint(8) NOT NULL default '0',
[215] Fix | Delete
`view_forum` tinyint(2) NOT NULL default '0',
[216] Fix | Delete
`can_post_topic` tinyint(2) NOT NULL default '0',
[217] Fix | Delete
`can_reply` tinyint(2) NOT NULL default '0',
[218] Fix | Delete
`can_edit_own_topic` tinyint(2) NOT NULL default '0',
[219] Fix | Delete
`can_edit_other_topic` tinyint(2) NOT NULL default '0',
[220] Fix | Delete
`can_edit_own` tinyint(2) NOT NULL default '0',
[221] Fix | Delete
`can_edit_other` tinyint(2) NOT NULL default '0',
[222] Fix | Delete
`approve_topics` tinyint(2) NOT NULL default '0',
[223] Fix | Delete
`approve_posts` tinyint(2) NOT NULL default '0',
[224] Fix | Delete
`can_del_own_post` tinyint(2) NOT NULL default '0',
[225] Fix | Delete
`can_del_other_post` tinyint(2) NOT NULL default '0',
[226] Fix | Delete
`can_search` tinyint(2) NOT NULL default '0',
[227] Fix | Delete
`can_email_mem` tinyint(2) NOT NULL default '0',
[228] Fix | Delete
`can_email_friend` tinyint(2) NOT NULL default '0',
[229] Fix | Delete
`can_edit_own_profile` tinyint(2) NOT NULL default '0',
[230] Fix | Delete
`can_edit_other_profile` tinyint(2) NOT NULL default '0',
[231] Fix | Delete
`can_del_own_account` tinyint(2) NOT NULL default '0',
[232] Fix | Delete
`can_del_other_account` tinyint(2) NOT NULL default '0',
[233] Fix | Delete
`can_ban_user` tinyint(2) NOT NULL default '0',
[234] Fix | Delete
`can_del_own_topic` tinyint(2) NOT NULL default '0',
[235] Fix | Delete
`can_del_other_topic` tinyint(2) NOT NULL default '0',
[236] Fix | Delete
`can_view_poll` tinyint(2) NOT NULL default '0',
[237] Fix | Delete
`can_vote_polls` tinyint(2) NOT NULL default '0',
[238] Fix | Delete
`can_post_polls` tinyint(2) NOT NULL default '0',
[239] Fix | Delete
`can_edit_other_poll` tinyint(2) NOT NULL default '0',
[240] Fix | Delete
`can_edit_own_poll` tinyint(2) NOT NULL default '0',
[241] Fix | Delete
`add_poll_topic_own` tinyint(2) NOT NULL default '0',
[242] Fix | Delete
`add_poll_topic_other` tinyint(2) NOT NULL default '0',
[243] Fix | Delete
`can_rem_own_poll` tinyint(2) NOT NULL default '0',
[244] Fix | Delete
`can_rem_other_poll` tinyint(2) NOT NULL default '0',
[245] Fix | Delete
`can_merge_topics` tinyint(2) NOT NULL default '0',
[246] Fix | Delete
`can_merge_posts` tinyint(2) NOT NULL default '0',
[247] Fix | Delete
`can_split_topics` tinyint(2) NOT NULL default '0',
[248] Fix | Delete
`can_email_topic` tinyint(2) NOT NULL default '0',
[249] Fix | Delete
`can_make_sticky` tinyint(2) NOT NULL default '0',
[250] Fix | Delete
`can_move_own_topic` tinyint(2) NOT NULL default '0',
[251] Fix | Delete
`can_move_other_topic` tinyint(2) NOT NULL default '0',
[252] Fix | Delete
`can_lock_own_topic` tinyint(2) NOT NULL default '0',
[253] Fix | Delete
`can_lock_other_topic` tinyint(2) NOT NULL default '0',
[254] Fix | Delete
`can_announce_topic` tinyint(2) NOT NULL default '0',
[255] Fix | Delete
`can_report_post` tinyint(2) NOT NULL default '0',
[256] Fix | Delete
`can_report_pm` tinyint(2) NOT NULL default '0',
[257] Fix | Delete
`prefix` varchar(80) NOT NULL default '',
[258] Fix | Delete
`suffix` varchar(80) NOT NULL default '',
[259] Fix | Delete
`can_attach` tinyint(2) NOT NULL default '0',
[260] Fix | Delete
`can_view_attach` tinyint(2) NOT NULL default '0',
[261] Fix | Delete
`can_remove_attach` tinyint(2) NOT NULL default '0',
[262] Fix | Delete
`max_attach` mediumint(8) NOT NULL default '0',
[263] Fix | Delete
`notify_new_posts` tinyint(2) NOT NULL default '0',
[264] Fix | Delete
`notify_new_topics` tinyint(2) NOT NULL default '0',
[265] Fix | Delete
`use_avatar` tinyint(2) NOT NULL default '0',
[266] Fix | Delete
`url_avatar` tinyint(2) NOT NULL default '0',
[267] Fix | Delete
`upload_avatar` tinyint(2) NOT NULL default '0',
[268] Fix | Delete
`hide_online` tinyint(2) NOT NULL default '0',
[269] Fix | Delete
`view_active` tinyint(2) NOT NULL default '0',
[270] Fix | Delete
`view_anonymous` tinyint(2) NOT NULL default '0',
[271] Fix | Delete
`allow_html` tinyint(2) NOT NULL default '0',
[272] Fix | Delete
`has_priviliges` tinyint(2) NOT NULL default '0',
[273] Fix | Delete
`view_ip` tinyint(2) NOT NULL default '0',
[274] Fix | Delete
`can_admin` tinyint(2) NOT NULL default '0',
[275] Fix | Delete
`can_use_pm` tinyint(2) NOT NULL default '0',
[276] Fix | Delete
`max_stored_pm` mediumint(8) NOT NULL default '0',
[277] Fix | Delete
`max_mass_pm` mediumint(8) NOT NULL default '0',
[278] Fix | Delete
`view_offline_board` tinyint(2) NOT NULL default '0',
[279] Fix | Delete
`can_view_profile` tinyint(2) NOT NULL default '0',
[280] Fix | Delete
`view_members` tinyint(2) NOT NULL default '0',
[281] Fix | Delete
`view_stats` tinyint(2) NOT NULL default '0',
[282] Fix | Delete
`can_submit_news` tinyint(2) NOT NULL default '0',
[283] Fix | Delete
`can_approve_news` tinyint(2) NOT NULL default '0',
[284] Fix | Delete
`can_edit_news` tinyint(2) NOT NULL default '0',
[285] Fix | Delete
`can_delete_news` tinyint(2) NOT NULL default '0',
[286] Fix | Delete
`group_message` text NOT NULL,
[287] Fix | Delete
`can_shout` tinyint(2) NOT NULL default '0',
[288] Fix | Delete
`can_del_shout` tinyint(2) NOT NULL default '0',
[289] Fix | Delete
`view_calendar` tinyint(2) NOT NULL default '0',
[290] Fix | Delete
PRIMARY KEY (`member_group_id`)
[291] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[292] Fix | Delete
[293] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (-1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, '', 0, 0, 1)";
[294] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, '', '', 1, 1, 1, 50000, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, '', 1, 1, 1)";
[295] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, '', '', 1, 1, 1, 2048, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 1, 0, 1, 150, 0, 0, 1, 1, 1, 1, 0, 0, 0, '', 1, 0, 1)";
[296] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, '', '', 1, 1, 1, 2048, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 0, 1, 0, 0, 1, 1, 1, 1, 1, 1, 1, 1, '', 1, 1, 1)";
[297] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (-3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', '', 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '', 0, 0, 1)";
[298] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."permissions VALUES (0, 1, 1, 1, 1, 0, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, '', '', 1, 1, 0, 1024, 1, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 200, 5, 0, 1, 1, 1, 1, 0, 0, 0, '', 1, 0, 1)";
[299] Fix | Delete
[300] Fix | Delete
//Personal Messages
[301] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."pm (
[302] Fix | Delete
pmid mediumint(8) NOT NULL auto_increment,
[303] Fix | Delete
pm_from mediumint(8) NOT NULL default '0',
[304] Fix | Delete
pm_to mediumint(8) NOT NULL default '0',
[305] Fix | Delete
pm_time int(10) NOT NULL default '0',
[306] Fix | Delete
pm_read_time int(10) NOT NULL default '0',
[307] Fix | Delete
pm_folder tinyint(2) NOT NULL default '0',
[308] Fix | Delete
pm_subject tinytext NOT NULL,
[309] Fix | Delete
pm_body text NOT NULL,
[310] Fix | Delete
pm_track tinyint(2) NOT NULL default '0',
[311] Fix | Delete
pm_to_text tinytext NOT NULL,
[312] Fix | Delete
PRIMARY KEY (pmid)
[313] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[314] Fix | Delete
[315] Fix | Delete
//Poll Options
[316] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."poll_options (
[317] Fix | Delete
pooid mediumint(10) NOT NULL auto_increment,
[318] Fix | Delete
poo_poid mediumint(8) NOT NULL default '0',
[319] Fix | Delete
poo_option tinytext NOT NULL,
[320] Fix | Delete
poo_votes smallint(5) NOT NULL default '0',
[321] Fix | Delete
PRIMARY KEY (pooid)
[322] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[323] Fix | Delete
[324] Fix | Delete
//Voters
[325] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."poll_voters (
[326] Fix | Delete
pv_mid mediumint(8) NOT NULL default '0',
[327] Fix | Delete
pv_pooid mediumint(10) NOT NULL default '0',
[328] Fix | Delete
pv_poid mediumint(8) NOT NULL default '0',
[329] Fix | Delete
UNIQUE KEY pv_mid (pv_mid,pv_pooid,pv_poid)
[330] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[331] Fix | Delete
[332] Fix | Delete
//Polls
[333] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."polls (
[334] Fix | Delete
poid mediumint(8) NOT NULL auto_increment,
[335] Fix | Delete
poll_qt tinytext NOT NULL,
[336] Fix | Delete
poll_mid mediumint(8) NOT NULL default '0',
[337] Fix | Delete
poll_locked tinyint(2) NOT NULL default '0',
[338] Fix | Delete
poll_tid mediumint(8) NOT NULL default '0',
[339] Fix | Delete
poll_expiry int(10) NOT NULL default '0',
[340] Fix | Delete
poll_change_vote tinyint(2) NOT NULL default '0',
[341] Fix | Delete
poll_started int(10) NOT NULL default '0',
[342] Fix | Delete
poll_show_when tinyint(2) NOT NULL default '0',
[343] Fix | Delete
PRIMARY KEY (poid)
[344] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[345] Fix | Delete
[346] Fix | Delete
//Posts
[347] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."posts (
[348] Fix | Delete
`pid` int(10) NOT NULL auto_increment,
[349] Fix | Delete
`post_tid` mediumint(8) NOT NULL default '0',
[350] Fix | Delete
`p_top_sticky` tinyint(2) NOT NULL default '0',
[351] Fix | Delete
`post_fid` smallint(5) NOT NULL default '0',
[352] Fix | Delete
`ptime` int(10) NOT NULL default '0',
[353] Fix | Delete
`poster_id` mediumint(8) NOT NULL default '0',
[354] Fix | Delete
`poster_ip` varchar(20) NOT NULL default '',
[355] Fix | Delete
`modtime` int(10) NOT NULL default '0',
[356] Fix | Delete
`modifiers_id` mediumint(8) NOT NULL default '0',
[357] Fix | Delete
`post` text NOT NULL,
[358] Fix | Delete
`use_smileys` tinyint(2) NOT NULL default '1',
[359] Fix | Delete
`gposter_name` varchar(80) NOT NULL default '',
[360] Fix | Delete
`gposter_email` varchar(80) NOT NULL default '',
[361] Fix | Delete
`post_title` varchar(255) NOT NULL default '',
[362] Fix | Delete
`num_attachments` tinyint(4) NOT NULL default '0',
[363] Fix | Delete
`par_id` int(10) NOT NULL default '0',
[364] Fix | Delete
`p_approved` tinyint(2) NOT NULL default '0',
[365] Fix | Delete
PRIMARY KEY (`pid`)
[366] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[367] Fix | Delete
[368] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."posts VALUES (1, 1, 0, 1, ".time().", -1, '', 0, 0, 'Hi,\r\n\r\n We would like to thank you for using AEF.\r\nIf you need any assistance :??: , feel free to ask us for help at the [url=http://www.anelectron.com/board/]support board[/url].\r\n\r\nThanks and enjoy AEF!!! ;-D \r\n\r\n', 1, 'AEF Team', 'aef@anelectron.com', '', 0, 0, 1)";
[369] Fix | Delete
[370] Fix | Delete
//Marked Board read
[371] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."read_board (
[372] Fix | Delete
rb_uid mediumint(8) NOT NULL default '0',
[373] Fix | Delete
rb_time int(12) NOT NULL default '0',
[374] Fix | Delete
UNIQUE KEY rb_uid (rb_uid)
[375] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[376] Fix | Delete
[377] Fix | Delete
//Read Forums
[378] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."read_forums (
[379] Fix | Delete
rf_uid mediumint(8) NOT NULL default '0',
[380] Fix | Delete
rf_fid smallint(5) NOT NULL default '0',
[381] Fix | Delete
rf_time int(10) NOT NULL default '0',
[382] Fix | Delete
UNIQUE KEY rf_uid (rf_uid,rf_fid)
[383] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[384] Fix | Delete
[385] Fix | Delete
//Read Topics
[386] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."read_topics (
[387] Fix | Delete
rt_uid mediumint(8) NOT NULL default '0',
[388] Fix | Delete
rt_tid smallint(5) NOT NULL default '0',
[389] Fix | Delete
rt_time int(10) NOT NULL default '0',
[390] Fix | Delete
UNIQUE KEY rt_uid (rt_uid,rt_tid)
[391] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[392] Fix | Delete
[393] Fix | Delete
//AEF Registry
[394] Fix | Delete
$queries[] = "CREATE TABLE ".$__settings['dbprefix']."registry (
[395] Fix | Delete
name varchar(255) NOT NULL default '',
[396] Fix | Delete
regval text NOT NULL,
[397] Fix | Delete
UNIQUE KEY name (name)
[398] Fix | Delete
) TYPE=MyISAM".(empty($__settings['utf8']) ? '' : " DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci");
[399] Fix | Delete
[400] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('reserved_names', 'admin\r\nwebmaster\r\nmaster\r\nuser\r\nlocalhost\r\nlord')";
[401] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('latest_mem', '".$__settings['admin_username']."|1')";
[402] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('num_mem', '1')";
[403] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('recyclebin', '0')";
[404] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('mostactive', '1|".time()."')";
[405] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxtopics', '30')";
[406] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxpostsintopics', '15')";
[407] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxreplyhot', '15')";
[408] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxreplyveryhot', '25')";
[409] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('disableshoutingtopics', '0')";
[410] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('disableshoutingdesc', '0')";
[411] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('prenextopic', '1')";
[412] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('warnoldtopic', '120')";
[413] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('prefixsticky', 'Sticky:')";
[414] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('prefixmoved', 'Moved:')";
[415] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('prefixpolls', 'Poll:')";
[416] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxtitlechars', '0')";
[417] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('mintitlechars', '0')";
[418] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxdescchars', '0')";
[419] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('mindescchars', '0')";
[420] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('allow_taf', '1')";
[421] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxcharposts', '20000')";
[422] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('mincharposts', '0')";
[423] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('timepostfromuser', '10')";
[424] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxemotpost', '15')";
[425] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maximgspost', '15')";
[426] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('allowdynimg', '0')";
[427] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maximgwidthpost', '300')";
[428] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maximgheightpost', '300')";
[429] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('removenestedquotes', '0')";
[430] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('attachsigtopost', '1')";
[431] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('embedflashinpost', '0')";
[432] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxflashpost', '5')";
[433] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxflashwidthinpost', '300')";
[434] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxflashheightinpost', '300')";
[435] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('enablepolls', '1')";
[436] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxpollsintopic', '3')";
[437] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxoptionspoll', '10')";
[438] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maxpollqtlen', '100')";
[439] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('censor_words_from', '')";
[440] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('censor_words_to', '')";
[441] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('maintenance', '0')";
[442] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('censor_words_case', '0')";
[443] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('parsebbc', '1')";
[444] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('autolink', '1')";
[445] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_hr', '1')";
[446] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_b', '1')";
[447] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_i', '1')";
[448] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_u', '1')";
[449] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_s', '1')";
[450] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_left', '1')";
[451] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_right', '1')";
[452] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_center', '1')";
[453] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_size', '1')";
[454] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_font', '1')";
[455] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_sup', '1')";
[456] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_sub', '1')";
[457] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_color', '1')";
[458] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_url', '1')";
[459] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_ftp', '1')";
[460] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_email', '1')";
[461] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_img', '1')";
[462] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_flash', '1')";
[463] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_code', '1')";
[464] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_quote', '1')";
[465] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_php', '1')";
[466] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_ul', '1')";
[467] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_ol', '1')";
[468] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('bbc_parseHTML', '1')";
[469] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('reg_method', '1')";
[470] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('allow_reg', '1')";
[471] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('wel_email', '1')";
[472] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('reg_notify', '0')";
[473] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('max_pass', '20')";
[474] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('max_uname', '20')";
[475] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('min_pass', '4')";
[476] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('min_uname', '4')";
[477] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('sec_conf', '1')";
[478] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('samepc_reg', '0')";
[479] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('age_limit', '0')";
[480] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('age_rest_act', '1')";
[481] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('age_rest_act_address', '')";
[482] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('age_rest_act_fax', '')";
[483] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('age_rest_act_tele', '')";
[484] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('reserved_match_whole', '0')";
[485] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('reserved_match_insensitive', '1')";
[486] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('login_failed', '5')";
[487] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('anon_login', '1')";
[488] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('fpass_sec_conf', '1')";
[489] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('userstextlen', '100')";
[490] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('wwwlen', '150')";
[491] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('customtitlelen', '30')";
[492] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('locationlen', '100')";
[493] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('realnamelen', '100')";
[494] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('secretqtlen', '200')";
[495] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('secretansmaxlen', '20')";
[496] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('secretansminlen', '4')";
[497] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('usersiglen', '200')";
[498] Fix | Delete
$queries[] = "INSERT INTO ".$__settings['dbprefix']."registry VALUES ('showavatars', '1')";
[499] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function