Created
May 23, 2012 01:42
-
-
Save fredrick/2772777 to your computer and use it in GitHub Desktop.
WordPress Test Installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; | |
-- | |
-- Database: `wordpress` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_commentmeta` | |
-- | |
CREATE TABLE `wp_commentmeta` ( | |
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`meta_key` varchar(255) DEFAULT NULL, | |
`meta_value` longtext, | |
PRIMARY KEY (`meta_id`), | |
KEY `comment_id` (`comment_id`), | |
KEY `meta_key` (`meta_key`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; | |
-- | |
-- Dumping data for table `wp_commentmeta` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_comments` | |
-- | |
CREATE TABLE `wp_comments` ( | |
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`comment_author` tinytext NOT NULL, | |
`comment_author_email` varchar(100) NOT NULL DEFAULT '', | |
`comment_author_url` varchar(200) NOT NULL DEFAULT '', | |
`comment_author_IP` varchar(100) NOT NULL DEFAULT '', | |
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`comment_content` text NOT NULL, | |
`comment_karma` int(11) NOT NULL DEFAULT '0', | |
`comment_approved` varchar(20) NOT NULL DEFAULT '1', | |
`comment_agent` varchar(255) NOT NULL DEFAULT '', | |
`comment_type` varchar(20) NOT NULL DEFAULT '', | |
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
PRIMARY KEY (`comment_ID`), | |
KEY `comment_approved` (`comment_approved`), | |
KEY `comment_post_ID` (`comment_post_ID`), | |
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), | |
KEY `comment_date_gmt` (`comment_date_gmt`), | |
KEY `comment_parent` (`comment_parent`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; | |
-- | |
-- Dumping data for table `wp_comments` | |
-- | |
INSERT INTO `wp_comments` VALUES(1, 1, 'Mr WordPress', '', 'http://wordpress.org/', '', '2012-05-23 01:19:18', '2012-05-23 01:19:18', 'Hi, this is a comment.<br />To delete a comment, just log in and view the post's comments. There you will have the option to edit or delete them.', 0, '1', '', '', 0, 0); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_links` | |
-- | |
CREATE TABLE `wp_links` ( | |
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`link_url` varchar(255) NOT NULL DEFAULT '', | |
`link_name` varchar(255) NOT NULL DEFAULT '', | |
`link_image` varchar(255) NOT NULL DEFAULT '', | |
`link_target` varchar(25) NOT NULL DEFAULT '', | |
`link_description` varchar(255) NOT NULL DEFAULT '', | |
`link_visible` varchar(20) NOT NULL DEFAULT 'Y', | |
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1', | |
`link_rating` int(11) NOT NULL DEFAULT '0', | |
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`link_rel` varchar(255) NOT NULL DEFAULT '', | |
`link_notes` mediumtext NOT NULL, | |
`link_rss` varchar(255) NOT NULL DEFAULT '', | |
PRIMARY KEY (`link_id`), | |
KEY `link_visible` (`link_visible`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ; | |
-- | |
-- Dumping data for table `wp_links` | |
-- | |
INSERT INTO `wp_links` VALUES(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
INSERT INTO `wp_links` VALUES(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'); | |
INSERT INTO `wp_links` VALUES(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
INSERT INTO `wp_links` VALUES(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
INSERT INTO `wp_links` VALUES(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
INSERT INTO `wp_links` VALUES(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
INSERT INTO `wp_links` VALUES(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_options` | |
-- | |
CREATE TABLE `wp_options` ( | |
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`blog_id` int(11) NOT NULL DEFAULT '0', | |
`option_name` varchar(64) NOT NULL DEFAULT '', | |
`option_value` longtext NOT NULL, | |
`autoload` varchar(20) NOT NULL DEFAULT 'yes', | |
PRIMARY KEY (`option_id`), | |
UNIQUE KEY `option_name` (`option_name`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=107 ; | |
-- | |
-- Dumping data for table `wp_options` | |
-- | |
INSERT INTO `wp_options` VALUES(1, 0, '_site_transient_timeout_theme_roots', '1337743157', 'yes'); | |
INSERT INTO `wp_options` VALUES(2, 0, '_site_transient_theme_roots', 'a:4:{s:10:"roots-pjax";s:7:"/themes";s:5:"roots";s:7:"/themes";s:12:"twentyeleven";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}', 'yes'); | |
INSERT INTO `wp_options` VALUES(3, 0, 'siteurl', 'http://localhost', 'yes'); | |
INSERT INTO `wp_options` VALUES(4, 0, 'blogname', 'Test', 'yes'); | |
INSERT INTO `wp_options` VALUES(5, 0, 'blogdescription', 'Just another WordPress site', 'yes'); | |
INSERT INTO `wp_options` VALUES(6, 0, 'users_can_register', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(7, 0, 'admin_email', 'test@test.com', 'yes'); | |
INSERT INTO `wp_options` VALUES(8, 0, 'start_of_week', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(9, 0, 'use_balanceTags', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(10, 0, 'use_smilies', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(11, 0, 'require_name_email', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(12, 0, 'comments_notify', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(13, 0, 'posts_per_rss', '10', 'yes'); | |
INSERT INTO `wp_options` VALUES(14, 0, 'rss_use_excerpt', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(15, 0, 'mailserver_url', 'mail.example.com', 'yes'); | |
INSERT INTO `wp_options` VALUES(16, 0, 'mailserver_login', 'login@example.com', 'yes'); | |
INSERT INTO `wp_options` VALUES(17, 0, 'mailserver_pass', 'password', 'yes'); | |
INSERT INTO `wp_options` VALUES(18, 0, 'mailserver_port', '110', 'yes'); | |
INSERT INTO `wp_options` VALUES(19, 0, 'default_category', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(20, 0, 'default_comment_status', 'open', 'yes'); | |
INSERT INTO `wp_options` VALUES(21, 0, 'default_ping_status', 'open', 'yes'); | |
INSERT INTO `wp_options` VALUES(22, 0, 'default_pingback_flag', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(23, 0, 'default_post_edit_rows', '20', 'yes'); | |
INSERT INTO `wp_options` VALUES(24, 0, 'posts_per_page', '10', 'yes'); | |
INSERT INTO `wp_options` VALUES(25, 0, 'date_format', 'F j, Y', 'yes'); | |
INSERT INTO `wp_options` VALUES(26, 0, 'time_format', 'g:i a', 'yes'); | |
INSERT INTO `wp_options` VALUES(27, 0, 'links_updated_date_format', 'F j, Y g:i a', 'yes'); | |
INSERT INTO `wp_options` VALUES(28, 0, 'links_recently_updated_prepend', '<em>', 'yes'); | |
INSERT INTO `wp_options` VALUES(29, 0, 'links_recently_updated_append', '</em>', 'yes'); | |
INSERT INTO `wp_options` VALUES(30, 0, 'links_recently_updated_time', '120', 'yes'); | |
INSERT INTO `wp_options` VALUES(31, 0, 'comment_moderation', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(32, 0, 'moderation_notify', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(33, 0, 'permalink_structure', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(34, 0, 'gzipcompression', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(35, 0, 'hack_file', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(36, 0, 'blog_charset', 'UTF-8', 'yes'); | |
INSERT INTO `wp_options` VALUES(37, 0, 'moderation_keys', '', 'no'); | |
INSERT INTO `wp_options` VALUES(38, 0, 'active_plugins', 'a:0:{}', 'yes'); | |
INSERT INTO `wp_options` VALUES(39, 0, 'home', 'http://localhost', 'yes'); | |
INSERT INTO `wp_options` VALUES(40, 0, 'category_base', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(41, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'); | |
INSERT INTO `wp_options` VALUES(42, 0, 'advanced_edit', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(43, 0, 'comment_max_links', '2', 'yes'); | |
INSERT INTO `wp_options` VALUES(44, 0, 'gmt_offset', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(45, 0, 'default_email_category', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(46, 0, 'recently_edited', '', 'no'); | |
INSERT INTO `wp_options` VALUES(47, 0, 'template', 'twentyeleven', 'yes'); | |
INSERT INTO `wp_options` VALUES(48, 0, 'stylesheet', 'twentyeleven', 'yes'); | |
INSERT INTO `wp_options` VALUES(49, 0, 'comment_whitelist', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(50, 0, 'blacklist_keys', '', 'no'); | |
INSERT INTO `wp_options` VALUES(51, 0, 'comment_registration', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(52, 0, 'rss_language', 'en', 'yes'); | |
INSERT INTO `wp_options` VALUES(53, 0, 'html_type', 'text/html', 'yes'); | |
INSERT INTO `wp_options` VALUES(54, 0, 'use_trackback', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(55, 0, 'default_role', 'subscriber', 'yes'); | |
INSERT INTO `wp_options` VALUES(56, 0, 'db_version', '19470', 'yes'); | |
INSERT INTO `wp_options` VALUES(57, 0, 'uploads_use_yearmonth_folders', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(58, 0, 'upload_path', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(59, 0, 'blog_public', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(60, 0, 'default_link_category', '2', 'yes'); | |
INSERT INTO `wp_options` VALUES(61, 0, 'show_on_front', 'posts', 'yes'); | |
INSERT INTO `wp_options` VALUES(62, 0, 'tag_base', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(63, 0, 'show_avatars', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(64, 0, 'avatar_rating', 'G', 'yes'); | |
INSERT INTO `wp_options` VALUES(65, 0, 'upload_url_path', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(66, 0, 'thumbnail_size_w', '150', 'yes'); | |
INSERT INTO `wp_options` VALUES(67, 0, 'thumbnail_size_h', '150', 'yes'); | |
INSERT INTO `wp_options` VALUES(68, 0, 'thumbnail_crop', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(69, 0, 'medium_size_w', '300', 'yes'); | |
INSERT INTO `wp_options` VALUES(70, 0, 'medium_size_h', '300', 'yes'); | |
INSERT INTO `wp_options` VALUES(71, 0, 'avatar_default', 'mystery', 'yes'); | |
INSERT INTO `wp_options` VALUES(72, 0, 'enable_app', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(73, 0, 'enable_xmlrpc', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(74, 0, 'large_size_w', '1024', 'yes'); | |
INSERT INTO `wp_options` VALUES(75, 0, 'large_size_h', '1024', 'yes'); | |
INSERT INTO `wp_options` VALUES(76, 0, 'image_default_link_type', 'file', 'yes'); | |
INSERT INTO `wp_options` VALUES(77, 0, 'image_default_size', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(78, 0, 'image_default_align', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(79, 0, 'close_comments_for_old_posts', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(80, 0, 'close_comments_days_old', '14', 'yes'); | |
INSERT INTO `wp_options` VALUES(81, 0, 'thread_comments', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(82, 0, 'thread_comments_depth', '5', 'yes'); | |
INSERT INTO `wp_options` VALUES(83, 0, 'page_comments', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(84, 0, 'comments_per_page', '50', 'yes'); | |
INSERT INTO `wp_options` VALUES(85, 0, 'default_comments_page', 'newest', 'yes'); | |
INSERT INTO `wp_options` VALUES(86, 0, 'comment_order', 'asc', 'yes'); | |
INSERT INTO `wp_options` VALUES(87, 0, 'sticky_posts', 'a:0:{}', 'yes'); | |
INSERT INTO `wp_options` VALUES(88, 0, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(89, 0, 'widget_text', 'a:0:{}', 'yes'); | |
INSERT INTO `wp_options` VALUES(90, 0, 'widget_rss', 'a:0:{}', 'yes'); | |
INSERT INTO `wp_options` VALUES(91, 0, 'timezone_string', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(92, 0, 'embed_autourls', '1', 'yes'); | |
INSERT INTO `wp_options` VALUES(93, 0, 'embed_size_w', '', 'yes'); | |
INSERT INTO `wp_options` VALUES(94, 0, 'embed_size_h', '600', 'yes'); | |
INSERT INTO `wp_options` VALUES(95, 0, 'page_for_posts', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(96, 0, 'page_on_front', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(97, 0, 'default_post_format', '0', 'yes'); | |
INSERT INTO `wp_options` VALUES(98, 0, 'initial_db_version', '19470', 'yes'); | |
INSERT INTO `wp_options` VALUES(99, 0, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:62:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'); | |
INSERT INTO `wp_options` VALUES(100, 0, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(101, 0, 'widget_recent-posts', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(102, 0, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(103, 0, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(104, 0, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(105, 0, 'sidebars_widgets', 'a:7:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}s:9:"sidebar-2";a:0:{}s:9:"sidebar-3";a:0:{}s:9:"sidebar-4";a:0:{}s:9:"sidebar-5";a:0:{}s:13:"array_version";i:3;}', 'yes'); | |
INSERT INTO `wp_options` VALUES(106, 0, 'cron', 'a:2:{i:1337735961;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}s:7:"version";i:2;}', 'yes'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_postmeta` | |
-- | |
CREATE TABLE `wp_postmeta` ( | |
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`meta_key` varchar(255) DEFAULT NULL, | |
`meta_value` longtext, | |
PRIMARY KEY (`meta_id`), | |
KEY `post_id` (`post_id`), | |
KEY `meta_key` (`meta_key`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; | |
-- | |
-- Dumping data for table `wp_postmeta` | |
-- | |
INSERT INTO `wp_postmeta` VALUES(1, 2, '_wp_page_template', 'default'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_posts` | |
-- | |
CREATE TABLE `wp_posts` ( | |
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`post_content` longtext NOT NULL, | |
`post_title` text NOT NULL, | |
`post_excerpt` text NOT NULL, | |
`post_status` varchar(20) NOT NULL DEFAULT 'publish', | |
`comment_status` varchar(20) NOT NULL DEFAULT 'open', | |
`ping_status` varchar(20) NOT NULL DEFAULT 'open', | |
`post_password` varchar(20) NOT NULL DEFAULT '', | |
`post_name` varchar(200) NOT NULL DEFAULT '', | |
`to_ping` text NOT NULL, | |
`pinged` text NOT NULL, | |
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`post_content_filtered` text NOT NULL, | |
`post_parent` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`guid` varchar(255) NOT NULL DEFAULT '', | |
`menu_order` int(11) NOT NULL DEFAULT '0', | |
`post_type` varchar(20) NOT NULL DEFAULT 'post', | |
`post_mime_type` varchar(100) NOT NULL DEFAULT '', | |
`comment_count` bigint(20) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`ID`), | |
KEY `post_name` (`post_name`), | |
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), | |
KEY `post_parent` (`post_parent`), | |
KEY `post_author` (`post_author`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; | |
-- | |
-- Dumping data for table `wp_posts` | |
-- | |
INSERT INTO `wp_posts` VALUES(1, 1, '2012-05-23 01:19:18', '2012-05-23 01:19:18', 'Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!', 'Hello world!', '', 'publish', 'open', 'open', '', 'hello-world', '', '', '2012-05-23 01:19:18', '2012-05-23 01:19:18', '', 0, 'http://localhost/?p=1', 0, 'post', '', 1); | |
INSERT INTO `wp_posts` VALUES(2, 1, '2012-05-23 01:19:18', '2012-05-23 01:19:18', 'This is an example page. It''s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I''m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin'' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickies to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href="http://localhost/wp-admin/">your dashboard</a> to delete this page and create new pages for your content. Have fun!', 'Sample Page', '', 'publish', 'open', 'open', '', 'sample-page', '', '', '2012-05-23 01:19:18', '2012-05-23 01:19:18', '', 0, 'http://localhost/?page_id=2', 0, 'page', '', 0); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_terms` | |
-- | |
CREATE TABLE `wp_terms` ( | |
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`name` varchar(200) NOT NULL DEFAULT '', | |
`slug` varchar(200) NOT NULL DEFAULT '', | |
`term_group` bigint(10) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`term_id`), | |
UNIQUE KEY `slug` (`slug`), | |
KEY `name` (`name`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; | |
-- | |
-- Dumping data for table `wp_terms` | |
-- | |
INSERT INTO `wp_terms` VALUES(1, 'Uncategorized', 'uncategorized', 0); | |
INSERT INTO `wp_terms` VALUES(2, 'Blogroll', 'blogroll', 0); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_term_relationships` | |
-- | |
CREATE TABLE `wp_term_relationships` ( | |
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`term_order` int(11) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`object_id`,`term_taxonomy_id`), | |
KEY `term_taxonomy_id` (`term_taxonomy_id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |
-- | |
-- Dumping data for table `wp_term_relationships` | |
-- | |
INSERT INTO `wp_term_relationships` VALUES(1, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(2, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(3, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(4, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(5, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(6, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(7, 2, 0); | |
INSERT INTO `wp_term_relationships` VALUES(1, 1, 0); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_term_taxonomy` | |
-- | |
CREATE TABLE `wp_term_taxonomy` ( | |
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`taxonomy` varchar(32) NOT NULL DEFAULT '', | |
`description` longtext NOT NULL, | |
`parent` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`count` bigint(20) NOT NULL DEFAULT '0', | |
PRIMARY KEY (`term_taxonomy_id`), | |
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), | |
KEY `taxonomy` (`taxonomy`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ; | |
-- | |
-- Dumping data for table `wp_term_taxonomy` | |
-- | |
INSERT INTO `wp_term_taxonomy` VALUES(1, 1, 'category', '', 0, 1); | |
INSERT INTO `wp_term_taxonomy` VALUES(2, 2, 'link_category', '', 0, 7); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_usermeta` | |
-- | |
CREATE TABLE `wp_usermeta` ( | |
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0', | |
`meta_key` varchar(255) DEFAULT NULL, | |
`meta_value` longtext, | |
PRIMARY KEY (`umeta_id`), | |
KEY `user_id` (`user_id`), | |
KEY `meta_key` (`meta_key`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=14 ; | |
-- | |
-- Dumping data for table `wp_usermeta` | |
-- | |
INSERT INTO `wp_usermeta` VALUES(1, 1, 'first_name', ''); | |
INSERT INTO `wp_usermeta` VALUES(2, 1, 'last_name', ''); | |
INSERT INTO `wp_usermeta` VALUES(3, 1, 'nickname', 'test'); | |
INSERT INTO `wp_usermeta` VALUES(4, 1, 'description', ''); | |
INSERT INTO `wp_usermeta` VALUES(5, 1, 'rich_editing', 'true'); | |
INSERT INTO `wp_usermeta` VALUES(6, 1, 'comment_shortcuts', 'false'); | |
INSERT INTO `wp_usermeta` VALUES(7, 1, 'admin_color', 'fresh'); | |
INSERT INTO `wp_usermeta` VALUES(8, 1, 'use_ssl', '0'); | |
INSERT INTO `wp_usermeta` VALUES(9, 1, 'show_admin_bar_front', 'true'); | |
INSERT INTO `wp_usermeta` VALUES(10, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'); | |
INSERT INTO `wp_usermeta` VALUES(11, 1, 'wp_user_level', '10'); | |
INSERT INTO `wp_usermeta` VALUES(12, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_media_uploader,wp330_saving_widgets'); | |
INSERT INTO `wp_usermeta` VALUES(13, 1, 'show_welcome_panel', '1'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `wp_users` | |
-- | |
CREATE TABLE `wp_users` ( | |
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, | |
`user_login` varchar(60) NOT NULL DEFAULT '', | |
`user_pass` varchar(64) NOT NULL DEFAULT '', | |
`user_nicename` varchar(50) NOT NULL DEFAULT '', | |
`user_email` varchar(100) NOT NULL DEFAULT '', | |
`user_url` varchar(100) NOT NULL DEFAULT '', | |
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', | |
`user_activation_key` varchar(60) NOT NULL DEFAULT '', | |
`user_status` int(11) NOT NULL DEFAULT '0', | |
`display_name` varchar(250) NOT NULL DEFAULT '', | |
PRIMARY KEY (`ID`), | |
KEY `user_login_key` (`user_login`), | |
KEY `user_nicename` (`user_nicename`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ; | |
-- | |
-- Dumping data for table `wp_users` | |
-- | |
INSERT INTO `wp_users` VALUES(1, 'test', '$P$BtlJf2FValYPmJS0H.sjp4edVf.3CC.', 'test', 'test@test.com', '', '2012-05-23 01:19:18', '', 0, 'test'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment