This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
OriginalHouse_Web/db/originalhouse.sql

939 lines
441 KiB
MySQL
Raw Normal View History

-- phpMyAdmin SQL Dump
-- version 3.3.9
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 01-07-2011 a las 14:53:13
-- Versión del servidor: 5.1.53
-- Versión de PHP: 5.3.4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!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 */;
--
-- Base de datos: `originalhouse`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `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 ;
--
-- Volcar la base de datos para la tabla `wp_commentmeta`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_comments`
--
CREATE TABLE IF NOT EXISTS `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 ;
--
-- Volcar la base de datos para la tabla `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Sr WordPress', '', 'http://wordpress.org/', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Hola, esto es un comentario.<br /> Para borrar un comentario sólo tienes que entrar y ver los comentarios de la entrada. Entonces tendrás la opción de editar o borrar.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_customback`
--
CREATE TABLE IF NOT EXISTS `wp_customback` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`postid` bigint(20) DEFAULT NULL,
`url` text,
`rep` varchar(5) DEFAULT 'none',
`color` varchar(25) DEFAULT NULL,
`css` text,
`displaytype` tinyint(1) DEFAULT '3',
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
--
-- Volcar la base de datos para la tabla `wp_customback`
--
INSERT INTO `wp_customback` (`id`, `postid`, `url`, `rep`, `color`, `css`, `displaytype`) VALUES
(1, 48, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(2, 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(3, 58, '', 'none', '', '', 0),
(4, 57, '', 'none', '', '', 0),
(5, 65, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 'none', '', '', 0),
(6, 61, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 'none', '', '', 5),
(7, 83, '', 'none', '', '', 0),
(8, 82, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 'none', '', '', 5),
(9, 89, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(10, 88, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(11, 97, '', 'none', '', '', 0),
(12, 96, '', 'none', '', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_links`
--
CREATE TABLE IF NOT EXISTS `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 ;
--
-- Volcar la base de datos para la tabla `wp_links`
--
INSERT INTO `wp_links` (`link_id`, `link_url`, `link_name`, `link_image`, `link_target`, `link_description`, `link_visible`, `link_owner`, `link_rating`, `link_updated`, `link_rel`, `link_notes`, `link_rss`) VALUES
(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'),
(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_options`
--
CREATE TABLE IF NOT EXISTS `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=354 ;
--
-- Volcar la base de datos para la tabla `wp_options`
--
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 0, 'siteurl', 'http://localhost/originalhouse', 'yes'),
(2, 0, 'blogname', 'Original House', 'yes'),
(3, 0, 'blogdescription', 'Muebles y decoración de estilo asiatico y moderno', 'yes'),
(4, 0, 'users_can_register', '0', 'yes'),
(5, 0, 'admin_email', 'darranz@rodax-software.com', 'yes'),
(6, 0, 'start_of_week', '1', 'yes'),
(7, 0, 'use_balanceTags', '0', 'yes'),
(8, 0, 'use_smilies', '1', 'yes'),
(9, 0, 'require_name_email', '1', 'yes'),
(10, 0, 'comments_notify', '1', 'yes'),
(11, 0, 'posts_per_rss', '10', 'yes'),
(12, 0, 'rss_use_excerpt', '0', 'yes'),
(13, 0, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 0, 'mailserver_login', 'login@example.com', 'yes'),
(15, 0, 'mailserver_pass', 'password', 'yes'),
(16, 0, 'mailserver_port', '110', 'yes'),
(17, 0, 'default_category', '1', 'yes'),
(18, 0, 'default_comment_status', 'closed', 'yes'),
(19, 0, 'default_ping_status', 'open', 'yes'),
(20, 0, 'default_pingback_flag', '1', 'yes'),
(21, 0, 'default_post_edit_rows', '20', 'yes'),
(22, 0, 'posts_per_page', '10', 'yes'),
(23, 0, 'date_format', 'j F, Y', 'yes'),
(24, 0, 'time_format', 'G:i', 'yes'),
(25, 0, 'links_updated_date_format', 'j F, Y G:i', 'yes'),
(26, 0, 'links_recently_updated_prepend', '<em>', 'yes'),
(27, 0, 'links_recently_updated_append', '</em>', 'yes'),
(28, 0, 'links_recently_updated_time', '120', 'yes'),
(29, 0, 'comment_moderation', '', 'yes'),
(30, 0, 'moderation_notify', '1', 'yes'),
(31, 0, 'permalink_structure', '', 'yes'),
(32, 0, 'gzipcompression', '0', 'yes'),
(33, 0, 'hack_file', '0', 'yes'),
(34, 0, 'blog_charset', 'UTF-8', 'yes'),
(35, 0, 'moderation_keys', '', 'no'),
(36, 0, 'active_plugins', 'a:5:{i:0;s:21:"catablog/catablog.php";i:1;s:43:"custom-post-background/custom-post-back.php";i:2;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:3;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:4;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";}', 'yes'),
(37, 0, 'home', 'http://localhost/originalhouse', 'yes'),
(38, 0, 'category_base', '', 'yes'),
(39, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(40, 0, 'advanced_edit', '0', 'yes'),
(41, 0, 'comment_max_links', '2', 'yes'),
(42, 0, 'gmt_offset', '0', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', '', 'no'),
(45, 0, 'template', 'originalhouse', 'yes'),
(46, 0, 'stylesheet', 'originalhouse', 'yes'),
(47, 0, 'comment_whitelist', '1', 'yes'),
(48, 0, 'blacklist_keys', '', 'no'),
(49, 0, 'comment_registration', '', 'yes'),
(50, 0, 'rss_language', 'en', 'yes'),
(51, 0, 'html_type', 'text/html', 'yes'),
(52, 0, 'use_trackback', '0', 'yes'),
(53, 0, 'default_role', 'subscriber', 'yes'),
(54, 0, 'db_version', '17516', 'yes'),
(55, 0, 'uploads_use_yearmonth_folders', '1', 'yes'),
(56, 0, 'upload_path', '', 'yes'),
(57, 0, 'blog_public', '1', 'yes'),
(58, 0, 'default_link_category', '2', 'yes'),
(59, 0, 'show_on_front', 'page', 'yes'),
(60, 0, 'tag_base', '', 'yes'),
(61, 0, 'show_avatars', '0', 'yes'),
(62, 0, 'avatar_rating', 'G', 'yes'),
(63, 0, 'upload_url_path', '', 'yes'),
(64, 0, 'thumbnail_size_w', '150', 'yes'),
(65, 0, 'thumbnail_size_h', '150', 'yes'),
(66, 0, 'thumbnail_crop', '1', 'yes'),
(67, 0, 'medium_size_w', '300', 'yes'),
(68, 0, 'medium_size_h', '300', 'yes'),
(69, 0, 'avatar_default', 'mystery', 'yes'),
(70, 0, 'enable_app', '0', 'yes'),
(71, 0, 'enable_xmlrpc', '0', 'yes'),
(72, 0, 'large_size_w', '1024', 'yes'),
(73, 0, 'large_size_h', '1024', 'yes'),
(74, 0, 'image_default_link_type', 'file', 'yes'),
(75, 0, 'image_default_size', '', 'yes'),
(76, 0, 'image_default_align', '', 'yes'),
(77, 0, 'close_comments_for_old_posts', '', 'yes'),
(78, 0, 'close_comments_days_old', '14', 'yes'),
(79, 0, 'thread_comments', '1', 'yes'),
(80, 0, 'thread_comments_depth', '5', 'yes'),
(81, 0, 'page_comments', '', 'yes'),
(82, 0, 'comments_per_page', '50', 'yes'),
(83, 0, 'default_comments_page', 'newest', 'yes'),
(84, 0, 'comment_order', 'asc', 'yes'),
(85, 0, 'sticky_posts', 'a:0:{}', 'yes'),
(86, 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'),
(87, 0, 'widget_text', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(88, 0, 'widget_rss', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(89, 0, 'timezone_string', '', 'yes'),
(90, 0, 'embed_autourls', '1', 'yes'),
(91, 0, 'embed_size_w', '', 'yes'),
(92, 0, 'embed_size_h', '600', 'yes'),
(93, 0, 'page_for_posts', '0', 'yes'),
(94, 0, 'page_on_front', '44', 'yes'),
(95, 0, 'default_post_format', '0', 'yes'),
(96, 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'),
(97, 0, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 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'),
(99, 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'),
(100, 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'),
(101, 0, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(102, 0, 'sidebars_widgets', 'a:3:{s:19:"wp_inactive_widgets";a:21:{i:0;s:10:"woo_tabs-2";i:1;s:14:"woo_adwidget-2";i:2;s:20:"woo_blogauthorinfo-2";i:3;s:12:"woo_flickr-2";i:4;s:12:"woo_search-2";i:5;s:13:"woo_twitter-2";i:6;s:15:"woo_subscribe-2";i:7;s:7:"pages-2";i:8;s:10:"calendar-2";i:9;s:7:"links-2";i:10;s:6:"text-2";i:11;s:5:"rss-2";i:12;s:11:"tag_cloud-2";i:13;s:10:"nav_menu-2";i:14;s:14:"woo_archives-2";i:15;s:23:"dc_jqaccordion_widget-2";i:16;s:14:"recent-posts-2";i:17;s:17:"recent-comments-2";i:18;s:10:"archives-2";i:19;s:12:"categories-2";i:20;s:6:"meta-2";}s:7:"primary";a:1:{i:0;s:23:"dc_jqaccordion_widget-3";}s:13:"array_version";i:3;}', 'yes'),
(103, 0, 'cron', 'a:3:{i:1309489968;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;}}}i:1309533172;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(104, 0, '_transient_doing_cron', '1309446805', 'yes'),
(105, 0, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":7:{s:8:"response";s:7:"upgrade";s:3:"url";s:24:"http://es.wordpress.org/";s:7:"package";s:49:"http://es.wordpress.org/wordpress-3.1.4-es_ES.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"es_ES";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}i:1;O:8:"stdClass":7:{s:8:"response";s:7:"upgrade";s:3:"url";s:30:"http://wordpress.org/download/";s:7:"package";s:40:"http://wordpress.org/wordpress-3.1.4.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"en_US";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}}s:12:"last_checked";i:1309446808;s:15:"version_checked";s:5:"3.1.3";}', 'yes'),
(107, 0, 'widget_pages', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(108, 0, 'widget_calendar', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(109, 0, 'widget_links', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(110, 0, 'widget_tag_cloud', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(111, 0, 'widget_nav_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(115, 0, 'dashboard_widget_options', 'a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:30:"http://localhost/originalhouse";s:4:"link";s:106:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://localhost/originalhouse/";s:3:"url";s:139:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://localhost/originalhouse/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:26:"http://wordpress.org/news/";s:3:"url";s:31:"http://wordpress.org/news/feed/";s:5:"title";s:22:"Blog oficial WordPress";s:5:"items";i:2;s:12:"show_summary";i:1;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:19:"dashboard_secondary";a:7:{s:4:"link";s:28:"http://planet.wordpress.org/";s:3:"url";s:33:"http://planet.wordpress.org/feed/";s:5:"title";s:30:"Otras noticias sobre WordPress";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(352, 0, '_site_transient_timeout_theme_roots', '1309454009', 'yes'),
(353, 0, '_site_transient_theme_roots', 'a:2:{s:13:"originalhouse";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}', 'yes'),
(266, 0, 'current_theme', 'Original House', 'yes'),
(117, 0, 'can_compress_scripts', '1', 'yes'),
(349, 0, '_transient_timeout_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309474214', 'no'),
(350, 0, '_transient_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309431014', 'no'),
(347, 0, '_transient_timeout_feed_8fa202021a0c51f109142bc571ee925a', '1309474214', 'no'),
(348, 0, '_transient_feed_8fa202021a0c51f109142bc571ee925a', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:4:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:83:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:4:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:57:"link:http://localhost/originalhouse/ - Google Blog Search";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://www.google.com/search?ie=utf-8&q=link:http://localhost/originalhouse/&tbm=blg&tbs=sbd:1";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:97:"Results <b>1</b> - <b>10</b> of about <b>141</b> for <b>link:http://localhost/originalhouse/</b>.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:79:"MakeUseOf.com: “Latest Hilarious Picks [Geeky Fun]” plus 12 more <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:94:"http://free-download-book-pdf.blogspot.com/2011/05/makeuseofcom-latest-hilarious-picks_13.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:536:"Go to “<em>http</em>://<em>localhost</em>/” and you&#39;ll see a perfect mirror replica of your live website! Now you can tweak your theme, new ads, or otherwise play around with the local version of your website before you decide to move the changes to your live <b>...</b> The <em>link</em> will prompt the package manager to install the package for you. You can also fire up the Synaptic Package Manager and type in compizconfig-settings-manager . You&#39;ll see it along with another package called “simple-ccsm“. <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:3:{s:9:"publisher";a:1:{i:0;a:5:{s:4:"data";s:14:"Download ebook";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:5:"ebook";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"date";a:1:{i:0;a:5:{s:4:"data";s:29:"Fri, 13 May 2011 14:22:00 GMT";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:47:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:3:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:76:"FreakY TriKz: MakeUseOf.com: “Latest Hilarious Picks [Geeky Fun <b>...</b>";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"http://freaky-trikz.blogspot.com/2011/05/makeuseofcom-latest-hilarious-picks_13.html";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:536:"Go to “<em>http</em>://<em>localhost</em>/” and you&#39;ll see a perfect mirror replica of your live website! Now you can tweak your theme, new ads, or otherwise play around with the local version of your website before you decide to move the changes to your live <b>...</b
(122, 0, '_transient_timeout_plugin_slugs', '1309456990', 'no'),
(123, 0, '_transient_plugin_slugs', 'a:7:{i:0;s:19:"akismet/akismet.php";i:1;s:21:"catablog/catablog.php";i:2;s:43:"custom-post-background/custom-post-back.php";i:3;s:9:"hello.php";i:4;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:5;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:6;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";}', 'no'),
(124, 0, 'recently_activated', 'a:0:{}', 'yes'),
(125, 0, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309317174', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(126, 0, '_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:50:"\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:3:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:25:"http://wordpress.org/news";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:14:"WordPress News";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Jun 2011 23:15:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:37:"http://wordpress.org/?v=3.2-RC2-18357";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:10:{i:0;a:6:{s:4:"data";s:41:"\n \n \n \n \n \n \n\n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress 3.2 Release Candidate 2";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:68:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/#comments";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 24 Jun 2011 23:15:22 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"category";a:1:{i:0;a:5:{s:4:"data";s:7:"Testing";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=1915";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:358:"Howdy! The second release candidate for WordPress 3.2 is now available. If you haven&#8217;t tested WordPress 3.2 yet, now is the time &#8212; please though, not on your live site unless youre extra adventurous. We&#8217;ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to [...]";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:12:"Andrew Nacin";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:40:"http://purl.org/rss/1.0/modules/content/";a:1:{s:7:"encoded";a:1:{i:0;a:5:{s:4:"data";s:1876:"<p>Howdy! The second release candidate for WordPress 3.2 is now available. If you haven&#8217;t tested WordPress 3.2 yet, now is the time &#8212; please though, not on your live site unless youre extra adventurous.</p>\n<p>We&#8217;ve handled a number of issues since RC1, including additional Twenty Eleven tweaks, a new theme support option for defaulting to randomized headers, and various RTL fix
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(127, 0, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309317174', 'no'),
(128, 0, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1309273974', 'no'),
(129, 0, '_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc', '1309317175', 'no'),
(130, 0, '_transient_feed_a5420c83891a9c88ad2a4f04584a5efc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/popular/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:39:"WordPress Plugins » View: Most Popular";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:02:16 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"uberdose on "All in One SEO Pack"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:65:"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Fri, 30 Mar 2007 20:08:18 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:40:"753@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:92:"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"uberdose";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"BraveNewCode Inc. on "WPtouch"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:54:"http://wordpress.org/extend/plugins/wptouch/#post-5468";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Thu, 01 May 2008 04:58:09 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"5468@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:150:"WPtouch: A simple, powerful and elegant mobile theme for you
(131, 0, '_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1309317175', 'no'),
(132, 0, '_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc', '1309273975', 'no'),
(133, 0, '_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c', '1309317175', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(134, 0, '_transient_feed_867bd5c64f85878d03a060509cd2f92c', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n\n\n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:61:"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:16:"WordPress Planet";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:28:"http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:2:"en";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:47:"WordPress Planet - http://planet.wordpress.org/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:50:{i:0;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:59:"Weblog Tools Collection: WordPress Plugin Releases for 6/28";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10189";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:73:"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/-xmy0S6Y-A4/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:846:"<h3>New plugins</h3>\n<p><a href="http://allcreatives.net/2011/06/25/wordpress-plugin-bulk-remove-comments/"><strong>Bulk Remove Comments</strong></a> allows you to remove all pending comments from your database with one click.</p>\n<p><a href="http://wordpress.org/extend/plugins/wp-notcaptcha/"><strong>WP-NOTCAPTCHA</strong></a> adds CAPTCHA anti-spam methods to WordPress on the comment form, registration form, or both. In order to post comments, users will have to range icons in right (upright) place.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://tinsology.net/plugins/amazon-tools/"><strong>Amazon Tools</strong></a> allows you to display Amazon product information on your blog and earn commission through Amazon Associates.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/-xmy0S6Y-A4" height="1" width="1" />";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 13:00:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"James Huff";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:13:"\n \n \n \n \n \n \n";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"Matt: A WordPress Filesystem";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=38332";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:44:"http://ma.tt/2011/06/a-wordpress-filesystem/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"descri
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(135, 0, '_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1309317175', 'no'),
(136, 0, '_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c', '1309273975', 'no'),
(137, 0, '_transient_timeout_feed_57bc725ad6568758915363af670fd8bc', '1309317175', 'no'),
(138, 0, '_transient_feed_57bc725ad6568758915363af670fd8bc', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:47:"http://wordpress.org/extend/plugins/browse/new/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:33:"WordPress Plugins » View: Newest";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:05:28 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:37:"wokamoto on "Feed Template Customize"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/extend/plugins/feed-template-customize/#post-27843";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 05:26:27 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27843@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:58:"This plugin modifies RSS feeds and ATOM feeds as you want.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:8:"wokamoto";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:50:"gopiplus on "Image vertical reel scroll slideshow"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:84:"http://wordpress.org/extend/plugins/image-vertical-reel-scroll-slideshow/#post-27803";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 26 Jun 2011 12:35:43 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27803@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:146:"Image vertical reel scroll slideshow wordpress
(139, 0, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1309317175', 'no'),
(140, 0, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1309273975', 'no'),
(351, 0, 'category_children', 'a:0:{}', 'yes'),
(143, 0, '_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2', '1309317176', 'no'),
(144, 0, '_transient_feed_1a5f760f2e2b48827d4974a60857e7c2', 'a:4:{s:5:"child";a:1:{s:0:"";a:1:{s:3:"rss";a:1:{i:0;a:6:{s:4:"data";s:3:"\n \n";s:7:"attribs";a:1:{s:0:"";a:1:{s:7:"version";s:3:"2.0";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:1:{s:0:"";a:1:{s:7:"channel";a:1:{i:0;a:6:{s:4:"data";s:72:"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:51:"http://wordpress.org/extend/plugins/browse/updated/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:43:"WordPress Plugins » View: Recently Updated";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:8:"language";a:1:{i:0;a:5:{s:4:"data";s:5:"en-US";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Tue, 28 Jun 2011 15:08:08 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:9:"generator";a:1:{i:0;a:5:{s:4:"data";s:36:"http://bbpress.org/?v=1.1-alpha-2855";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"item";a:15:{i:0;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"paul.irish on "Infinite Scroll"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:62:"http://wordpress.org/extend/plugins/infinite-scroll/#post-6138";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Sun, 29 Jun 2008 23:30:06 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"6138@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:102:"Automatically append the next page of posts (via AJAX) to your page when a user scrolls to the bottom.";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"paul.irish";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}i:1;a:6:{s:4:"data";s:30:"\n \n \n \n \n \n \n ";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";s:5:"child";a:2:{s:0:"";a:5:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"Ciprian Turcu on "Custom Scheduled Posts Widget"";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:77:"http://wordpress.org/extend/plugins/custom-scheduled-posts-widget/#post-27828";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:7:"pubDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Mon, 27 Jun 2011 13:18:47 +0000";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27828@http://wordpress.org/extend/plugins/";s:7:"attribs";a:1:{s:0:"";a:1:{s:11:"isPermaLink";s:5:"false";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}s:11:"description";a:1:{i:0;a:5:{s:4:"data";s:127:"
(145, 0, '_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309317176', 'no'),
(146, 0, '_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309273976', 'no'),
(149, 0, 'catablog-options', 'a:18:{s:7:"version";s:7:"1.2.9.7";s:14:"thumbnail-size";s:3:"160";s:10:"image-size";s:3:"600";s:16:"background-color";s:7:"#000000";s:12:"paypal-email";s:0:"";s:17:"keep-aspect-ratio";b:1;s:16:"lightbox-enabled";b:1;s:15:"lightbox-render";b:0;s:17:"lightbox-selector";s:15:".catablog-image";s:11:"link-target";s:0:"";s:17:"link-relationship";s:0:"";s:10:"view-theme";s:277:"<div class=''catablog-row %CATEGORY-SLUGS%''>\r\n <div class="catablog-images-column">\r\n %MAIN-IMAGE%\r\n %SUB-IMAGES%\r\n </div>\r\n \r\n <h3 class=''catablog-title''>%TITLE-LINK%</h3>\r\n \r\n <div class="catablog-description">\r\n <p>%DESCRIPTION%</p>\r\n %BUY-NOW-BUTTON%\r\n </div>\r\n \r\n</div>";s:11:"view-buynow";s:0:"";s:18:"filter-description";b:1;s:17:"nl2br-description";b:1;s:12:"public_posts";b:0;s:16:"public_post_slug";s:14:"catablog-items";s:15:"public_tax_slug";s:14:"catablog-terms";}', 'yes'),
(159, 0, '_site_transient_update_themes', 'O:8:"stdClass":1:{s:12:"last_checked";i:1309446810;}', 'yes'),
(337, 0, '_site_transient_timeout_wporg_theme_feature_list', '1309388348', 'yes');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(338, 0, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:18:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:20:"front-page-post-form";i:10;s:19:"full-width-template";i:11;s:12:"microformats";i:12;s:12:"post-formats";i:13;s:20:"rtl-language-support";i:14;s:11:"sticky-post";i:15;s:13:"theme-options";i:16;s:17:"threaded-comments";i:17;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(265, 0, 'theme_mods_twentyten', 'a:1:{i:0;b:0;}', 'yes'),
(161, 0, 'theme_mods_savinggrace', 'a:1:{i:0;b:0;}', 'yes'),
(162, 0, 'widget_woo_tabs', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(163, 0, 'widget_woo_adwidget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(164, 0, 'widget_woo_blogauthorinfo', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(165, 0, 'widget_woo_flickr', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(166, 0, 'widget_woo_search', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(167, 0, 'widget_woo_twitter', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(168, 0, 'widget_woo_subscribe', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(169, 0, 'widget_woo_archives', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(170, 0, 'woo_framework_version', '4.1.6', 'yes'),
(171, 0, 'woo_custom_seo_template', 'a:3:{i:0;a:5:{s:4:"name";s:10:"seo_info_1";s:3:"std";s:0:"";s:5:"label";s:4:"SEO ";s:4:"type";s:4:"info";s:4:"desc";s:234:"Additional SEO custom fields available: <strong>Custom Page Titles, Custom Descriptions, Custom Keywords</strong>. Go to <a href="http://localhost/originalhouse/wp-admin/admin.php?page=woothemes_seo">SEO Settings</a> page to activate.";}i:1;a:5:{s:4:"name";s:10:"seo_follow";s:3:"std";s:5:"false";s:5:"label";s:16:"SEO - Set follow";s:4:"type";s:8:"checkbox";s:4:"desc";s:77:"Make links from this post/page <strong>followable</strong> by search engines.";}i:2;a:5:{s:4:"name";s:11:"seo_noindex";s:3:"std";s:5:"false";s:5:"label";s:13:"SEO - Noindex";s:4:"type";s:8:"checkbox";s:4:"desc";s:56:"Set the Page/Post to not be indexed by a search engines.";}}', 'yes'),
(172, 0, 'woo_options', 'a:71:{s:18:"woo_alt_stylesheet";s:11:"default.css";s:8:"woo_logo";s:67:"http://localhost/originalhouse/wp-content/uploads/2011/06/logo2.gif";s:13:"woo_texttitle";s:5:"false";s:19:"woo_font_site_title";a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}s:11:"woo_tagline";s:5:"false";s:16:"woo_font_tagline";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:18:"woo_custom_favicon";s:0:"";s:20:"woo_google_analytics";s:0:"";s:12:"woo_feed_url";s:0:"";s:19:"woo_subscribe_email";s:0:"";s:21:"woo_contactform_email";s:0:"";s:14:"woo_custom_css";s:0:"";s:12:"woo_comments";s:4:"post";s:16:"woo_post_content";s:7:"excerpt";s:15:"woo_post_author";s:5:"false";s:20:"woo_breadcrumbs_show";s:4:"true";s:19:"woo_pagination_type";s:15:"paginated_links";s:14:"woo_body_color";s:7:"#000000";s:12:"woo_body_img";s:0:"";s:15:"woo_body_repeat";s:8:"repeat-y";s:12:"woo_body_pos";s:10:"top center";s:14:"woo_link_color";s:7:"#7f7875";s:20:"woo_link_hover_color";s:4:"#fff";s:16:"woo_button_color";s:7:"#7f7875";s:14:"woo_typography";s:4:"true";s:13:"woo_font_body";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:12:"woo_font_nav";a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}s:19:"woo_font_post_title";a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}s:18:"woo_font_post_meta";a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:19:"woo_font_post_entry";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:22:"woo_font_widget_titles";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}s:14:"woo_home_intro";s:58:"Si tu casa se parece a todas, nosotros no tenemos la culpa";s:10:"woo_slider";s:5:"false";s:18:"woo_slider_entries";s:2:"19";s:18:"woo_slider_content";s:5:"false";s:16:"woo_slider_speed";s:3:"500";s:15:"woo_slider_auto";s:4:"true";s:19:"woo_slider_interval";s:4:"6000";s:15:"woo_site_layout";s:11:"layout-full";s:22:"woo_post_image_support";s:4:"true";s:14:"woo_pis_resize";s:4:"true";s:17:"woo_pis_hard_crop";s:4:"true";s:10:"woo_resize";s:4:"true";s:12:"woo_auto_img";s:5:"false";s:11:"woo_thumb_w";s:3:"160";s:11:"woo_thumb_h";s:3:"160";s:15:"woo_thumb_align";s:9:"alignleft";s:16:"woo_thumb_single";s:4:"true";s:12:"woo_single_w";s:3:"200";s:12:"woo_single_h";s:3:"200";s:22:"woo_thumb_single_align";s:10:"alignright";s:13:"woo_rss_thumb";s:5:"false";s:17:"woo_footer_social";s:4:"true";s:19:"woo_footer_aff_link";s:0:"";s:15:"woo_footer_left";s:4:"true";s:20:"woo_footer_left_text";s:0:"";s:16:"woo_footer_right";s:4:"true";s:21:"woo_footer_right_text";s:0:"";s:11:"woo_connect";s:4:"true";s:17:"woo_connect_title";s:0:"";s:19:"woo_connect_content";s:0:"";s:25:"woo_connect_newsletter_id";s:0:"";s:15:"woo_connect_rss";s:4:"true";s:19:"woo_connect_twitter";s:37:"http://twitter.com/#!/originalhousesl";s:20:"woo_connect_facebook";s:81:"http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363";s:19:"woo_connect_blogger";s:42:"http://elblogdeoriginalhouse.blogspot.com/";s:19:"woo_connect_youtube";s:0:"";s:18:"woo_connect_flickr";s:0:"";s:20:"woo_connect_linkedin";s:0:"";s:21:"woo_connect_delicious";s:0:"";s:19:"woo_connect_related";s:5:"false";}', 'yes'),
(173, 0, 'woo_template', 'a:78:{i:0;a:3:{s:4:"name";s:16:"General Settings";s:4:"type";s:7:"heading";s:4:"icon";s:7:"general";}i:1;a:6:{s:4:"name";s:16:"Theme Stylesheet";s:4:"desc";s:44:"Select your themes alternative color scheme.";s:2:"id";s:18:"woo_alt_stylesheet";s:3:"std";s:11:"default.css";s:4:"type";s:6:"select";s:7:"options";a:5:{i:0;s:8:"blue.css";i:1;s:11:"default.css";i:2;s:9:"green.css";i:3;s:9:"light.css";i:4;s:7:"red.css";}}i:2;a:5:{s:4:"name";s:11:"Custom Logo";s:4:"desc";s:63:"Upload a logo for your theme, or specify an image URL directly.";s:2:"id";s:8:"woo_logo";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:3;a:6:{s:4:"name";s:10:"Text Title";s:4:"desc";s:158:"Enable text-based Site Title and Tagline. Setup title & tagline in <a href=''http://localhost/originalhouse/wp-admin/options-general.php''>General Settings</a>.";s:2:"id";s:13:"woo_texttitle";s:3:"std";s:5:"false";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:4;a:6:{s:4:"name";s:10:"Site Title";s:4:"desc";s:33:"Change the site title typography.";s:2:"id";s:19:"woo_font_site_title";s:3:"std";a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:8:"PT Serif";s:5:"style";s:4:"bold";s:5:"color";s:7:"#FFFFFF";}s:5:"class";s:6:"hidden";s:4:"type";s:10:"typography";}i:5;a:6:{s:4:"name";s:16:"Site Description";s:4:"desc";s:53:"Enable the site description/tagline under site title.";s:2:"id";s:11:"woo_tagline";s:5:"class";s:6:"hidden";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:6;a:6:{s:4:"name";s:16:"Site Description";s:4:"desc";s:39:"Change the site description typography.";s:2:"id";s:16:"woo_font_tagline";s:3:"std";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:0:"";s:5:"color";s:7:"#999999";}s:5:"class";s:11:"hidden last";s:4:"type";s:10:"typography";}i:7;a:5:{s:4:"name";s:14:"Custom Favicon";s:4:"desc";s:113:"Upload a 16px x 16px <a href=''http://www.faviconr.com/''>ico image</a> that will represent your website''s favicon.";s:2:"id";s:18:"woo_custom_favicon";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:8;a:5:{s:4:"name";s:13:"Tracking Code";s:4:"desc";s:117:"Paste your Google Analytics (or other) tracking code here. This will be added into the footer template of your theme.";s:2:"id";s:20:"woo_google_analytics";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:9;a:5:{s:4:"name";s:7:"RSS URL";s:4:"desc";s:51:"Enter your preferred RSS URL. (Feedburner or other)";s:2:"id";s:12:"woo_feed_url";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:10;a:5:{s:4:"name";s:23:"E-Mail Subscription URL";s:4:"desc";s:67:"Enter your preferred E-mail subscription URL. (Feedburner or other)";s:2:"id";s:19:"woo_subscribe_email";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:11;a:5:{s:4:"name";s:19:"Contact Form E-Mail";s:4:"desc";s:156:"Enter your E-mail address to use on the Contact Form Page Template. Add the contact form by adding a new page and selecting ''Contact Form'' as page template.";s:2:"id";s:21:"woo_contactform_email";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:12;a:5:{s:4:"name";s:10:"Custom CSS";s:4:"desc";s:62:"Quickly add some CSS to your theme by adding it to this block.";s:2:"id";s:14:"woo_custom_css";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:13;a:5:{s:4:"name";s:18:"Post/Page Comments";s:4:"desc";s:69:"Select if you want to enable/disable comments on posts and/or pages. ";s:2:"id";s:12:"woo_comments";s:4:"type";s:7:"select2";s:7:"options";a:4:{s:4:"post";s:10:"Posts Only";s:4:"page";s:10:"Pages Only";s:4:"both";s:13:"Pages / Posts";s:4:"none";s:4:"None";}}i:14;a:5:{s:4:"name";s:12:"Post Content";s:4:"desc";s:69:"Select if you want to show the full content or the excerpt on posts. ";s:2:"id";s:16:"woo_post_content";s:4:"type";s:7:"select2";s:7:"options";a:2:{s:7:"excerpt";s:11:"The Excerpt";s:7:"content";s:12:"Full Content";}}i:15;a:5:{s:4:"name";s:15:"Post Author Box";s:4:"desc";s:157:"This will enable the post author box on the single posts page. Edit description in <a href=''http://localhost/originalhouse/wp-admin/profile.php''>Profile</a>.";s:2:"id";s:15:"woo_post_author";s:3:"std";s:4:"true";s:4:
(325, 0, 'widget_dc_jqaccordion_widget', 'a:3:{i:2;a:0:{}i:3;a:14:{s:5:"title";s:0:"";s:8:"nav_menu";i:0;s:9:"autoClose";N;s:9:"menuClose";N;s:9:"saveState";N;s:10:"autoExpand";N;s:11:"disableLink";N;s:12:"classDisable";N;s:9:"classMenu";N;s:9:"showCount";N;s:5:"event";s:0:"";s:4:"skin";N;s:5:"speed";N;s:10:"hoverDelay";N;}s:12:"_multiwidget";i:1;}', 'yes'),
(326, 0, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(174, 0, 'woo_themename', 'Original House', 'yes'),
(175, 0, 'woo_shortname', 'woo', 'yes'),
(176, 0, 'woo_manual', '', 'yes'),
(177, 0, 'woo_custom_template', 'a:0:{}', 'yes'),
(178, 0, 'woo_alt_stylesheet', 'default.css', 'yes'),
(179, 0, 'woo_logo', 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo2.gif', 'yes'),
(180, 0, 'woo_texttitle', 'false', 'yes'),
(181, 0, 'woo_font_site_title', 'a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}', 'yes'),
(182, 0, 'woo_tagline', 'false', 'yes'),
(183, 0, 'woo_font_tagline', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(184, 0, 'woo_custom_favicon', '', 'yes'),
(185, 0, 'woo_google_analytics', '', 'yes'),
(186, 0, 'woo_feed_url', '', 'yes'),
(187, 0, 'woo_subscribe_email', '', 'yes'),
(188, 0, 'woo_contactform_email', '', 'yes'),
(189, 0, 'woo_custom_css', '', 'yes'),
(190, 0, 'woo_comments', 'post', 'yes'),
(191, 0, 'woo_post_content', 'excerpt', 'yes'),
(192, 0, 'woo_post_author', 'false', 'yes'),
(193, 0, 'woo_breadcrumbs_show', 'true', 'yes'),
(194, 0, 'woo_pagination_type', 'paginated_links', 'yes'),
(195, 0, 'woo_body_color', '#000000', 'yes'),
(196, 0, 'woo_body_img', '', 'yes'),
(197, 0, 'woo_body_repeat', 'repeat-y', 'yes'),
(198, 0, 'woo_body_pos', 'top center', 'yes'),
(199, 0, 'woo_link_color', '#7f7875', 'yes'),
(200, 0, 'woo_link_hover_color', '#fff', 'yes'),
(201, 0, 'woo_button_color', '#7f7875', 'yes'),
(202, 0, 'woo_typography', 'true', 'yes'),
(203, 0, 'woo_font_body', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(204, 0, 'woo_font_nav', 'a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}', 'yes'),
(205, 0, 'woo_font_post_title', 'a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}', 'yes'),
(206, 0, 'woo_font_post_meta', 'a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(207, 0, 'woo_font_post_entry', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(208, 0, 'woo_font_widget_titles', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}', 'yes'),
(209, 0, 'woo_home_intro', 'Si tu casa se parece a todas, nosotros no tenemos la culpa', 'yes'),
(210, 0, 'woo_slider', 'false', 'yes'),
(211, 0, 'woo_slider_entries', '19', 'yes'),
(212, 0, 'woo_slider_content', 'false', 'yes'),
(213, 0, 'woo_slider_speed', '500', 'yes'),
(214, 0, 'woo_slider_auto', 'true', 'yes'),
(215, 0, 'woo_slider_interval', '6000', 'yes'),
(216, 0, 'woo_site_layout', 'layout-full', 'yes'),
(217, 0, 'woo_donate_btn', 'false', 'yes'),
(218, 0, 'woo_donate_meter', 'false', 'yes'),
(219, 0, 'woo_donate_raised', '0', 'yes'),
(220, 0, 'woo_donate_target', '0', 'yes'),
(221, 0, 'woo_donate_currency', 'USD', 'yes'),
(222, 0, 'woo_donate_currency_symbol', '$', 'yes'),
(223, 0, 'woo_donate_title', '', 'yes'),
(224, 0, 'woo_donate_desc', '', 'yes'),
(225, 0, 'woo_donate_meter_large', 'true', 'yes'),
(226, 0, 'woo_donate_btn_text', 'Donate Now!', 'yes'),
(227, 0, 'woo_donate_customlink', '', 'yes'),
(228, 0, 'woo_donate_paypal', '', 'yes'),
(229, 0, 'woo_donate_amount', '', 'yes'),
(230, 0, 'woo_donate_more', 'Select a page:', 'yes'),
(231, 0, 'woo_post_image_support', 'true', 'yes'),
(232, 0, 'woo_pis_resize', 'true', 'yes'),
(233, 0, 'woo_pis_hard_crop', 'true', 'yes'),
(234, 0, 'woo_resize', 'true', 'yes'),
(235, 0, 'woo_auto_img', 'false', 'yes'),
(236, 0, 'woo_thumb_w', '160', 'yes'),
(237, 0, 'woo_thumb_h', '160', 'yes'),
(238, 0, 'woo_thumb_align', 'alignleft', 'yes'),
(239, 0, 'woo_thumb_single', 'true', 'yes'),
(240, 0, 'woo_single_w', '200', 'yes'),
(241, 0, 'woo_single_h', '200', 'yes'),
(242, 0, 'woo_thumb_single_align', 'alignright', 'yes'),
(243, 0, 'woo_rss_thumb', 'false', 'yes'),
(244, 0, 'woo_footer_social', 'true', 'yes'),
(245, 0, 'woo_footer_aff_link', '', 'yes'),
(246, 0, 'woo_footer_left', 'true', 'yes'),
(247, 0, 'woo_footer_left_text', '', 'yes'),
(248, 0, 'woo_footer_right', 'true', 'yes'),
(249, 0, 'woo_footer_right_text', '', 'yes'),
(250, 0, 'woo_connect', 'true', 'yes'),
(251, 0, 'woo_connect_title', '', 'yes'),
(252, 0, 'woo_connect_content', '', 'yes'),
(253, 0, 'woo_connect_newsletter_id', '', 'yes'),
(254, 0, 'woo_connect_rss', 'true', 'yes'),
(255, 0, 'woo_connect_twitter', 'http://twitter.com/#!/originalhousesl', 'yes'),
(256, 0, 'woo_connect_facebook', 'http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363', 'yes'),
(257, 0, 'woo_connect_youtube', '', 'yes'),
(258, 0, 'woo_connect_flickr', '', 'yes'),
(259, 0, 'woo_connect_linkedin', '', 'yes'),
(260, 0, 'woo_connect_delicious', '', 'yes'),
(261, 0, 'woo_connect_related', 'false', 'yes'),
(262, 0, 'woo_settings_encode', 'PHVsPjxsaT48c3Ryb25nPndvb19hbHRfc3R5bGVzaGVldDwvc3Ryb25nPiAtIGRlZmF1bHQuY3NzPC9saT48bGk+PHN0cm9uZz53b29fbG9nbzwvc3Ryb25nPiAtIGh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9sb2dvMi5naWY8L2xpPjxsaT48c3Ryb25nPndvb190ZXh0dGl0bGU8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfc2l0ZV90aXRsZTwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29fdGFnbGluZTwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9udF90YWdsaW5lPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19jdXN0b21fZmF2aWNvbjwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2dvb2dsZV9hbmFseXRpY3M8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19mZWVkX3VybDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX3N1YnNjcmliZV9lbWFpbDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2NvbnRhY3Rmb3JtX2VtYWlsPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY3VzdG9tX2Nzczwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2NvbW1lbnRzPC9zdHJvbmc+IC0gcG9zdDwvbGk+PGxpPjxzdHJvbmc+d29vX3Bvc3RfY29udGVudDwvc3Ryb25nPiAtIGV4Y2VycHQ8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2F1dGhvcjwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fYnJlYWRjcnVtYnNfc2hvdzwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19wYWdpbmF0aW9uX3R5cGU8L3N0cm9uZz4gLSBwYWdpbmF0ZWRfbGlua3M8L2xpPjxsaT48c3Ryb25nPndvb19ib2R5X2NvbG9yPC9zdHJvbmc+IC0gIzAwMDAwMDwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfaW1nPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fYm9keV9yZXBlYXQ8L3N0cm9uZz4gLSByZXBlYXQteTwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfcG9zPC9zdHJvbmc+IC0gdG9wIGNlbnRlcjwvbGk+PGxpPjxzdHJvbmc+d29vX2xpbmtfY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fbGlua19ob3Zlcl9jb2xvcjwvc3Ryb25nPiAtICNmZmY8L2xpPjxsaT48c3Ryb25nPndvb19idXR0b25fY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fdHlwb2dyYXBoeTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb250X2JvZHk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfbmF2PC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfdGl0bGU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfcG9zdF9tZXRhPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfZW50cnk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfd2lkZ2V0X3RpdGxlczwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29faG9tZV9pbnRybzwvc3Ryb25nPiAtIFNpIHR1IGNhc2Egc2UgcGFyZWNlIGEgdG9kYXMsIG5vc290cm9zIG5vIHRlbmVtb3MgbGEgY3VscGE8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXI8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3NsaWRlcl9lbnRyaWVzPC9zdHJvbmc+IC0gMTk8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXJfY29udGVudDwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX3NwZWVkPC9zdHJvbmc+IC0gNTAwPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2F1dG88L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2ludGVydmFsPC9zdHJvbmc+IC0gNjAwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpdGVfbGF5b3V0PC9zdHJvbmc+IC0gbGF5b3V0LWZ1bGw8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2ltYWdlX3N1cHBvcnQ8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fcGlzX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19waXNfaGFyZF9jcm9wPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19hdXRvX2ltZzwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfdzwvc3Ryb25nPiAtIDE2MDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX2g8L3N0cm9uZz4gLSAxNjA8L2xpPjxsaT48c3Ryb25nPndvb190aHVtYl9hbGlnbjwvc3Ryb25nPiAtIGFsaWdubGVmdDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX3NpbmdsZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19zaW5nbGVfdzwvc3Ryb25nPiAtIDIwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpbmdsZV9oPC9zdHJvbmc+IC0gMjAwPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfc2luZ2xlX2FsaWduPC9zdHJvbmc+IC0gYWxpZ25yaWdodDwvbGk+PGxpPjxzdHJvbmc+d29vX3Jzc190aHVtYjwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3NvY2lhbDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfYWZmX2xpbms8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdF90ZXh0PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3JpZ2h0PC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX2Zvb3Rlcl9yaWdodF90ZXh0PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X3RpdGxlPC
(322, 0, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1309378052', 'yes'),
(323, 0, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:40:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"2477";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"1672";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"1488";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"1249";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"1237";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"1202";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:3:"881";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:3:"809";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:3:"778";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:3:"758";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:3:"739";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:3:"686";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:3:"675";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:3:"600";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"530";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:3:"517";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:3:"445";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:3:"443";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"439";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:3:"430";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:3:"428";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:3:"400";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:3:"389";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:3:"379";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"373";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"355";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"354";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"354";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"350";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:3:"345";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:3:"345";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"340";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"328";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"318";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"312";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"309";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"301";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"289";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"289";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"283";}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(268, 0, 'woo_framework_template', 'a:20:{i:0;a:3:{s:4:"name";s:18:"Framework Settings";s:4:"icon";s:7:"general";s:4:"type";s:7:"heading";}i:1;a:6:{s:4:"name";s:21:"Super User (username)";s:4:"desc";s:251:"Enter your <strong>username</strong> to hide the Framework Settings and Update Framework from other users. Can be reset from the <a href=''http://localhost/originalhouse/wp-admin/options.php''>WP options page</a> under <em>framework_woo_super_user</em>.";s:2:"id";s:24:"framework_woo_super_user";s:3:"std";s:0:"";s:5:"class";s:4:"text";s:4:"type";s:4:"text";}i:2;a:5:{s:4:"name";s:21:"Disable SEO Menu Item";s:4:"desc";s:61:"Disable the <strong>SEO</strong> menu item in the theme menu.";s:2:"id";s:25:"framework_woo_seo_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:3;a:5:{s:4:"name";s:33:"Disable Sidebar Manager Menu Item";s:4:"desc";s:73:"Disable the <strong>Sidebar Manager</strong> menu item in the theme menu.";s:2:"id";s:25:"framework_woo_sbm_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:4;a:5:{s:4:"name";s:28:"Disable Buy Themes Menu Item";s:4:"desc";s:68:"Disable the <strong>Buy Themes</strong> menu item in the theme menu.";s:2:"id";s:32:"framework_woo_buy_themes_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:5;a:5:{s:4:"name";s:24:"Enable Custom Navigation";s:4:"desc";s:187:"Enable the old <strong>Custom Navigation</strong> menu item. Try to use <a href=''http://localhost/originalhouse/wp-admin/nav-menus.php''>WP Menus</a> instead, as this function is outdated.";s:2:"id";s:20:"framework_woo_woonav";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:6;a:5:{s:4:"name";s:25:"Theme Update Notification";s:4:"desc";s:101:"This will enable notices on your theme options page that there is an update available for your theme.";s:2:"id";s:35:"framework_woo_theme_version_checker";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:7;a:5:{s:4:"name";s:29:"Disable Shortcodes Stylesheet";s:4:"desc";s:76:"This disables the output of shortcodes.css in the HEAD section of your site.";s:2:"id";s:32:"framework_woo_disable_shortcodes";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:8;a:5:{s:4:"name";s:26:"Remove Generator Meta Tags";s:4:"desc";s:81:"This disables the output of generator meta tags in the HEAD section of your site.";s:2:"id";s:31:"framework_woo_disable_generator";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:9;a:5:{s:4:"name";s:17:"Image Placeholder";s:4:"desc";s:151:"Set a default image placeholder for your thumbnails. Use this if you want a default image to be shown if you haven''t added a custom image to your post.";s:2:"id";s:27:"framework_woo_default_image";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:10;a:3:{s:4:"name";s:8:"Branding";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:11;a:5:{s:4:"name";s:20:"Options panel header";s:4:"desc";s:50:"Change the header image for the WooThemes Backend.";s:2:"id";s:34:"framework_woo_backend_header_image";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:12;a:5:{s:4:"name";s:18:"Options panel icon";s:4:"desc";s:56:"Change the icon image for the WordPress backend sidebar.";s:2:"id";s:26:"framework_woo_backend_icon";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:13;a:5:{s:4:"name";s:20:"WordPress login logo";s:4:"desc";s:51:"Change the logo image for the WordPress login page.";s:2:"id";s:31:"framework_woo_custom_login_logo";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:14;a:3:{s:4:"name";s:15:"Import / Export";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:15;a:5:{s:4:"name";s:14:"Import Options";s:4:"desc";s:59:"Import the options from another installation of this theme.";s:2:"id";s:28:"framework_woo_import_options";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:16;a:5:{s:4:"name";s:14:"Export Options";s:4:"desc";s:94:"Export the options to another installation of this theme, or to keep a backup of your options.";s:2:"id";s:28:"framework_woo_export_options";s:3:"std";s:5708:"YTo4NTp7czoxODoid29vX2FsdF9zdHlsZXNoZWV0IjtzOjExOiJkZWZhdWx0LmNzcyI7czo4OiJ3b29fbG9nbyI7czowOiIiO3M6MTM6Indvb190ZXh0dGl0bGUiO3M6NDoidHJ1ZSI7czoxOToid29vX2ZvbnRfc2l0ZV90aXRsZSI7czoxMjE6ImE6NTp7czo0OiJzaX
(267, 0, 'theme_mods_originalhouse', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:4:{s:12:"primary-menu";i:6;s:14:"secondary-menu";i:7;s:8:"top-menu";i:0;s:11:"footer-menu";i:0;}}', 'yes'),
(269, 0, 'sbm_woo_sbm_options', 'a:2:{s:8:"sidebars";a:0:{}s:8:"settings";a:1:{s:7:"infobox";s:4:"show";}}', 'yes'),
(270, 0, 'framework_woo_super_user', 'rodax', 'yes'),
(271, 0, 'framework_woo_seo_disable', 'false', 'yes'),
(272, 0, 'framework_woo_sbm_disable', 'true', 'yes'),
(273, 0, 'framework_woo_buy_themes_disable', 'true', 'yes'),
(274, 0, 'framework_woo_woonav', 'false', 'yes'),
(275, 0, 'framework_woo_theme_version_checker', 'true', 'yes'),
(276, 0, 'framework_woo_disable_shortcodes', 'false', 'yes'),
(277, 0, 'framework_woo_disable_generator', 'false', 'yes'),
(278, 0, 'framework_woo_default_image', '', 'yes'),
(279, 0, 'framework_woo_backend_header_image', '', 'yes'),
(280, 0, 'framework_woo_backend_icon', '', 'yes'),
(281, 0, 'framework_woo_custom_login_logo', '', 'yes'),
(285, 0, 'woo_seo_template', 'a:31:{i:0;a:3:{s:4:"name";s:16:"General Settings";s:4:"icon";s:7:"general";s:4:"type";s:7:"heading";}i:1;a:3:{s:4:"name";s:11:"Please Read";s:4:"type";s:4:"info";s:3:"std";s:399:"Welcome to the WooSEO feature. <br /><small>Here we help you take control of your search engine readiness with some in-built theme options. Our themes do however support some of WordPress.org''s most commonly used SEO plugins - <strong>All-in-One SEO Pack</strong>, <strong>Headspace 2</strong> and <strong>WordPress SEO By Yoast</strong>. Use the checkbox below to use 3rd party plugin data.</small>";}i:2;a:5:{s:4:"name";s:25:"Use 3rd Party Plugin Data";s:4:"desc";s:198:"Meta data added to <strong>custom fields in posts and pages</strong> will be extracted and used where applicable. This typically does not include Homepages and Archives, and only Singular templates.";s:2:"id";s:28:"seo_woo_use_third_party_data";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:3;a:5:{s:4:"name";s:22:"Hide SEO custom fields";s:4:"desc";s:82:"Check this box to hide the input fields created in the post and page edit screens.";s:2:"id";s:19:"seo_woo_hide_fields";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:4;a:3:{s:4:"name";s:10:"Page Title";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:5;a:5:{s:4:"name";s:9:"Separator";s:4:"desc";s:54:"Define a new separator character for your page titles.";s:2:"id";s:17:"seo_woo_seperator";s:3:"std";s:1:"|";s:4:"type";s:4:"text";}i:6;a:5:{s:4:"name";s:10:"Blog Title";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:8:"blogname";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:7;a:5:{s:4:"name";s:16:"Blog Description";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:15:"blogdescription";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:8;a:6:{s:4:"name";s:18:"Enable woo_title()";s:4:"desc";s:153:"woo_title() makes use of WordPress''s built in wp_title() function to control the output for your page titles. It''s also recommended for use with plugins.";s:2:"id";s:16:"seo_woo_wp_title";s:3:"std";s:5:"false";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:9;a:6:{s:4:"name";s:21:"Disable Custom Titles";s:4:"desc";s:130:"If you prefer to have uniform titles across you theme. Alternatively they will be generated from custom fields and/or plugin data.";s:2:"id";s:29:"seo_woo_wp_custom_field_title";s:3:"std";s:5:"false";s:5:"class";s:6:"hidden";s:4:"type";s:8:"checkbox";}i:10;a:6:{s:4:"name";s:14:"Paged Variable";s:4:"desc";s:64:"The name variable that will appear then paging through archives.";s:2:"id";s:17:"seo_woo_paged_var";s:3:"std";s:4:"Page";s:5:"class";s:6:"hidden";s:4:"type";s:4:"text";}i:11;a:7:{s:4:"name";s:23:"Paged Variable Position";s:4:"desc";s:57:"Change the position where the paged variable will appear.";s:2:"id";s:21:"seo_woo_paged_var_pos";s:3:"std";s:6:"before";s:5:"class";s:6:"hidden";s:7:"options";a:2:{s:6:"before";s:6:"Before";s:5:"after";s:5:"After";}s:4:"type";s:7:"select2";}i:12;a:7:{s:4:"name";s:21:"Homepage Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_home_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:3:{s:1:"a";s:28:"Blog title; blog description";s:1:"b";s:10:"Blog title";s:1:"c";s:16:"Blog description";}s:4:"type";s:7:"select2";}i:13;a:7:{s:4:"name";s:19:"Single Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:21:"seo_woo_single_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:5:{s:1:"a";s:22:"Page title; Blog title";s:1:"b";s:11:"Page title;";s:1:"c";s:23:"Blog title; Page title;";s:1:"d";s:28:"Page title; Blog description";s:1:"e";s:40:"Blog title; Page title; Blog description";}s:4:"type";s:7:"select2";}i:14;a:7:{s:4:"name";s:17:"Page Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_page_layout"
(283, 0, 'framework_woo_admin_bar_disable', 'false', 'yes'),
(284, 0, 'framework_woo_admin_bar_enhancements', 'true', 'yes'),
(286, 0, 'seo_woo_use_third_party_data', 'false', 'yes'),
(287, 0, 'seo_woo_hide_fields', 'false', 'yes'),
(288, 0, 'seo_woo_seperator', '|', 'yes'),
(289, 0, 'seo_woo_wp_title', 'false', 'yes'),
(290, 0, 'seo_woo_wp_custom_field_title', 'false', 'yes'),
(291, 0, 'seo_woo_paged_var', 'Page', 'yes'),
(292, 0, 'seo_woo_paged_var_pos', 'before', 'yes'),
(293, 0, 'seo_woo_home_layout', 'a', 'yes'),
(294, 0, 'seo_woo_single_layout', 'a', 'yes'),
(295, 0, 'seo_woo_page_layout', 'a', 'yes'),
(296, 0, 'seo_woo_archive_layout', 'a', 'yes'),
(297, 0, 'seo_woo_meta_indexing_category', 'true', 'yes'),
(298, 0, 'seo_woo_meta_indexing_tag', 'false', 'yes'),
(299, 0, 'seo_woo_meta_indexing_author', 'false', 'yes'),
(300, 0, 'seo_woo_meta_indexing_search', 'false', 'yes'),
(301, 0, 'seo_woo_meta_indexing_date', 'false', 'yes'),
(302, 0, 'seo_woo_meta_single_follow', 'false', 'yes'),
(303, 0, 'seo_woo_meta_home_desc', 'a', 'yes'),
(304, 0, 'seo_woo_meta_home_desc_custom', '', 'yes'),
(305, 0, 'seo_woo_meta_single_desc', 'a', 'yes'),
(306, 0, 'seo_woo_meta_single_desc_sitewide', 'false', 'yes'),
(307, 0, 'seo_woo_meta_single_desc_custom', '', 'yes'),
(308, 0, 'seo_woo_meta_home_key', 'a', 'yes'),
(309, 0, 'seo_woo_meta_home_key_custom', '', 'yes'),
(310, 0, 'seo_woo_meta_single_key', 'a', 'yes'),
(311, 0, 'seo_woo_meta_single_key_sitewide', 'false', 'yes'),
(312, 0, 'seo_woo_meta_single_key_custom', '', 'yes'),
(320, 0, 'custpostback_db_version', '', 'yes'),
(321, 0, 'custBack_resultspp', '10', 'yes'),
(313, 0, 'woo_connect_blogger', 'http://elblogdeoriginalhouse.blogspot.com/', 'yes'),
(330, 0, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1309422370;s:7:"checked";a:8:{s:19:"akismet/akismet.php";s:5:"2.5.3";s:21:"catablog/catablog.php";s:7:"1.2.9.7";s:43:"custom-post-background/custom-post-back.php";s:7:"1.3.1.0";s:9:"hello.php";s:3:"1.6";s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";s:3:"2.6";s:51:"make-filename-lowercase/make-filename-lowercase.php";s:5:"1.0.0";s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";s:5:"1.0.2";s:20:"sticky_menu/init.php";s:3:"0.1";}s:8:"response";a:0:{}}', 'yes'),
(314, 0, 'woo_custom_upload_tracking', 'a:0:{}', 'yes');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_postmeta`
--
CREATE TABLE IF NOT EXISTS `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=257 ;
--
-- Volcar la base de datos para la tabla `wp_postmeta`
--
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1, 2, '_wp_page_template', 'default'),
(26, 33, '_wp_attached_file', '2011/06/1portada.jpg'),
(27, 33, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"470";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:20:"2011/06/1portada.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"1portada-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"1portada-300x235.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"235";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(219, 106, '_wp_attached_file', '2011/06/logo2.gif'),
(217, 105, '_wp_attached_file', '2011/06/logo.gif'),
(218, 105, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:16:"2011/06/logo.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:15:"logo-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:15:"logo-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(22, 26, '_wp_attached_file', '2011/06/pattern.jpg'),
(23, 26, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1780";s:6:"height";s:3:"302";s:14:"hwstring_small";s:23:"height=''21'' width=''128''";s:4:"file";s:19:"2011/06/pattern.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"pattern-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"pattern-300x50.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"50";}s:5:"large";a:3:{s:4:"file";s:20:"pattern-1024x173.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"173";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(21, 22, 'catablog-post-meta', 'a:5:{s:5:"image";s:34:"ACRO 66ML - 85x130x45 697€-2.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(20, 21, 'catablog-post-meta', 'a:5:{s:5:"image";s:29:"ACRO-30A-90x150x45-649€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(19, 20, 'catablog-post-meta', 'a:5:{s:5:"image";s:32:"ACRO 66ML - 85x130x45 697€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(28, 34, '_wp_attached_file', '2011/06/2-.jpg'),
(29, 34, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"395";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:14:"2011/06/2-.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:14:"2--150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:14:"2--300x197.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(30, 35, '_wp_attached_file', '2011/06/3-la-tienda.jpg'),
(31, 35, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1600";s:6:"height";s:4:"1200";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:23:"2011/06/3-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"3-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"3-la-tienda-300x225.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"225";}s:5:"large";a:3:{s:4:"file";s:24:"3-la-tienda-1024x768.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(32, 36, '_wp_attached_file', '2011/06/3-muebles.jpg'),
(33, 36, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/3-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"3-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"3-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(34, 37, '_wp_attached_file', '2011/06/4-servicios.jpg'),
(35, 37, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"484";s:14:"hwstring_small";s:23:"height=''96'' width=''119''";s:4:"file";s:23:"2011/06/4-servicios.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"4-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"4-servicios-300x242.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"242";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(36, 38, '_wp_attached_file', '2011/06/5-ideas-y-consejos.jpg'),
(37, 38, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"429";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:30:"2011/06/5-ideas-y-consejos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-300x214.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"214";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(38, 39, '_wp_attached_file', '2011/06/7-productos.jpg'),
(39, 39, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"431";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:23:"2011/06/7-productos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"7-productos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"7-productos-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(40, 40, '_wp_attached_file', '2011/06/8-muebles.jpg'),
(41, 40, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/8-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"8-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"8-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(42, 41, '_wp_attached_file', '2011/06/9-mesas.jpg'),
(43, 41, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"469";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:19:"2011/06/9-mesas.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"9-mesas-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"9-mesas-300x234.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"234";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(44, 42, '_wp_attached_file', '2011/06/10-mesas-comedor.jpg'),
(45, 42, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"597";s:6:"height";s:3:"423";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:28:"2011/06/10-mesas-comedor.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:28:"10-mesas-comedor-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:28:"10-mesas-comedor-300x212.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"212";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(46, 43, '_wp_attached_file', '2011/06/11-mesas-de-centro-001.jpg'),
(47, 43, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"452";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:34:"2011/06/11-mesas-de-centro-001.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(48, 32, '_edit_last', '1'),
(49, 32, 'image', 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg'),
(50, 32, 'seo_follow', 'false'),
(51, 32, 'seo_noindex', 'false'),
(52, 32, '_edit_lock', '1309359498:1'),
(53, 44, '_edit_last', '1'),
(54, 44, '_edit_lock', '1309365245:1'),
(55, 45, '_wp_attached_file', '2011/06/fondo-inicio.jpg'),
(56, 45, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:24:"2011/06/fondo-inicio.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:24:"fondo-inicio-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:24:"fondo-inicio-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:25:"fondo-inicio-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(61, 57, '_edit_last', '1'),
(58, 44, '_wp_page_template', 'template-fullwidth.php'),
(59, 44, 'seo_follow', 'false'),
(60, 44, 'seo_noindex', 'false'),
(62, 57, '_edit_lock', '1309365223:1'),
(63, 57, '_wp_page_template', 'default'),
(64, 57, 'seo_follow', 'false'),
(65, 57, 'seo_noindex', 'false'),
(66, 60, '_menu_item_type', 'post_type'),
(67, 60, '_menu_item_menu_item_parent', '0'),
(68, 60, '_menu_item_object_id', '44'),
(69, 60, '_menu_item_object', 'page'),
(70, 60, '_menu_item_target', ''),
(71, 60, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(72, 60, '_menu_item_xfn', ''),
(73, 60, '_menu_item_url', ''),
(75, 61, '_edit_last', '1'),
(76, 61, '_edit_lock', '1309436957:1'),
(77, 62, '_wp_attached_file', '2011/06/fondo-la-tienda.jpg'),
(78, 62, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-la-tienda-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-la-tienda-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(79, 63, '_wp_attached_file', '2011/06/fondo-localizanos.jpg'),
(80, 63, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:29:"2011/06/fondo-localizanos.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"fondo-localizanos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"fondo-localizanos-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:30:"fondo-localizanos-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(81, 64, '_wp_attached_file', '2011/06/fondo-servicios.jpg'),
(82, 64, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-servicios.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-servicios-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-servicios-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(83, 61, '_wp_page_template', 'template-fullwidth.php'),
(84, 61, 'seo_follow', 'false'),
(85, 61, 'seo_noindex', 'false'),
(86, 69, '_menu_item_type', 'post_type'),
(87, 69, '_menu_item_menu_item_parent', '0'),
(88, 69, '_menu_item_object_id', '61'),
(89, 69, '_menu_item_object', 'page'),
(90, 69, '_menu_item_target', ''),
(91, 69, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(92, 69, '_menu_item_xfn', ''),
(93, 69, '_menu_item_url', ''),
(95, 57, '_wp_trash_meta_status', 'publish'),
(96, 57, '_wp_trash_meta_time', '1309371228'),
(97, 2, '_wp_trash_meta_status', 'publish'),
(98, 2, '_wp_trash_meta_time', '1309371228'),
(255, 111, '_menu_item_url', ''),
(254, 111, '_menu_item_xfn', ''),
(108, 76, '_menu_item_type', 'post_type'),
(109, 76, '_menu_item_menu_item_parent', '0'),
(110, 76, '_menu_item_object_id', '44'),
(111, 76, '_menu_item_object', 'page'),
(112, 76, '_menu_item_target', ''),
(113, 76, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(114, 76, '_menu_item_xfn', ''),
(115, 76, '_menu_item_url', ''),
(253, 111, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(252, 111, '_menu_item_target', ''),
(251, 111, '_menu_item_object', 'category'),
(250, 111, '_menu_item_object_id', '1'),
(166, 82, 'seo_noindex', 'false'),
(249, 111, '_menu_item_menu_item_parent', '0'),
(248, 111, '_menu_item_type', 'taxonomy'),
(246, 110, '_menu_item_url', ''),
(245, 110, '_menu_item_xfn', ''),
(244, 110, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(165, 82, 'seo_follow', 'false'),
(243, 110, '_menu_item_target', ''),
(242, 110, '_menu_item_object', 'category'),
(241, 110, '_menu_item_object_id', '1'),
(239, 110, '_menu_item_type', 'taxonomy'),
(164, 82, '_wp_page_template', 'default'),
(163, 82, '_edit_lock', '1309377341:1'),
(153, 81, '_menu_item_type', 'taxonomy'),
(154, 81, '_menu_item_menu_item_parent', '0'),
(155, 81, '_menu_item_object_id', '1'),
(156, 81, '_menu_item_object', 'category'),
(157, 81, '_menu_item_target', ''),
(158, 81, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(159, 81, '_menu_item_xfn', ''),
(160, 81, '_menu_item_url', ''),
(162, 82, '_edit_last', '1'),
(214, 103, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:17:"2011/06/logo1.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"logo1-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:16:"logo1-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(213, 103, '_wp_attached_file', '2011/06/logo1.gif'),
(176, 88, '_edit_last', '1'),
(177, 88, '_edit_lock', '1309377614:1'),
(178, 88, '_wp_page_template', 'template-contact.php'),
(179, 88, 'seo_follow', 'false'),
(180, 88, 'seo_noindex', 'false'),
(181, 90, '_menu_item_type', 'post_type'),
(182, 90, '_menu_item_menu_item_parent', '0'),
(183, 90, '_menu_item_object_id', '88'),
(184, 90, '_menu_item_object', 'page'),
(185, 90, '_menu_item_target', ''),
(186, 90, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(187, 90, '_menu_item_xfn', ''),
(188, 90, '_menu_item_url', ''),
(190, 96, '_edit_last', '1'),
(191, 96, '_edit_lock', '1309378399:1'),
(192, 96, '_wp_page_template', 'template-fullwidth.php'),
(193, 96, 'seo_follow', 'false'),
(194, 96, 'seo_noindex', 'false'),
(240, 110, '_menu_item_menu_item_parent', '0'),
(220, 106, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:17:"2011/06/logo2.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"logo2-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:16:"logo2-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_posts`
--
CREATE TABLE IF NOT EXISTS `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=113 ;
--
-- Volcar la base de datos para la tabla `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Bienvenido a WordPress. Esta es tu primera entrada. Edítala o bórrala, ¡y comienza a publicar!.', '¡Hola mundo!', '', 'publish', 'open', 'open', '', 'hola-mundo', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 0, 'http://localhost/originalhouse/?p=1', 0, 'post', '', 1),
(2, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'trash', 'open', 'open', '', 'pagina-ejemplo', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=2', 0, 'page', '', 0),
(3, 1, '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?p=3', 0, 'post', '', 0),
(36, 1, '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', '3 MUEBLES', '', 'inherit', 'open', 'open', '', '3-muebles', '', '', '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(34, 1, '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', '2', '', 'inherit', 'open', 'open', '', '2', '', '', '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/2-.jpg', 0, 'attachment', 'image/jpeg', 0),
(35, 1, '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', '3 LA TIENDA', '', 'inherit', 'open', 'open', '', '3-la-tienda', '', '', '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(33, 1, '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', '1PORTADA', '', 'inherit', 'open', 'open', '', '1portada', '', '', '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg', 0, 'attachment', 'image/jpeg', 0),
(106, 1, '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-3', '', '', '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo2.gif', 0, 'attachment', 'image/gif', 0),
(32, 1, '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', '1', '', 'publish', 'closed', 'closed', '', '1', '', '', '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', 0, 'http://localhost/originalhouse/?post_type=slide&#038;p=32', 0, 'slide', '', 0),
(30, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Custom Login Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_custom_login_logo', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=30', 0, 'wooframework', '', 0),
(29, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Icon', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_icon', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=29', 0, 'wooframework', '', 0),
(28, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Header Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_header_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=28', 0, 'wooframework', '', 0),
(27, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Default Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_default_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=27', 0, 'wooframework', '', 0),
(25, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Body Img', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_body_img', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=25', 0, 'wooframework', '', 0),
(26, 1, '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 'pattern', '', 'inherit', 'open', 'open', '', 'pattern', '', '', '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 25, 'http://localhost/originalhouse/wp-content/uploads/2011/06/pattern.jpg', 0, 'attachment', 'image/jpeg', 0),
(24, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Custom Favicon', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_custom_favicon', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=24', 0, 'wooframework', '', 0),
(23, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_logo', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=23', 0, 'wooframework', '', 0),
(22, 1, '2011-06-28 17:15:03', '2011-06-28 17:15:03', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e-2', '', '', '2011-06-28 17:15:08', '2011-06-28 17:15:08', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e-2', 1, 'catablog-items', '', 0),
(21, 1, '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 'ACRO 30A 90x150x45 649€', '', 'publish', 'closed', 'open', '', 'acro-30a-90x150x45-649e', '', '', '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-30a-90x150x45-649e', 1, 'catablog-items', '', 0),
(20, 1, '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e', '', '', '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e', 1, 'catablog-items', '', 0),
(37, 1, '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', '4 SERVICIOS', '', 'inherit', 'open', 'open', '', '4-servicios', '', '', '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/4-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(38, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '5 IDEAS Y CONSEJOS', '', 'inherit', 'open', 'open', '', '5-ideas-y-consejos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/5-ideas-y-consejos.jpg', 0, 'attachment', 'image/jpeg', 0),
(39, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '7 PRODUCTOS', '', 'inherit', 'open', 'open', '', '7-productos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/7-productos.jpg', 0, 'attachment', 'image/jpeg', 0),
(40, 1, '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', '8 MUEBLES', '', 'inherit', 'open', 'open', '', '8-muebles', '', '', '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/8-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(41, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '9 MESAS', '', 'inherit', 'open', 'open', '', '9-mesas', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/9-mesas.jpg', 0, 'attachment', 'image/jpeg', 0),
(42, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '10 MESAS COMEDOR', '', 'inherit', 'open', 'open', '', '10-mesas-comedor', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/10-mesas-comedor.jpg', 0, 'attachment', 'image/jpeg', 0),
(43, 1, '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', '11 MESAS DE CENTRO 001', '', 'inherit', 'open', 'open', '', '11-mesas-de-centro-001', '', '', '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/11-mesas-de-centro-001.jpg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'publish', 'open', 'open', '', 'inicio', '', '', '2011-06-29 16:34:05', '2011-06-29 16:34:05', '', 0, 'http://localhost/originalhouse/?page_id=44', 0, 'page', '', 0),
(45, 1, '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 'fondo-inicio', '', 'inherit', 'open', 'open', '', 'fondo-inicio', '', '', '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 0, 'attachment', 'image/jpeg', 0),
(46, 1, '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision', '', '', '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 44, 'http://localhost/originalhouse/?p=46', 0, 'revision', '', 0),
(47, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-2', '', '', '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 44, 'http://localhost/originalhouse/?p=47', 0, 'revision', '', 0),
(48, 1, '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-3', '', '', '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 44, 'http://localhost/originalhouse/?p=48', 0, 'revision', '', 0),
(49, 1, '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-4', '', '', '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 44, 'http://localhost/originalhouse/?p=49', 0, 'revision', '', 0),
(50, 1, '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-5', '', '', '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 44, 'http://localhost/originalhouse/?p=50', 0, 'revision', '', 0),
(51, 1, '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-6', '', '', '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 44, 'http://localhost/originalhouse/?p=51', 0, 'revision', '', 0),
(52, 1, '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-7', '', '', '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 44, 'http://localhost/originalhouse/?p=52', 0, 'revision', '', 0),
(53, 1, '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-8', '', '', '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 44, 'http://localhost/originalhouse/?p=53', 0, 'revision', '', 0),
(54, 1, '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-9', '', '', '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 44, 'http://localhost/originalhouse/?p=54', 0, 'revision', '', 0),
(55, 1, '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-10', '', '', '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 44, 'http://localhost/originalhouse/?p=55', 0, 'revision', '', 0),
(56, 1, '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-11', '', '', '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 44, 'http://localhost/originalhouse/?p=56', 0, 'revision', '', 0),
(57, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'trash', 'open', 'open', '', 'dsadsa', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=57', 0, 'page', '', 0),
(58, 1, '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision', '', '', '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 57, 'http://localhost/originalhouse/?p=58', 0, 'revision', '', 0),
(59, 1, '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-12', '', '', '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 44, 'http://localhost/originalhouse/?p=59', 0, 'revision', '', 0),
(60, 1, '2011-06-29 17:13:45', '2011-06-29 17:13:45', ' ', '', '', 'publish', 'open', 'open', '', '60', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=60', 1, 'nav_menu_item', '', 0),
(61, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'publish', 'open', 'open', '', 'acerca-de', '', '', '2011-06-30 12:29:16', '2011-06-30 12:29:16', '', 0, 'http://localhost/originalhouse/?page_id=61', 0, 'page', '', 0),
(62, 1, '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 'fondo-la-tienda', '', 'inherit', 'open', 'open', '', 'fondo-la-tienda', '', '', '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(63, 1, '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 'fondo-localizanos', '', 'inherit', 'open', 'open', '', 'fondo-localizanos', '', '', '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 0, 'attachment', 'image/jpeg', 0),
(64, 1, '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 'fondo-servicios', '', 'inherit', 'open', 'open', '', 'fondo-servicios', '', '', '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(65, 1, '2011-06-29 17:15:34', '2011-06-29 17:15:34', 'LA TIENDA\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\n\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\n\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\n\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\n\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\nORIGINAL HOUSE\n\nBIENVENIDOS\n\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision', '', '', '2011-06-29 17:15:34', '2011-06-29 17:15:34', '', 61, 'http://localhost/originalhouse/?p=65', 0, 'revision', '', 0),
(66, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', 'LA TIENDA\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision-2', '', '', '2011-06-29 17:17:15', '2011-06-29 17:17:15', '', 61, 'http://localhost/originalhouse/?p=66', 0, 'revision', '', 0),
(67, 1, '2011-06-29 17:17:27', '2011-06-29 17:17:27', '&nbsp;\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-3', '', '', '2011-06-29 17:17:27', '2011-06-29 17:17:27', '', 61, 'http://localhost/originalhouse/?p=67', 0, 'revision', '', 0),
(68, 1, '2011-06-29 17:18:13', '2011-06-29 17:18:13', '<blockquote>\r\n· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-4', '', '', '2011-06-29 17:18:13', '2011-06-29 17:18:13', '', 61, 'http://localhost/originalhouse/?p=68', 0, 'revision', '', 0),
(69, 1, '2011-06-29 17:19:01', '2011-06-29 17:19:01', '· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A\r\n\r\nBIENVENIDOS\r\n ', '', '', 'publish', 'open', 'open', '', '69', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=69', 2, 'nav_menu_item', '', 0),
(70, 1, '2011-06-30 12:30:18', '2011-06-30 12:30:18', '<ul>\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\n</ul>\n<p style="text-align: center;">&nbsp;</p>\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\n\n<h1 style="text-align: center;">BIENVENIDOS</h1>\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-autosave', '', '', '2011-06-30 12:30:18', '2011-06-30 12:30:18', '', 61, 'http://localhost/originalhouse/?p=70', 0, 'revision', '', 0),
(71, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision-2', '', '', '2011-06-29 16:33:42', '2011-06-29 16:33:42', '', 57, 'http://localhost/originalhouse/?p=71', 0, 'revision', '', 0),
(72, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'inherit', 'open', 'open', '', '2-revision', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 2, 'http://localhost/originalhouse/?p=72', 0, 'revision', '', 0),
(73, 1, '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?page_id=73', 0, 'page', '', 0),
(74, 1, '2011-06-29 17:18:28', '2011-06-29 17:18:28', '<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-5', '', '', '2011-06-29 17:18:28', '2011-06-29 17:18:28', '', 61, 'http://localhost/originalhouse/?p=74', 0, 'revision', '', 0),
(76, 1, '2011-06-29 18:58:49', '2011-06-29 18:58:49', ' ', 'Catálogo', '', 'publish', 'open', 'open', '', '76', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=76', 1, 'nav_menu_item', '', 0),
(111, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Youtube', '', 'publish', 'closed', 'open', '', 'youtube-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=111', 4, 'nav_menu_item', '', 0),
(81, 1, '2011-06-29 18:59:31', '2011-06-29 18:59:31', ' ', 'Proyectos', '', 'publish', 'open', 'open', '', '81', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=81', 2, 'nav_menu_item', '', 0),
(110, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Cartelera', '', 'publish', 'closed', 'open', '', 'cartelera-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=110', 3, 'nav_menu_item', '', 0),
(82, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'publish', 'closed', 'open', '', 'servicios', '', '', '2011-06-29 19:55:41', '2011-06-29 19:55:41', '', 0, 'http://localhost/originalhouse/?page_id=82', 0, 'page', '', 0),
(83, 1, '2011-06-29 19:55:22', '2011-06-29 19:55:22', 'ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\nREFORMA DE INTERIORES.\nTRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\nESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\nROTACIÓN CONSTANTE DE ARTÍCULOS.\nFINANCIACIÓN A 6 MESES SIN INTERESES.\nESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision', '', '', '2011-06-29 19:55:22', '2011-06-29 19:55:22', '', 82, 'http://localhost/originalhouse/?p=83', 0, 'revision', '', 0),
(84, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision-2', '', '', '2011-06-29 19:55:26', '2011-06-29 19:55:26', '', 82, 'http://localhost/originalhouse/?p=84', 0, 'revision', '', 0),
(102, 1, '2011-06-29 20:08:37', '2011-06-29 20:08:37', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-10', '', '', '2011-06-29 20:08:37', '2011-06-29 20:08:37', '', 61, 'http://localhost/originalhouse/?p=102', 0, 'revision', '', 0),
(86, 1, '2011-06-29 19:56:42', '2011-06-29 19:56:42', '<ul>\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\n <li>REFORMA DE INTERIORES.</li>\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-autosave', '', '', '2011-06-29 19:56:42', '2011-06-29 19:56:42', '', 82, 'http://localhost/originalhouse/?p=86', 0, 'revision', '', 0),
(87, 1, '2011-06-29 18:23:03', '2011-06-29 18:23:03', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-6', '', '', '2011-06-29 18:23:03', '2011-06-29 18:23:03', '', 61, 'http://localhost/originalhouse/?p=87', 0, 'revision', '', 0),
(88, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', 'C/ RODRIGUEZ SAN PEDRO, 40\r\n\r\n28015-MADRID\r\n\r\nMETRO:ARGUELLES\r\n\r\nBUS: 2, 16, 21, 61, 202\r\n\r\nPARKING FRENTE A LA TIENDA\r\n\r\nTFNO: 91 543 30 96\r\n\r\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Localízanos', '', 'publish', 'closed', 'open', '', 'localizanos', '', '', '2011-06-29 20:00:14', '2011-06-29 20:00:14', '', 0, 'http://localhost/originalhouse/?page_id=88', 0, 'page', '', 0),
(89, 1, '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision', '', '', '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 88, 'http://localhost/originalhouse/?p=89', 0, 'revision', '', 0),
(90, 1, '2011-06-29 19:59:13', '2011-06-29 19:59:13', ' ', 'Contacto', '', 'publish', 'closed', 'open', '', '90', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=90', 5, 'nav_menu_item', '', 0),
(91, 1, '2011-06-29 20:01:16', '2011-06-29 20:01:16', 'C/ RODRIGUEZ SAN PEDRO, 40\n\n28015-MADRID\n\nMETRO:ARGUELLES\n\nBUS: 2, 16, 21, 61, 202\n\nPARKING FRENTE A LA TIENDA\n\nTFNO: 91 543 30 96\n\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-autosave', '', '', '2011-06-29 20:01:16', '2011-06-29 20:01:16', '', 88, 'http://localhost/originalhouse/?p=91', 0, 'revision', '', 0),
(92, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision-2', '', '', '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 88, 'http://localhost/originalhouse/?p=92', 0, 'revision', '', 0),
(93, 1, '2011-06-29 19:57:09', '2011-06-29 19:57:09', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-7', '', '', '2011-06-29 19:57:09', '2011-06-29 19:57:09', '', 61, 'http://localhost/originalhouse/?p=93', 0, 'revision', '', 0),
(95, 1, '2011-06-29 20:08:12', '2011-06-29 20:08:12', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-9', '', '', '2011-06-29 20:08:12', '2011-06-29 20:08:12', '', 61, 'http://localhost/originalhouse/?p=95', 0, 'revision', '', 0),
(94, 1, '2011-06-29 20:07:57', '2011-06-29 20:07:57', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a></p>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n<p>&nbsp;</p>\r\n', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-8', '', '', '2011-06-29 20:07:57', '2011-06-29 20:07:57', '', 61, 'http://localhost/originalhouse/?p=94', 0, 'revision', '', 0),
(96, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog template="gallery"]', 'Catálogo', '', 'publish', 'closed', 'open', '', 'catalogo', '', '', '2011-06-29 20:13:18', '2011-06-29 20:13:18', '', 0, 'http://localhost/originalhouse/?page_id=96', 0, 'page', '', 0),
(97, 1, '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision', '', '', '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 96, 'http://localhost/originalhouse/?p=97', 0, 'revision', '', 0),
(98, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-2', '', '', '2011-06-29 20:12:16', '2011-06-29 20:12:16', '', 96, 'http://localhost/originalhouse/?p=98', 0, 'revision', '', 0),
(99, 1, '2011-06-29 20:12:43', '2011-06-29 20:12:43', '[catablog template="gallery"]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-3', '', '', '2011-06-29 20:12:43', '2011-06-29 20:12:43', '', 96, 'http://localhost/originalhouse/?p=99', 0, 'revision', '', 0),
(112, 1, '2011-06-30 12:19:48', '2011-06-30 12:19:48', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-12', '', '', '2011-06-30 12:19:48', '2011-06-30 12:19:48', '', 61, 'http://localhost/originalhouse/?p=112', 0, 'revision', '', 0),
(103, 1, '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-2', '', '', '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo1.gif', 0, 'attachment', 'image/gif', 0),
(105, 1, '2011-06-30 12:15:29', '2011-06-30 12:15:29', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo', '', '', '2011-06-30 12:15:29', '2011-06-30 12:15:29', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif', 0, 'attachment', 'image/gif', 0),
(107, 1, '2011-06-30 12:08:31', '2011-06-30 12:08:31', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-11', '', '', '2011-06-30 12:08:31', '2011-06-30 12:08:31', '', 61, 'http://localhost/originalhouse/?p=107', 0, 'revision', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_terms`
--
CREATE TABLE IF NOT EXISTS `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=8 ;
--
-- Volcar la base de datos para la tabla `wp_terms`
--
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Sin categoría', 'sin-categoria', 0),
(2, 'Sitios de interés', 'sitios-de-interes', 0),
(3, 'sin categoría', 'catablog-term-sin-categoraa', 0),
(7, 'Menú catálogo y proyectos', 'menu-catalogo-y-proyectos', 0),
(6, 'Menú principal', 'menu-principal', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_relationships`
--
CREATE TABLE IF NOT EXISTS `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;
--
-- Volcar la base de datos para la tabla `wp_term_relationships`
--
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 2, 0),
(2, 2, 0),
(3, 2, 0),
(4, 2, 0),
(5, 2, 0),
(6, 2, 0),
(7, 2, 0),
(1, 1, 0),
(90, 6, 0),
(81, 7, 0),
(110, 6, 0),
(111, 6, 0),
(76, 7, 0),
(69, 6, 0),
(60, 6, 0),
(22, 3, 0),
(21, 3, 0),
(20, 3, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_term_taxonomy`
--
CREATE TABLE IF NOT EXISTS `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=8 ;
--
-- Volcar la base de datos para la tabla `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'link_category', '', 0, 7),
(3, 3, 'catablog-terms', '', 0, 3),
(6, 6, 'nav_menu', '', 0, 5),
(7, 7, 'nav_menu', '', 0, 2);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `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=26 ;
--
-- Volcar la base de datos para la tabla `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'rodax'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'show_admin_bar_admin', 'false'),
(11, 1, 'aim', ''),
(12, 1, 'yim', ''),
(13, 1, 'jabber', ''),
(14, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
(15, 1, 'wp_user_level', '10'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(17, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(18, 1, 'metaboxhidden_dashboard', 'a:6:{i:0;s:25:"dashboard_recent_comments";i:1;s:17:"dashboard_plugins";i:2;s:21:"dashboard_quick_press";i:3;s:23:"dashboard_recent_drafts";i:4;s:17:"dashboard_primary";i:5;s:19:"dashboard_secondary";}'),
(19, 1, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:63:"dashboard_right_now,dashboard_recent_comments,dashboard_plugins";s:4:"side";s:108:"dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_incoming_links,dashboard_secondary";s:7:"column3";s:0:"";s:7:"column4";s:0:"";}'),
(20, 1, 'screen_layout_dashboard', '2'),
(21, 1, 'wp_user-settings', 'm6=o&m7=o&m8=o&m9=o&m5=o&imgsize=full&m4=o&m11=o&hidetb=1&editor=tinymce&m12=o'),
(22, 1, 'wp_user-settings-time', '1309378185'),
(23, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}'),
(25, 1, 'nav_menu_recently_edited', '6');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_users`
--
CREATE TABLE IF NOT EXISTS `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 ;
--
-- Volcar la base de datos para la tabla `wp_users`
--
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'rodax', '$P$BT18K20H4.ABBtove1GGxVYpz6MMO3.', 'rodax', 'darranz@rodax-software.com', '', '2011-06-28 15:12:45', '', 0, 'rodax');