SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
-- Database: `geeklog222`
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]access`
CREATE TABLE `[[dbprefix]]access` (
`acc_ft_id` mediumint(8) NOT NULL DEFAULT '0',
`acc_grp_id` mediumint(8) NOT NULL DEFAULT '0',
PRIMARY KEY (`acc_ft_id`,`acc_grp_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- Dumping data for table `[[dbprefix]]access`
INSERT INTO `[[dbprefix]]access` VALUES
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]article_images`
CREATE TABLE `[[dbprefix]]article_images` (
`ai_sid` varchar(128) NOT NULL,
`ai_img_num` tinyint(2) unsigned NOT NULL,
`ai_filename` varchar(128) NOT NULL,
PRIMARY KEY (`ai_sid`,`ai_img_num`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]backup_codes`
CREATE TABLE `[[dbprefix]]backup_codes` (
`code` varchar(16) NOT NULL,
`uid` mediumint(8) NOT NULL DEFAULT '0',
`is_used` tinyint(1) NOT NULL DEFAULT '0',
UNIQUE KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]blocks`
CREATE TABLE `[[dbprefix]]blocks` (
`bid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
`is_enabled` tinyint(1) unsigned NOT NULL DEFAULT '1',
`name` varchar(48) NOT NULL DEFAULT '',
`type` varchar(20) NOT NULL DEFAULT 'normal',
`title` varchar(48) DEFAULT NULL,
`blockorder` smallint(5) unsigned NOT NULL DEFAULT '1',
`device` varchar(15) NOT NULL DEFAULT 'all',
`allow_autotags` tinyint(1) unsigned NOT NULL DEFAULT '0',
`convert_newlines` tinyint(1) unsigned NOT NULL DEFAULT '0',
`cache_time` int(11) NOT NULL DEFAULT '0',
`rdfurl` varchar(255) DEFAULT NULL,
`rdfupdated` datetime DEFAULT NULL,
`rdf_last_modified` varchar(40) DEFAULT NULL,
`rdf_etag` varchar(40) DEFAULT NULL,
`rdflimit` smallint(5) unsigned NOT NULL DEFAULT '0',
`onleft` tinyint(1) unsigned NOT NULL DEFAULT '1',
`location` varchar(48) NOT NULL DEFAULT '',
`phpblockfn` varchar(128) DEFAULT '',
`help` varchar(255) DEFAULT '',
`css_id` varchar(255) NOT NULL DEFAULT '',
`css_classes` varchar(255) NOT NULL DEFAULT '',
`owner_id` mediumint(8) unsigned NOT NULL DEFAULT '1',
`group_id` mediumint(8) unsigned NOT NULL DEFAULT '1',
`perm_owner` tinyint(1) unsigned NOT NULL DEFAULT '3',
`perm_group` tinyint(1) unsigned NOT NULL DEFAULT '3',
`perm_members` tinyint(1) unsigned NOT NULL DEFAULT '2',
`perm_anon` tinyint(1) unsigned NOT NULL DEFAULT '2',
KEY `blocks_bid` (`bid`),
KEY `blocks_is_enabled` (`is_enabled`),
KEY `blocks_type` (`type`),
KEY `blocks_name` (`name`),
KEY `blocks_onleft` (`onleft`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=8 ;
-- Dumping data for table `[[dbprefix]]blocks`
INSERT INTO `[[dbprefix]]blocks` VALUES
(1, 1, 'user_block', 'gldefault', 'User Functions', 30, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 1, '', '', '', '', '', 2, 4, 3, 3, 2, 2),
(2, 1, 'admin_block', 'gldefault', 'Admins Only', 20, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 1, '', '', '', '', '', 2, 4, 3, 3, 2, 2),
(3, 1, 'section_block', 'gldefault', 'Topics', 10, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 1, '', '', '', '', '', 2, 4, 3, 3, 2, 2),
(4, 1, 'whats_new_block', 'gldefault', 'What''s New', 30, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 0, '', '', '', '', '', 2, 4, 3, 3, 2, 2),
(5, 1, 'first_block', 'normal', 'About Geeklog', 20, 'all', '<p><b>Welcome to Geeklog!</b></p><p>If you''re already familiar with Geeklog - and especially if you''re not: There have been many improvements to Geeklog since earlier versions that you might want to read up on. Please read the <a href="docs/english/changes.html">release notes</a>. If you need help, please see the <a href="docs/english/support.html">support options</a>.</p>', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 0, '', '', '', '', '', 2, 4, 3, 3, 2, 2),
(6, 1, 'whosonline_block', 'phpblock', 'Who''s Online', 10, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 0, '', 'phpblock_whosonline', '', '', '', 2, 4, 3, 3, 2, 2),
(7, 1, 'older_stories', 'gldefault', 'Older Stories', 40, 'all', '', 0, 0, 0, '', '[[regtime]]', NULL, NULL, 0, 1, '', '', '', '', '', 2, 4, 3, 3, 2, 2);
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]commentedits`
CREATE TABLE `[[dbprefix]]commentedits` (
`uid` mediumint(8) NOT NULL,
`time` datetime NOT NULL,
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]commentnotifications`
CREATE TABLE `[[dbprefix]]commentnotifications` (
`cid` int(10) DEFAULT NULL,
`uid` mediumint(8) NOT NULL,
`deletehash` varchar(32) NOT NULL,
`mid` int(10) DEFAULT NULL,
PRIMARY KEY (`deletehash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]comments`
CREATE TABLE `[[dbprefix]]comments` (
`cid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(30) NOT NULL DEFAULT 'article',
`sid` varchar(128) NOT NULL DEFAULT '',
`date` datetime DEFAULT NULL,
`title` varchar(128) DEFAULT NULL,
`pid` int(10) unsigned NOT NULL DEFAULT '0',
`lft` mediumint(10) unsigned NOT NULL DEFAULT '0',
`rht` mediumint(10) unsigned NOT NULL DEFAULT '0',
`indent` mediumint(10) unsigned NOT NULL DEFAULT '0',
`name` varchar(32) DEFAULT NULL,
`uid` mediumint(8) NOT NULL DEFAULT '1',
`seq` int(11) NOT NULL DEFAULT '0',
KEY `comments_sid` (`sid`),
KEY `comments_uid` (`uid`),
KEY `comments_lft` (`lft`),
KEY `comments_rht` (`rht`),
KEY `comments_date` (`date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]commentsubmissions`
CREATE TABLE `[[dbprefix]]commentsubmissions` (
`cid` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(30) NOT NULL DEFAULT 'article',
`sid` varchar(128) NOT NULL,
`date` datetime DEFAULT NULL,
`title` varchar(128) DEFAULT NULL,
`uid` mediumint(8) NOT NULL DEFAULT '1',
`name` varchar(32) DEFAULT NULL,
`pid` int(10) NOT NULL DEFAULT '0',
`seq` int(11) NOT NULL DEFAULT '0',
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
-- Table structure for table `[[dbprefix]]conf_values`
CREATE TABLE `[[dbprefix]]conf_values` (
`name` varchar(50) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`group_name` varchar(50) DEFAULT NULL,
`subgroup` int(11) DEFAULT NULL,
`selectionArray` int(11) DEFAULT NULL,
`sort_order` int(11) DEFAULT NULL,
`tab` int(11) DEFAULT NULL,
`fieldset` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC;
-- Dumping data for table `[[dbprefix]]conf_values`
INSERT INTO `[[dbprefix]]conf_values` VALUES
('sg_site', 'N;', 'subgroup', 'Core', 'N;', 0, -1, 0, 0, 0),
('tab_site', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 0, 0),
('fs_site', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 0, 0),
('site_url', '[[site_url_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 20, 0, 0),
('site_admin_url', '[[site_admin_url_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 30, 0, 0),
('site_name', '[[site_name_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 60, 0, 0),
('path_site_logo', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 65, 0, 0),
('site_slogan', '[[site_desc_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 70, 0, 0),
('site_disabled_msg', 's:44:"Geeklog Site is down. Please come back soon.";', 'textarea', 'Core', 's:44:"Geeklog Site is down. Please come back soon.";', 0, -1, 510, 0, 0),
('owner_name', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 1000, 0, 0),
('copyrightyear', 'unset', 'text', 'Core', 's:4:"2022";', 0, -1, 1440, 0, 0),
('url_rewrite', 'b:0;', 'select', 'Core', 'b:0;', 0, 1, 1800, 0, 0),
('url_routing', 'i:0;', 'select', 'Core', 'i:0;', 0, 37, 1850, 0, 0),
('cdn_hosted', 'b:0;', 'select', 'Core', 'b:0;', 0, 1, 1900, 0, 0),
('meta_tags', 'i:0;', 'select', 'Core', 'i:0;', 0, 23, 2000, 0, 0),
('meta_description', 's:47:"Geeklog - The secure Content Management System.";', 'textarea', 'Core', 's:47:"Geeklog - The secure Content Management System.";', 0, -1, 2010, 0, 0),
('meta_keywords', 's:84:"Geeklog, Content Management System, CMS, Open Source, Secure, Security, Blog, Weblog";', 'textarea', 'Core', 's:84:"Geeklog, Content Management System, CMS, Open Source, Secure, Security, Blog, Weblog";', 0, -1, 2020, 0, 0),
('cookie_consent', 'b:1;', 'select', 'Core', 'b:1;', 0, 1, 2030, 0, 0),
('about_cookies_link', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 2040, 0, 0),
('terms_of_use_link', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 2050, 0, 0),
('privacy_policy_link', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 2060, 0, 0),
('ip_anonymization', 'i:-1;', 'text', 'Core', 'i:-1;', 0, -1, 2070, 0, 0),
('tab_mail', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 1, 1),
('fs_mail', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 1, 1),
('site_mail', '[[admin_email_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 40, 1, 1),
('noreply_mail', '[[noreply_email_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 50, 1, 1),
('mail_settings', 'a:8:{s:7:"backend";s:4:"mail";s:13:"sendmail_path";s:17:"/usr/bin/sendmail";s:13:"sendmail_args";s:0:"";s:4:"host";s:16:"smtp.example.com";s:4:"port";s:2:"25";s:4:"auth";b:0;s:8:"username";s:13:"smtp-username";s:8:"password";s:13:"smtp-password";}', '@text', 'Core', 'a:8:{s:7:"backend";s:4:"mail";s:13:"sendmail_path";s:17:"/usr/bin/sendmail";s:13:"sendmail_args";s:0:"";s:4:"host";s:16:"smtp.example.com";s:4:"port";s:2:"25";s:4:"auth";b:0;s:8:"username";s:13:"smtp-username";s:8:"password";s:13:"smtp-password";}', 0, -1, 160, 1, 1),
('mail_cc_enabled', 'i:1;', 'select', 'Core', 'i:1;', 0, 0, 180, 1, 1),
('mail_cc_default', 'i:0;', 'select', 'Core', 'i:0;', 0, 0, 190, 1, 1),
('mail_charset', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 195, 1, 1),
('tab_syndication', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 2, 2),
('fs_syndication', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 2, 2),
('backend', 'i:1;', 'select', 'Core', 'i:1;', 0, 0, 1380, 2, 2),
('rdf_file', '[[rdf_file_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 1390, 2, 2),
('rdf_limit', 'i:10;', 'text', 'Core', 'i:10;', 0, -1, 1400, 2, 2),
('rdf_storytext', 'i:1;', 'text', 'Core', 'i:1;', 0, -1, 1410, 2, 2),
('rdf_language', 's:5:"en-gb";', 'text', 'Core', 's:5:"en-gb";', 0, -1, 1420, 2, 2),
('syndication_max_headlines', 'i:0;', 'text', 'Core', 'i:0;', 0, -1, 1430, 2, 2),
('fs_syndication_comment', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 2, 3),
('comment_feeds_article_tag', 's:47:"<p>[Original Article: <a href="%s">%s</a>%s%s]\n";', 'text', 'Core', 's:47:"<p>[Original Article: <a href="%s">%s</a>%s%s]\n";', 0, -1, 10, 2, 3),
('comment_feeds_article_tag_position', 's:3:"end";', 'select', 'Core', 's:3:"end";', 0, 30, 20, 2, 3),
('comment_feeds_article_author_tag', 's:0:"";', 'text', 'Core', 's:0:"";', 0, -1, 30, 2, 3),
('comment_feeds_comment_author_tag', 's:33:", Comment By: <a href="%s">%s</a>";', 'text', 'Core', 's:33:", Comment By: <a href="%s">%s</a>";', 0, -1, 40, 2, 3),
('tab_paths', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 3, 3),
('fs_paths', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 3, 3),
('path_html', '[[path_html_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 10, 3, 3),
('path_log', '[[path_log_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 90, 3, 3),
('path_language', '[[path_language_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 100, 3, 3),
('backup_path', '[[backup_path_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 110, 3, 3),
('path_data', '[[path_data_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 120, 3, 3),
('path_images', '[[path_images_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 130, 3, 3),
('path_editors', '[[path_editors_ser]]', 'text', 'Core', 's:0:"";', 0, -1, 132, 3, 3),
('tab_database', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 5, 5),
('fs_database_backup', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 5, 5),
('dbdump_filename_prefix', 's:17:"geeklog_db_backup";', 'text', 'Core', 's:17:"geeklog_db_backup";', 0, -1, 170, 5, 5),
('dbdump_tables_only', 'i:1;', 'select', 'Core', 'i:1;', 0, 0, 175, 5, 5),
('dbdump_gzip', 'i:1;', 'select', 'Core', 'i:1;', 0, 0, 180, 5, 5),
('dbdump_max_files', 'i:10;', 'text', 'Core', 'i:10;', 0, -1, 185, 5, 5),
('tab_search', 'N;', 'tab', 'Core', 'N;', 0, -1, 0, 6, 6),
('fs_search', 'N;', 'fieldset', 'Core', 'N;', 0, -1, 0, 6, 6),
('search_style', 's:6:"google";', 'select', 'Core', 's:6:"google";', 0, 19, 644, 6, 6),
('search_limits', 's:11:"10,15,25,30";', 'text', 'Core', 's:11:"10,15,25,30";', 0, -1, 647, 6, 6),
('num_search_results', 'i:30;', 'text', 'Core', 'i:30;', 0, -1, 651, 6, 6),
('search_show_limit', 'b:1;', 'select', 'Core', 'b:1;', 0, 1, 654, 6, 6),
('search_show_sort', 'b:1;', 'select', 'Core', 'b:1;', 0, 1, 658, 6, 6),
('search_show_num', 'b:1;', 'select', 'Core', 'b:1;', 0, 1, 661, 6, 6),
('search_show_type', 'b:1;', 'select', 'Core', 'b:1;', 0, 1, 665, 6, 6),
('search_separator', 's:6:" > ";', 'text', 'Core', 's:6:" > ";', 0, -1, 668, 6, 6),
('search_def_keytype', 's:6:"phrase";', 'select', 'Core', 's:6:"phrase";', 0, 20, 672, 6, 6),
('search_use_fulltext', 'b:0;', 'hidden', 'Core', 'b:0;', 0, -1, 0, 6, 6),
('search_def_sort', 's:9:"hits|desc";', 'select', 'Core', 's:9:"hits|desc";', 0, 27, 676, 6, 6),
('search_use_topic', 'b:0;', 'select', 'Core', 'b:0;', 0, 1, 677, 6, 6),
('sg_stories', 'N;', 'subgroup', 'Core', 'N;', 1, -1, 0, 0, 0),
('tab_story', 'N;', 'tab', 'Core', 'N;', 1, -1, 0, 7, 7),
('fs_story', 'N;', 'fieldset', 'Core', 'N;', 1, -1, 0, 7, 7),
('maximagesperarticle', 'i:5;', 'text', 'Core', 'i:5;', 1, -1, 1170, 7, 7),
('limitnews', 'i:10;', 'text', 'Core', 'i:10;', 1, -1, 1180, 7, 7),
('minnews', 'i:1;', 'text', 'Core', 'i:1;', 1, -1, 1190, 7, 7),
('contributedbyline', 'i:1;', 'select', 'Core', 'i:1;', 1, 0, 1200, 7, 7),
('hideviewscount', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1210, 7, 7),
('hideemailicon', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1220, 7, 7),
('hideprintericon', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1230, 7, 7),
('allow_page_breaks', 'i:1;', 'select', 'Core', 'i:1;', 1, 0, 1240, 7, 7),
('page_break_comments', 's:4:"last";', 'select', 'Core', 's:4:"last";', 1, 7, 1250, 7, 7),
('article_image_align', 's:5:"right";', 'select', 'Core', 's:5:"right";', 1, 8, 1260, 7, 7),
('show_topic_icon', 'i:1;', 'select', 'Core', 'i:1;', 1, 0, 1270, 7, 7),
('structured_data_type_default', 's:12:"core-article";', 'select', 'Core', 's:12:"core-article";', 1, 39, 1275, 7, 7),
('structured_data_article_topic', 'i:0;', 'select', 'Core', 'i:0;', 1, 42, 1277, 7, 7),
('draft_flag', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1280, 7, 7),
('frontpage', 'i:1;', 'select', 'Core', 'i:1;', 1, 0, 1290, 7, 7),
('hide_no_news_msg', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1300, 7, 7),
('hide_main_page_navigation', 's:5:"false";', 'select', 'Core', 's:5:"false";', 1, 36, 1310, 7, 7),
('onlyrootfeatures', 'i:0;', 'select', 'Core', 'i:0;', 1, 0, 1320, 7, 7),
('aftersave_story', 's:4:"list";', 'select', 'Core', 's:4:"list";', 1, 9, 1330, 7, 7),
('related_topics', 'i:1;', 'select', 'Core', 'i:1;', 1, 32, 1340, 7, 7),
('related_topics_max', 'i:6;', 'text', 'Core', 'i:6;', 1, -1, 1350, 7, 7),
('whats_related', 'i:1;', 'select', 'Core', 'i:1;', 1, 33, 1360, 7, 7),
('whats_related_max', 'i:0;', 'text', 'Core', 'i:0;', 1, -1, 1370, 7, 7),
('whats_related_trim', 'i:26;', 'text', 'Core', 'i:26;', 1, -1, 1380, 7, 7),
('default_cache_time_article', 'i:0;', 'text', 'Core', 'i:0;', 1, -1, 1390, 7, 7),
('blocks_article_topic_list_repeat_after', 'i:1;', 'text', 'Core', 'i:1;', 1, -1, 1400, 7, 7),
('tab_trackback', 'N;', 'tab', 'Core', 'N;', 1, -1, 0, 8, 8),
('fs_trackback', 'N;', 'fieldset', 'Core', 'N;', 1, -1, 0, 8, 8),
('trackback_enabled', 'b:1;', 'select', 'Core', 'b:1;', 1, 1, 1060, 8, 8),
('trackback_code', 'i:0;', 'select', 'Core', 'i:0;', 1, 3, 1070, 8, 8),
('trackbackspeedlimit', 'i:300;', 'text', 'Core', 'i:300;', 1, -1, 1080, 8, 8),
('check_trackback_link', 'i:2;', 'select', 'Core', 'i:2;', 1, 4, 1090, 8, 8),
('multiple_trackbacks', 'i:0;', 'select', 'Core', 'i:0;', 1, 2, 1100, 8, 8),
('tab_pingback', 'N;', 'tab', 'Core', 'N;', 1, -1, 0, 9, 9),
('fs_pingback', 'N;', 'fieldset', 'Core', 'N;', 1, -1, 0, 9, 9),
('pingback_enabled', 'b:1;', 'select', 'Core', 'b:1;', 1, 1, 1110, 9, 9),
('pingback_excerpt', 'b:1;', 'select', 'Core', 'b:1;', 1, 1, 1120, 9, 9),
('pingback_self', 'i:0;', 'select', 'Core', 'i:0;', 1, 13, 1130, 9, 9),
('ping_enabled', 'b:1;', 'select', 'Core', 'b:1;', 1, 1, 1140, 9, 9),
('sg_theme', 'N;', 'subgroup', 'Core', 'N;', 2, -1, 0, 0, 0),
('tab_theme', 'N;', 'tab', 'Core', 'N;', 2, -1, 0, 10, 10),
('fs_theme', 'N;', 'fieldset', 'Core', 'N;', 2, -1, 0, 10, 10),
('theme', 's:11:"denim_three";', 'select', 'Core', 's:11:"denim_three";', 2, -1, 190, 10, 10),
('doctype', 's:13:"html401strict";', 'select', 'Core', 's:13:"html401strict";', 2, 21, 195, 10, 10),
('menu_elements', 'a:5:{i:0;s:10:"contribute";i:1;s:6:"search";i:2;s:5:"stats";i:3;s:9:"directory";i:4;s:7:"plugins";}', '%select', 'Core', 'a:5:{i:0;s:10:"contribute";i:1;s:6:"search";i:2;s:5:"stats";i:3;s:9:"directory";i:4;s:7:"plugins";}', 2, 24, 200, 10, 10),
('path_themes', '[[path_themes_ser]]', 'text', 'Core', 's:0:"";', 2, -1, 210, 10, 10),
('cache_templates', 'b:1;', 'select', 'Core', 'b:1;', 2, 1, 220, 10, 10),
('cache_mobile', 'b:1;', 'select', 'Core', 'b:1;', 2, 1, 230, 10, 10),
('cache_resource', 'b:1;', 'select', 'Core', 'b:1;', 2, 1, 240, 10, 10),
('tab_theme_advanced', 'N;', 'tab', 'Core', 'N;', 2, -1, 0, 11, 11),
('fs_theme_advanced', 'N;', 'fieldset', 'Core', 'N;', 2, -1, 0, 11, 11),
('show_right_blocks', 'b:0;', 'select', 'Core', 'b:0;', 2, 1, 1350, 11, 11),
('showfirstasfeatured', 'i:0;', 'select', 'Core', 'i:0;', 2, 0, 1360, 11, 11),
('template_comments', 'b:0;', 'select', 'Core', 'b:0;', 2, 1, 1370, 11, 11),
('sg_blocks', 'N;', 'subgroup', 'Core', 'N;', 3, -1, 0, 0, 0),
('tab_admin_block', 'N;', 'tab', 'Core', 'N;', 3, -1, 0, 12, 12),
('fs_admin_block', 'N;', 'fieldset', 'Core', 'N;', 3, -1, 0, 12, 12),
('sort_admin', 'b:1;', 'select', 'Core', 'b:1;', 3, 1, 340, 12, 12),
('link_documentation', 'i:1;', 'select', 'Core', 'i:1;', 3, 0, 1150, 12, 12),
('link_versionchecker', 'i:1;', 'select', 'Core', 'i:1;', 3, 0, 1160, 12, 12),
('tab_topics_block', 'N;', 'tab', 'Core', 'N;', 3, -1, 0, 13, 13),
('fs_topics_block', 'N;', 'fieldset', 'Core', 'N;', 3, -1, 0, 13, 13),
('sortmethod', 's:5:"alpha";', 'select', 'Core', 's:5:"alpha";', 3, 15, 870, 13, 13),
('showstorycount', 'i:1;', 'select', 'Core', 'i:1;', 3, 0, 880, 13, 13),
('showsubmissioncount', 'i:1;', 'select', 'Core', 'i:1;', 3, 0, 890, 13, 13),
('hide_home_link', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 900, 13, 13),
('tab_whosonline_block', 'N;', 'tab', 'Core', 'N;', 3, -1, 0, 14, 14),
('fs_whosonline_block', 'N;', 'fieldset', 'Core', 'N;', 3, -1, 0, 14, 14),
('whosonline_threshold', 'i:300;', 'text', 'Core', 'i:300;', 3, -1, 910, 14, 14),
('whosonline_anonymous', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 920, 14, 14),
('whosonline_photo', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 930, 14, 14),
('tab_whatsnew_block', 'N;', 'tab', 'Core', 'N;', 3, -1, 0, 15, 15),
('fs_whatsnew_block', 'N;', 'fieldset', 'Core', 'N;', 3, -1, 0, 15, 15),
('newstoriesinterval', 'i:86400;', 'text', 'Core', 'i:86400;', 3, -1, 980, 15, 15),
('newcommentsinterval', 'i:172800;', 'text', 'Core', 'i:172800;', 3, -1, 990, 15, 15),
('newtrackbackinterval', 'i:172800;', 'text', 'Core', 'i:172800;', 3, -1, 1000, 15, 15),
('hidenewstories', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 1010, 15, 15),
('hidenewcomments', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 1020, 15, 15),
('hidenewtrackbacks', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 1030, 15, 15),
('hidenewplugins', 'i:0;', 'select', 'Core', 'i:0;', 3, 0, 1040, 15, 15),
('title_trim_length', 'i:20;', 'text', 'Core', 'i:20;', 3, -1, 1050, 15, 15),
('whatsnew_cache_time', 'i:3600;', 'text', 'Core', 'i:3600;', 3, -1, 1060, 15, 15),
('sg_users', 'N;', 'subgroup', 'Core', 'N;', 4, -1, 0, 0, 0),
('tab_users', 'N;', 'tab', 'Core', 'N;', 4, -1, 0, 16, 16),
('fs_users', 'N;', 'fieldset', 'Core', 'N;', 4, -1, 0, 16, 16),
('disable_new_user_registration', 'b:0;', 'select', 'Core', 'b:0;', 4, 0, 220, 16, 16),
('allow_user_themes', 'i:1;', 'select', 'Core', 'i:1;', 4, 0, 230, 16, 16),
('allow_user_photo', 'i:1;', 'select', 'Core', 'i:1;', 4, 0, 250, 16, 16),
('allow_username_change', 'i:0;', 'select', 'Core', 'i:0;', 4, 0, 260, 16, 16),
('allow_account_delete', 'i:0;', 'select', 'Core', 'i:0;', 4, 0, 270, 16, 16),
('hide_author_exclusion', 'i:0;', 'select', 'Core', 'i:0;', 4, 0, 280, 16, 16),
('show_fullname', 'i:0;', 'select', 'Core', 'i:0;', 4, 0, 290, 16, 16),
('require_user_email', 'i:1;', 'select', 'Core', 'i:1;', 4, 0, 295, 16, 16),
('show_servicename', 'b:1;', 'select', 'Core', 'b:1;', 4, 1, 300, 16, 16),
('custom_registration', 'b:0;', 'select', 'Core', 'b:0;', 4, 1, 310, 16, 16),
('user_login_method', 'a:4:{s:8:"standard";b:1;s:6:"openid";b:0;s:8:"3rdparty";b:0;s:5:"oauth";b:0;}', '@select', 'Core', 'a:4:{s:8:"standard";b:1;s:6:"openid";b:0;s:8:"3rdparty";b:0;s:5:"oauth";b:0;}', 4, 1, 320, 16, 16),
('facebook_login', 'i:0;', 'select', 'Core', 'i:0;', 4, 1, 350, 16, 16),
('facebook_consumer_key', 's:0:"";', 'text', 'Core', 's:0:"";', 4, -1, 351, 16, 16),
('facebook_consumer_secret', 's:0:"";', 'text', 'Core', 's:0:"";', 4, -1, 352, 16, 16),
('linkedin_login', 'i:0;', 'select', 'Core', 'i:0;', 4, 1, 353, 16, 16),
('linkedin_consumer_key', 's:0:"";', 'text', 'Core', 's:0:"";', 4, -1, 354, 16, 16),
('linkedin_consumer_secret', 's:0:"";', 'text', 'Core', 's:0:"";', 4, -1, 355, 16, 16),