WordPress database error: [MySQL server has gone away]
SELECT option_value FROM wp_options WHERE option_name = 'rewrite_rules' LIMIT 1
WordPress database error: [MySQL server has gone away]
SELECT wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.ID = 1963 AND wp_posts.post_type = 'post' ORDER BY wp_posts.post_date DESC
WordPress database error: [MySQL server has gone away]
SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM wp_posts WHERE post_type = 'post' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC
WordPress database error: [MySQL server has gone away]
SELECT option_value FROM wp_options WHERE option_name = 'rich_editing' LIMIT 1
WordPress database error: [MySQL server has gone away]
show tables like 'wp_custom_contact_fields'
WordPress database error: [MySQL server has gone away]
SHOW TABLES;
WordPress database error: [MySQL server has gone away]
CREATE TABLE wp_custom_contact_fields(
`id` int(5) NOT NULL auto_increment,
`label` text default '',
`required` tinyint(1) NOT NULL default '0',
`input_type` tinyint(1) NOT NULL default '0',
`text_max_chars` int(9) NOT NULL default '4096',
`form_position` int(9) NOT NULL default '0',
`options` text default '',
PRIMARY KEY (`id`)
) TYPE=MyISAM
WordPress database error: [MySQL server has gone away]
INSERT INTO `wp_custom_contact_fields` (`label`, `required`, `input_type`, `form_position`, `text_max_chars`) VALUES ('Your Name', 1, 0, 0, 0)
WordPress database error: [MySQL server has gone away]
INSERT INTO `wp_custom_contact_fields` (`label`, `required`, `input_type`, `form_position`, `text_max_chars`) VALUES ('Your Email', 1, 0, 1, 0)
WordPress database error: [MySQL server has gone away]
INSERT INTO `wp_custom_contact_fields` (`label`, `required`, `input_type`, `form_position`, `text_max_chars`) VALUES ('Your Website', 0, 0, 2, 0)
WordPress database error: [MySQL server has gone away]
INSERT INTO `wp_custom_contact_fields` (`label`, `required`, `input_type`, `form_position`, `text_max_chars`) VALUES ('Your Message', 1, 1, 3, 0)
WordPress database error: [MySQL server has gone away]
SELECT * FROM wp_custom_contact_fields ORDER BY form_position