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
2011-07-14 10:10:20 +00:00

3581 lines
816 KiB
SQL
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- phpMyAdmin SQL Dump
-- version 3.3.9
-- http://www.phpmyadmin.net
--
-- Servidor: localhost
-- Tiempo de generación: 14-07-2011 a las 10:09:01
-- 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, 'post-trashed', '', '', 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_nivoslider4wp`
--
CREATE TABLE IF NOT EXISTS `wp_nivoslider4wp` (
`nivoslider4wp_id` int(11) NOT NULL AUTO_INCREMENT,
`nivoslider4wp_type` text,
`nivoslider4wp_order` int(11) DEFAULT NULL,
`nivoslider4wp_text_headline` text,
`nivoslider4wp_x` int(11) DEFAULT NULL,
`nivoslider4wp_y` int(11) DEFAULT NULL,
`nivoslider4wp_x2` int(11) DEFAULT NULL,
`nivoslider4wp_y2` int(11) DEFAULT NULL,
`nivoslider4wp_w` int(11) DEFAULT NULL,
`nivoslider4wp_h` int(11) DEFAULT NULL,
`nivoslider4wp_image_link` text,
`nivoslider4wp_image_status` char(1) DEFAULT NULL,
PRIMARY KEY (`nivoslider4wp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=15 ;
--
-- Volcar la base de datos para la tabla `wp_nivoslider4wp`
--
INSERT INTO `wp_nivoslider4wp` (`nivoslider4wp_id`, `nivoslider4wp_type`, `nivoslider4wp_order`, `nivoslider4wp_text_headline`, `nivoslider4wp_x`, `nivoslider4wp_y`, `nivoslider4wp_x2`, `nivoslider4wp_y2`, `nivoslider4wp_w`, `nivoslider4wp_h`, `nivoslider4wp_image_link`, `nivoslider4wp_image_status`) VALUES
(14, 'jpeg', 1, '', 0, 16, 717, 427, 717, 411, '', NULL),
(3, 'jpeg', 2, '', 0, 0, 960, 550, 960, 550, '', NULL),
(4, 'jpeg', 3, '', 0, 0, 960, 550, 960, 550, '', NULL),
(5, 'jpeg', 4, '', 0, 0, 960, 550, 960, 550, '', NULL),
(6, 'jpeg', 5, '', 0, 0, 960, 550, 960, 550, '', NULL),
(7, 'jpeg', 6, '', 0, 0, 960, 550, 960, 550, '', NULL),
(8, 'jpeg', 7, '', 0, 1, 958, 550, 958, 549, '', NULL),
(9, 'jpeg', 11, '', 0, 0, 960, 550, 960, 550, '', NULL),
(10, 'jpeg', 10, '', 0, 0, 960, 550, 960, 550, '', NULL),
(11, 'jpeg', 9, '', 0, 0, 960, 550, 960, 550, '', NULL),
(12, 'jpeg', 8, '', 0, 0, 960, 550, 960, 550, '', NULL),
(13, 'jpeg', 0, '', 0, 3, 681, 393, 681, 390, '', NULL);
-- --------------------------------------------------------
--
-- 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=1476 ;
--
-- 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:13:{i:0;s:33:"admin-menu-editor/menu-editor.php";i:1;s:33:"duplicate-post/duplicate-post.php";i:2;s:53:"google-maps-v3-shortcode/Google-Maps-v3-Shortcode.php";i:3;s:30:"lightbox-plus/lightboxplus.php";i:4;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:5;s:26:"mp3-jplayer/mp3jplayer.php";i:6;s:43:"nivo-slider-for-wordpress/nivoslider4wp.php";i:7;s:47:"plugin-update-blocker/plugin-update-blocker.php";i:8;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:9;s:35:"thecartpress/TheCartPress.class.php";i:10;s:23:"tubepress/tubepress.php";i:11;s:41:"wordpress-importer/wordpress-importer.php";i:12;s:27:"wp-pagenavi/wp-pagenavi.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', '2', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', 'a:2:{i:0;s:95:"D:\\Trabajo\\OriginalHouse\\trunk\\src/wp-content/plugins/simple-nivo-slider/simple-nivo-slider.php";i:1;s:0:"";}', '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', '18226', '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:7:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:81:{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:17:"read_wpsc-product";b:1;s:22:"read_wpsc-product-file";b:1;s:16:"tcp_edit_product";b:1;s:17:"tcp_edit_products";b:1;s:24:"tcp_edit_others_products";b:1;s:20:"tcp_publish_products";b:1;s:16:"tcp_read_product";b:1;s:18:"tcp_delete_product";b:1;s:15:"tcp_users_roles";b:1;s:15:"tcp_edit_orders";b:1;s:15:"tcp_read_orders";b:1;s:17:"tcp_edit_settings";b:1;s:16:"tcp_edit_plugins";b:1;s:16:"tcp_update_price";b:1;s:16:"tcp_update_stock";b:1;s:25:"tcp_downloadable_products";b:1;s:18:"tcp_edit_addresses";b:1;s:14:"tcp_edit_taxes";b:1;s:23:"tcp_shortcode_generator";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;}}s:8:"customer";a:2:{s:4:"name";s:8:"Customer";s:12:"capabilities";a:5:{s:15:"tcp_read_orders";b:1;s:18:"tcp_edit_addresses";b:1;s:25:"tcp_downloadable_products";b:1;s:4:"read";b:1;s:7:"level_0";b:1;}}s:8:"merchant";a:2:{s:4:"name";s:8:"Merchant";s:12:"capabilities";a:51:{s:16:"tcp_edit_product";b:1;s:17:"tcp_edit_products";b:1;s:24:"tcp_edit_others_products";b:1;s:20:"tcp_publish_products";b:1;s:16:"tcp_read_product";b:1;s:18:"tcp_delete_product";b:1;s:15:"tcp_edit_orders";b:1;s:15:"tcp_read_orders";b:1;s:16:"tcp_update_price";b:1;s:16:"tcp_update_stock";b:1;s:18:"tcp_edit_addresses";b:1;s:25:"tcp_downloadable_products";b:1;s:15:"tcp_users_roles";b:1;s:17:"tcp_edit_settings";b:1;s:16:"tcp_edit_plugins";b:1;s:14:"tcp_edit_taxes";b:1;s:23:"tcp_shortcode_generator";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: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;}}}', '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:5:{i:1310638877;a:1:{s:22:"wpsc_hourly_cron_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1310656368;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:1310656372;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;}}}i:1310664077;a:1:{s:21:"wpsc_daily_cron_tasks";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', '1310635992', 'yes'),
(397, 0, 'tubepress-disableHttpTransportCurl', '', 'yes'),
(395, 0, 'tubepress-searchProvider', 'youtube', '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'),
(1453, 0, '_site_transient_timeout_theme_roots', '1310640757', 'yes'),
(1454, 0, '_site_transient_theme_roots', 'a:1:{s:13:"originalhouse";s:7:"/themes";}', 'yes'),
(266, 0, 'current_theme', 'Original House', 'yes'),
(736, 0, 'db_upgraded', '', 'yes'),
(1396, 0, '_transient_timeout_feed_mod_8fa202021a0c51f109142bc571ee925a', '1310591658', 'no'),
(1394, 0, '_transient_timeout_feed_8fa202021a0c51f109142bc571ee925a', '1310591658', 'no'),
(1395, 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>119</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:77:"Mandriva Forum (en) • View topic - log in fails - home directory <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:60:"http://forum.mandriva.com/en/viewtopic.php?t=135223&p=847301";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:507:"[root@<em>localhost</em> home]# cat /etc/fstab # Entry for /dev/sda1 : UUID=81494177-1bee-4f6e-a709-681992215e63 / ext2 acl,noatime 1 1 # Entry for /dev/sda2 : UUID=40e99d98-ceea-41b0-9f72-83120658d99a /home ext2 acl,noatime 1 2 <b>...</b> Thanks for the <em>link</em>, the thing is i couldnt find a Home/[username] directory, it wasnt there ... so i created one using mkdir and now everything seems to work but all my data is gone :-( . If i run the commands detailed on the <em>link</em> above, <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:19:"Mandriva Forum (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:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:7:"deanyit";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:"Sat, 25 Jun 2011 18:16:49 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: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:2;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> 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:12:"freaky trikz";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:6:"RAPZAP";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:3;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:24:"TVIDs with Music Jukebox";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:58:"http://www.networkedmediatank.com/showthread.php?tid=51003";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:576:"The <em>link</em> I am adding is <em>http</em>://<em>localhost</em>.drives:8883/USB_DRIVE_C-3/index.htm and specifying &#39;ALL&#39; pages. The xml file is updated with. Code: &lt;tvids&gt; &lt;RED&gt;<em>http</em>://<em>localhost</em>.drives:8883/USB_DRIVE_C-3/index.htm&lt;/RED&gt; &lt;/tvids&gt; <b>...</b> Edit2: Actually, if I just edit the index_main.htm file with my code, all of the other index pages and details pages have the <em>original &#39;home</em>&#39; code which reverts back to the index_main.htm page... than with the updated index_main.htm page, <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:33:"Networked Media Tank - All Forums";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:7:"unknown";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:"Tue, 29 Mar 2011 19:34:09 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:4;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:66:"朝乾夕惕|SpunkMars++ » 【原创】RRDtool Cacti 安装总结";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:123:"http://www.spunkmars.org/2010/12/09/%E3%80%90%E5%8E%9F%E5%88%9B%E3%80%91rrdtool-cacti-%E5%AE%89%E8%A3%85%E6%80%BB%E7%BB%93/";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:685:"这个软件它老是就编译不出pangocairo.pc这个文件最后还得老老实实去rrdtool官网下载它提供的第三方软件和库地址如下<em>http</em>://oss.oetiker.ch/rrdtool/pub/libs/ 里面同个软件还有几个版本都挑里面较新的装因为毕竟装的是rrdtool-1.4.4版本。 其实只要熟悉了pkgconfig管理库 <b>....</b> 因为在我的httpd.conf里设置的网站主目录是/data/htdocs/www ,所以Cacti的访问地址为<em>http</em>://<em>localhost</em>/cacti. 设置Cacti: 浏览器里登录<em>http</em>://<em>localhost</em>/cacti. 默认用户名和密码都是admin. 第一次登录需强制更换新密码 <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:24:"朝乾夕惕|SpunkMars++";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:"admin";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:"Thu, 09 Dec 2010 01:11:53 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:5;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:38:"virt-manager (only) will not X forward";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:120:"http://forums.opensuse.org/english/get-technical-help-here/applications/447580-virt-manager-only-will-not-x-forward.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:520:"The application &#39;virt-manager.py&#39; lost its connection to the display <em>localhost</em>:12.0; most likely the X server was shut down or you killed/destroyed the application. That lead me to this post which had a solution, and a good explanation as well: <b>...</b> $HOME, so the <em>original $HOME</em>/.Xauthority is still used. Then, userhelper (or su -) use the pam_xauth module. pam_xauth does not use $HOME/.Xauthority, but &quot;invoking user&#39;s home directory&quot;/.Xauthority, i.e. /root/. <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:15:"openSUSE Forums";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:17:"LewsTherinTelemon";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:"Wed, 08 Dec 2010 08:00: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:6;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:55:"Ampache - Streming Sterver Teil 1 | Stefan&#39;s Weblog";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:35:"http://www.strobelstefan.de/?p=1051";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:260:"Ruft man im Webbrowser den Installationsdialog über <em>http</em>://<em>localhost</em>/ampacheauf, dann wird ein Fehler ausgegeben. Kurz gesagt der Webserver Apache hat keinen Zugriff auf Ampache. Mit zwei Befehlen auf der Konsole kann man das aber <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:15:"Stefan''s Weblog";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:6:"Stefan";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:"Thu, 25 Nov 2010 10:01:36 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:7;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:48:"solaris5.10 ipMP配置_两树娑罗_百度空间";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://hi.baidu.com/godblade/blog/item/3ec43995b23f175bd0135ee1.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:506:"The 2 floating addresses are the external ones. If one of the NICs detects <em>link</em> failure, the address tied to that NIC fails over to the working NIC. When the NIC comes back up, the address fails back to its <em>original home</em>. <b>....</b> cat /etc/ hosts # # Internet host table # 127.0.0.1 <em>localhost</em> 192.168.10.10 REALNAME loghost 192.168.10.11 DUMMY1 192.168.10.12 DUMMY2 #. What does this do? It sets up two dummy (private) IP addresses that are fixed to the interfaces. <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:12:"两树娑罗";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:"arsex";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:"Mon, 22 Nov 2010 05:40: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:8;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:51:"ASA Syslog errors from MSSQL - Spiceworks Community";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:72:"http://community.spiceworks.com/topic/99299-asa-syslog-errors-from-mssql";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:522:"For some reason the old administrator used a lot of references to its IP address rather than using <em>localhost</em> or 127.0.0.1. Instead the admin entered the actual IP address into the configs. I&#39;ve cleaned up everything i can find but apparently i haven&#39;t found them all. <b>...</b> Check the Jobs, and Database <em>Link</em>. It look to me that the DB may have a database <em>link</em> pointing to the same database. This is a trick that&#39;s being used for some DBA to accomplished tricky tasks. <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:20:"Spiceworks Community";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:6:"mattrk";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:"Wed, 19 May 2010 21:36:58 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:9;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:44:"Calabrian Journey « Nick Mancuso&#39;s Blog";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://nickmancuso.wordpress.com/2009/10/28/calabrian-journey/";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:499:"Version:1.0 StartHTML:0000000202 EndHTML:0000021481 StartFragment:0000002631 EndFragment:0000021445 SourceURL:file://<em>localhost</em>/Users/nickmancuso/Desktop/Assorted%20Essays/CALABRIAN%20MEMORIES.doc <b>....</b> In America, many of us have lost that <em>link</em> to our roots, our common roots. I have lost the flavor of our differences. Of the cities and towns my ancestors emigrated from. We have become part of the sweltering homogenized masses of men and women of the industrial <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:19:"Nick Mancuso''s Blog";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:12:"Nick Mancuso";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:"Wed, 28 Oct 2009 08:32: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:"";}}}}}}}s:36:"http://a9.com/-/spec/opensearch/1.1/";a:3:{s:12:"totalResults";a:1:{i:0;a:5:{s:4:"data";s:3:"119";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:10:"startIndex";a:1:{i:0;a:5:{s:4:"data";s:1:"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:12:"itemsPerPage";a:1:{i:0;a:5:{s:4:"data";s:2:"10";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:"type";i:128;s:7:"headers";a:7:{s:12:"content-type";s:28:"text/xml; charset=ISO-8859-1";s:4:"date";s:29:"Wed, 13 Jul 2011 09:14:21 GMT";s:7:"expires";s:2:"-1";s:13:"cache-control";s:18:"private, max-age=0";s:10:"set-cookie";s:143:"PREF=ID=d909ef18c33142dd:FF=0:TM=1310548461:LM=1310548461:S=sqajl8IAKGSJAppr; expires=Fri, 12-Jul-2013 09:14:21 GMT; path=/; domain=.google.com";s:6:"server";s:3:"gws";s:16:"x-xss-protection";s:13:"1; mode=block";}s:5:"build";s:14:"20090627192103";}', 'no'),
(122, 0, '_transient_timeout_plugin_slugs', '1310722054', 'no'),
(123, 0, '_transient_plugin_slugs', 'a:14:{i:0;s:33:"admin-menu-editor/menu-editor.php";i:1;s:43:"custom-post-background/custom-post-back.php";i:2;s:33:"duplicate-post/duplicate-post.php";i:3;s:53:"google-maps-v3-shortcode/Google-Maps-v3-Shortcode.php";i:4;s:30:"lightbox-plus/lightboxplus.php";i:5;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:6;s:26:"mp3-jplayer/mp3jplayer.php";i:7;s:43:"nivo-slider-for-wordpress/nivoslider4wp.php";i:8;s:47:"plugin-update-blocker/plugin-update-blocker.php";i:9;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:10;s:35:"thecartpress/TheCartPress.class.php";i:11;s:23:"tubepress/tubepress.php";i:12;s:41:"wordpress-importer/wordpress-importer.php";i:13;s:27:"wp-pagenavi/wp-pagenavi.php";}', 'no'),
(124, 0, 'recently_activated', 'a:9:{s:26:"copy-post/ds_copy_post.php";i:1310635584;s:41:"simple-nivo-slider/simple-nivo-slider.php";i:1310569119;s:15:"audio/audio.php";i:1310557269;s:29:"simple-music/simple-music.php";i:1310548805;s:47:"extended-super-admins/extended_super_admins.php";i:1310494224;s:26:"google-maps/googlemaps.php";i:1310404986;s:45:"pronamic-google-maps/pronamic-google-maps.php";i:1310404862;s:41:"really-easy-slider/really-easy-slider.php";i:1310048500;s:43:"custom-post-background/custom-post-back.php";i:1310042864;}', '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 fixes.</p>\n<p>Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. Users are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause. If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a> or <a href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href="http://core.trac.wordpress.org/">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="http://wordpress.org/wordpress-3.2-RC2.zip">download the release candidate here</a> (zip).</p>\n<p>If any known issues crop up, you&#8217;ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>. If you&#8217;d like to know which levers to pull in your testing, <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">check out a list of features</a> in our Beta 1 post.</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:73:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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: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:15:"Passwords Reset";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:50:"http://wordpress.org/news/2011/06/passwords-reset/";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:59:"http://wordpress.org/news/2011/06/passwords-reset/#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:"Tue, 21 Jun 2011 23:57:42 +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:8:"Security";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=1908";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:376:"Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory. We&#8217;re [...]";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:14:"Matt Mullenweg";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:1290:"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We&#8217;re still investigating what happened, but as a prophylactic measure we&#8217;ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you&#8217;ll need to <a href="http://wordpress.org/support/bb-login.php">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href="http://wordpress.org/extend/plugins/addthis/">AddThis</a>, <a href="http://wordpress.org/extend/plugins/wptouch/">WPtouch</a>, or <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a> and there&#8217;s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/06/passwords-reset/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:2;a:6:{s:4:"data";s:47:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:31:"WordPress 3.2 Release Candidate";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:66:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/";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:75:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/#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:"Tue, 14 Jun 2011 04:28:39 +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:3:{i:0;a:5:{s:4:"data";s:11:"Development";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:5:{s:4:"data";s:8:"Releases";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:2;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=1890";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:341:"The first release candidate (RC1) for WordPress 3.2 is now available. An RC comes after the beta period and before final release. We think were done, but with tens of millions of users, a variety of configurations, and thousands of plugins, its possible weve missed something. So if you havent tested WordPress 3.2 yet, now [...]";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:2297:"<p>The first release candidate (RC1) for WordPress 3.2 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think were done, but with tens of millions of users, a variety of configurations, and thousands of plugins, its possible weve missed something. So if you havent tested WordPress 3.2 yet, now is the time! Please though, not on your live site unless youre extra adventurous.</p>\n<p>Things to keep in mind:</p>\n<ul>\n<li>With <a href="http://core.trac.wordpress.org/milestone/3.2">more than 350 tickets closed</a>, there are plenty of changes. Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release.</li>\n<li><strong>Users</strong> are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.</li>\n<li>Twenty Eleven isn&#8217;t quite at the release candidate stage. <a href="http://cheezburger.com/Mmmbop/lolz/View/4683101952">Contents may settle</a>.</li>\n<li>If any known issues crop up, you&#8217;ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</li>\n</ul>\n<p>If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a> or <a href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href="http://core.trac.wordpress.org/">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="http://wordpress.org/wordpress-3.2-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>Happy testing!</p>\n<p><em>If you&#8217;d like to know which levers to pull in your testing, <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">check out a list of features</a> in our Beta 1 post.</em></p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:3;a:6:{s:4:"data";s:47:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:40:"WordCamp San Francisco Call for Speakers";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:75:"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/";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:84:"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/#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:"Tue, 31 May 2011 18:59:48 +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:3:{i:0;a:5:{s:4:"data";s:9:"Community";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:5:{s:4:"data";s:8:"WordCamp";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:2;a:5:{s:4:"data";s:4:"wcsf";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=1886";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:425:"The annual WordPress conference, WordCamp San Francisco (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses&#8230;you name it. In addition to Matt Mullenweg&#8217;s annual &#8220;State of the Word&#8221; address, WCSF has played [...]";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:"Jane Wells";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:905:"<p>The annual WordPress conference, <a href="http://2011.sf.wordcamp.org/">WordCamp San Francisco</a> (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses&#8230;you name it. In addition to Matt Mullenweg&#8217;s annual &#8220;State of the Word&#8221; address, WCSF has played host to talks by people like Mark Jaquith, Matt Cutts, Richard Stallman, Scott Berkun, Karl Fogel, Tim Ferriss, Tara Hunt, Chris Pirillo, and John Lilly. With 3 days of content this year instead of just one, the list of speakers should be even more impressive. If you think you&#8217;d make a good addition to this year&#8217;s roster, check out the <a href="http://2011.sf.wordcamp.org/call-for-speakers/">WCSF Call for Speakers</a>.</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:80:"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:4;a:6:{s:4:"data";s:47:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"WordPress 3.1.3 (and WordPress 3.2 Beta 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:50:"http://wordpress.org/news/2011/05/wordpress-3-1-3/";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:59:"http://wordpress.org/news/2011/05/wordpress-3-1-3/#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:"Wed, 25 May 2011 18:43: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:8:"category";a:3:{i:0;a:5:{s:4:"data";s:11:"Development";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:5:{s:4:"data";s:8:"Releases";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:2;a:5:{s:4:"data";s:8:"Security";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=1838";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:408:"WordPress 3.1.3 is available now and is a security update for all previous versions. It contains the following security fixes and enhancements: Various security hardening by Alexander Concha. Taxonomy query hardening by John Lamansky. Prevent sniffing out user names of non-authors by using canonical redirects. Props Verónica Valeros. Media security fixes by Richard Lundeen of Microsoft, Jesse Ou [...]";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:"Mark Jaquith";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:3497:"<p><a href="http://wordpress.org/download/">WordPress 3.1.3</a> is available now and is a security update for all previous versions. It contains the following security fixes and enhancements:</p>\n<ul>\n<li>Various security hardening by <a href="http://www.buayacorp.com">Alexander Concha</a>.</li>\n<li>Taxonomy query hardening by <a href="http://johnlamansky.com/wordpress">John Lamansky</a>.</li>\n<li>Prevent sniffing out user names of non-authors by using canonical redirects. Props <a href="http://www.talsoft.com.ar">Verónica Valeros</a>.</li>\n<li>Media security fixes by Richard Lundeen of <a href="http://www.microsoft.com/">Microsoft</a>, Jesse Ou of <a href="http://www.microsoft.com/">Microsoft</a>, and <a href="http://www.microsoft.com/security/msrc/default.aspx">Microsoft Vulnerability Research</a>.</li>\n<li>Improves file upload security on hosts with dangerous security settings.</li>\n<li>Cleans up old WordPress import files if the import does not finish.</li>\n<li>Introduce &#8220;clickjacking&#8221; protection in modern browsers on admin and login pages.</li>\n</ul>\n<p>Consult the <a href="http://core.trac.wordpress.org/log/branches/3.1/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=18023&amp;stop_rev=17805&amp;limit=100">change log</a> for more details.</p>\n<p><a href="http://wordpress.org/download/">Download WordPress 3.1.3</a> or update automatically from the Dashboard → Updates menu in your sites admin area.</p>\n<hr />\n<h3>WordPress 3.2 Beta 2 also available</h3>\n<p>In other news, our development of WordPress 3.2 development continues right on schedule. We released <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">Beta 1</a> thirteen days ago, and today we&#8217;re putting out Beta 2 for your testing pleasure.</p>\n<p>This is still beta software, so <strong>we don&#8217;t recommend that you use it on production sites</strong>. But if you&#8217;re a plugin developer, a theme developer, or a site administrator, <strong>you should be running this on your test environments</strong> and <a href="http://codex.wordpress.org/Reporting_Bugs">reporting any bugs</a> you find. If you&#8217;re a WordPress user who wants to open your presents early, take advantage of WordPress&#8217; famous 5-minute install and spin up a secondary test site. Let us know what you think!</p>\n<p>The plan is to start putting out release candidates in early June, and to release WordPress 3.2 by the end of the month. The more you help us iron out issues during the beta period, the more likely we are to hit those dates. To misappropriate and mangle a quote from Mahatma Gandhi: &#8220;Be the punctuality you want to see in the WordPress.&#8221; In other words, test now!</p>\n<p>Here are some of the things that changed since Beta 1:</p>\n<ul>\n<li><a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a> is now supported in the admin, if you have it installed. This is especially useful for IE 6 users (remember, IE 6 is otherwise deprecated for the admin).</li>\n<li>The admin is less ugly in IE 7.</li>\n<li>The blue admin color scheme has caught up to the grey one, and is ready for testing.</li>\n<li>We are now bundling jQuery 1.6.1. You should test any JS that uses jQuery. WordPress JavaScript guru Andrew Ozz has <a href="http://wpdevel.wordpress.com/2011/05/25/jquery-updates-in-wordpress-3-2/">a post with more info</a>.</li>\n</ul>\n<p><a href="http://wordpress.org/wordpress-3.2-beta2.zip">Download WordPress 3.2 Beta 2</a></p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/05/wordpress-3-1-3/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:5;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:21:"WordPress 3.2, Beta 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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/05/wordpress-3-2-beta-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/#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:"Thu, 12 May 2011 08:22:26 +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:8:"Releases";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=1816";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:351:"It seems like just yesterday that we released WordPress 3.1, but it&#8217;s actually been almost three months. We&#8217;ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers! As always, this is software still in development and we don&#8217;t recommend that you run it on [...]";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:"Jane Wells";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:4230:"<p>It seems like just yesterday that we released WordPress 3.1, but it&#8217;s actually been almost three months. We&#8217;ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers!</p>\n<p>As always, this is software still in development and <strong>we don&#8217;t recommend that you run it on a production site</strong> &#8212; set up a test site just to play with the new version. If you break it (find a bug), please report it, and if you&#8217;re a developer, try to help us fix it.</p>\n<p>If all goes well, we hope to release WordPress 3.2 by the end of June, though that is (again, as always) subject to change depending on how the beta period goes. The more help we get with testing and fixing bugs, the sooner we will be able to release the final version. If you want to be a beta tester, you should check out the Codex article on <a title="Reporting Bugs for WordPress" href="http://codex.wordpress.org/Reporting_Bugs">how to report bugs</a>.</p>\n<p><strong>Here&#8217;s some of what&#8217;s new:</strong></p>\n<ul>\n<li><strong>Performance improvements</strong> like you wouldn&#8217;t believe. What&#8217;s that mean? Things are faster!</li>\n<li><strong>Distraction-free Writing</strong>. The visual editor&#8217;s full-screen composing experience has gotten a major overhaul, and is now available from HTML mode, too. More than ever, WordPress allows you to focus on what matters most &#8212; your content.</li>\n<li><strong>Admin UI Refresh</strong>. The last major redesign of the WordPress admin was in 2008. This isn&#8217;t a major redesign, just a little facelift to keep us feeling young. WordPress turns 8 later this month, you know.</li>\n<li><strong>New Default Theme</strong>. Introducing Twenty Eleven, based on the popular Duster theme. Rotating header images, post format support, and more.</li>\n<li><strong><a href="http://browsehappy.com">Browse Happy</a></strong>. WordPress is made to work with modern browsers. If you visit your Dashboard using an outdated web browser, we&#8217;ll let you know there&#8217;s a newer version available.</li>\n<li><strong>Admin Bar</strong>. We&#8217;ve added more links to the admin bar to make it even more useful.</li>\n</ul>\n<div>\n<div><strong>Be Aware:</strong></div>\n<div>\n<ul>\n<li>WordPress has new minimum system requirements: PHP 5.2.4 and MySQL 5.0.</li>\n<li>Internet Explorer 6 will no longer be supported.</li>\n<li>The favorites menu has been removed. If you&#8217;ve written any plugins that use this menu, it&#8217;s time to switch over to an admin bar placement.</li>\n</ul>\n</div>\n</div>\n<div><strong>Known Issues</strong>:</div>\n<div>\n<ul>\n<li>We haven&#8217;t updated the blue admin color scheme yet, so do your testing in the gray zone for best results.</li>\n</ul>\n</div>\n<p>Remember, if you find something you think is a bug, report it! You can bring it up in the <a title="Alpha/Beta Support Forum" href="http://wordpress.org/support/forum/alphabeta">alpha/beta forum</a>, you can email it to the <a title="WP-testers mailing list info page" href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers list</a>, or if you&#8217;ve confirmed that other people are experiencing the same bug, you can report it on the <a title="WordPress Core Trac" href="http://core.trac.wordpress.org/">WordPress Core Trac</a>. (I recommend starting in the forum or on the mailing list.)</p>\n<p>Theme and plugin authors, if you haven&#8217;t been following the 3.2 development cycle, <strong>please start now</strong> so that you can update your themes and plugins to be compatible with the newest version of WordPress.</p>\n<p>Note to developers: WordPress is built by the contributions of hundreds of developers. If you&#8217;d like to see this release come out on time, I encourage you to pitch in. Even if you don&#8217;t have time to do testing on the beta version, you could help us by contributing a fix for one of the <a title="3.1 bugs that need a patch" href="http://core.trac.wordpress.org/report/6">many bugs</a> we already know about.</p>\n<p><a title="Download WordPress 3.2 Beta 1" href="http://wordpress.org/wordpress-3.2-beta1.zip">Download WordPress 3.2 Beta 1</a></p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:6;a:6:{s:4:"data";s:44:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"WordPress 3.1.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:50:"http://wordpress.org/news/2011/04/wordpress-3-1-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:59:"http://wordpress.org/news/2011/04/wordpress-3-1-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:"Tue, 26 Apr 2011 19:00: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:8:"Releases";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:5:{s:4:"data";s:8:"Security";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=1801";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:376:"WordPress 3.1.2 is now available and is a security release for all previous WordPress versions. This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts. The issue was discovered by a member of our security team, WordPress developer Andrew Nacin, with Benjamin Balter. We suggest you update to 3.1.2 promptly, especially if [...]";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:"Ryan Boren";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:980:"<p><a href="http://wordpress.org/download/">WordPress 3.1.2</a> is now available and is a security release for all previous WordPress versions.</p>\n<p>This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts.</p>\n<p>The issue was discovered by a member of our security team, WordPress developer <a href="http://andrewnacin.com/">Andrew Nacin</a>, with <a href="http://ben.balter.com/">Benjamin Balter</a>.</p>\n<p>We suggest you update to 3.1.2 promptly, especially if you allow users to register as contributors or if you have untrusted users. <a href="http://codex.wordpress.org/Version_3.1.2">This release</a> also fixes <a title="Bugs fixed in 3.1.2" href="http://core.trac.wordpress.org/query?milestone=3.1.2">a few bugs</a> that missed the boat for version 3.1.1.</p>\n<p><a href="http://wordpress.org/download/">Download 3.1.2</a> or update automatically from the Dashboard → Updates menu in your site&#8217;s admin area.</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/04/wordpress-3-1-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:7;a:6:{s:4:"data";s:44:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:21:"Summer WordCamps 2011";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:55:"http://wordpress.org/news/2011/04/summer-wordcamps-201/";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:64:"http://wordpress.org/news/2011/04/summer-wordcamps-201/#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:"Sat, 16 Apr 2011 23:06:55 +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:2:{i:0;a:5:{s:4:"data";s:9:"Community";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:5:{s:4:"data";s:6:"Events";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=1785";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:379:"Looking for something fun to do during your summer vacation? Why not check out a WordCamp! WordCamps are locally-organized casual conferences of, by, and for WordPress users, developers, and enthusiasts just like you. The focus of a WordCamp is to foster face-to-face connections and collaboration among the local WordPress crowd, but there are usually some out-of-towners [...]";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:"Jane Wells";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:6113:"<p>Looking for something fun to do during your summer vacation? Why not check out a WordCamp! WordCamps are locally-organized casual conferences of, by, and for WordPress users, developers, and enthusiasts just like you. The focus of a WordCamp is to foster face-to-face connections and collaboration among the local WordPress crowd, but there are usually some out-of-towners there as well. Here are the WordCamps that have been approved so far for the summer:</p>\n<p>April 16: <a href="http://wordcampseattle.org/">WordCamp Seattle</a> in Seattle, WA. This weekend! After taking a year off, WordCamp Seattle is back with tracks for bloggers, designers, and developers. This year they&#8217;ll feature a lineup including presentations by both local speakers and visitors like core committer Andrew Nacin, as well as an Ignite session of lightning talks at the end of the day.</p>\n<p>May 5: <a href="http://wordcampdevelopers.com/">WordCamp Vancouver (Developer Edition)</a> in Vancouver, BC. This one-day WordCamp is aimed purely at developers working on the WordPress platform, and will not have content aimed at bloggers (as previous Vancouver WordCamps have). I predict we will start seeing more of these types of niche WordCamps moving forward, because they will mean smaller, more intimate events that allow more collaboration (and make it easier to find venues!). Note that we&#8217;re working with the organizers to get the tickets to a more reasonable price, so keep your eyes open this week if you&#8217;ve held off on buying a ticket because of the price tag.</p>\n<p>May 7: <a href="http://wordcamp-switzerland.ch/">WordCamp Switzerland</a> in Brugg, Switzerland. This one will cover a wide range of topics, including getting started with WordPress, advanced development topics, BuddyPress, and an inside look at running a WordPress-based business.</p>\n<p>May 14: <a href="http://www.ocwordcamp.com/">WordCamp Orange County</a> in Orange, CA. Already sold out! Orange County had their first WordCamp last year, and the organizers have put together another great event this time around.</p>\n<p>May 14: <a href="http://paris14mai2011.wordcamp.fr/">WordCamp Paris</a> in Paris, France. One of the last true unconference-style WordCamps, the Paris group will plan their schedule the morning of the event like they do at BarCamps. WordCamp Paris had one of the best WordCamp t-shirts ever a couple of years ago. And it&#8217;s in Paris in the spring.</p>\n<p>May 2122: <a href="http://wordcampraleigh.com/">WordCamp Raleigh</a> in Raleigh, NC. Repeat organizers from the Raleigh WordPress Meetup Group are just starting to select speakers and put together their plans, but if it is anything like last year, the venue will be packed with WordPress professionals (and maybe there will be cookies). I&#8217;ll be attending this one, as will Nacin.</p>\n<p>June 45: <a href="http://2011.reno.wordcamp.org/">WordCamp Reno-Lake Tahoe</a> in Reno, NV. Organized by a WordPress core UI group contributor, WordCamp Reno-Lake Tahoe is taking place in Reno and has a packed schedule full of visiting experts.</p>\n<p>June 1112: <a href="http://www.wckansascity.org/">WordCamp Kansas City</a> in Overland Park, KS. With publisher, designer, and developer tracks, Kansas City&#8217;s WordCamp will have a little something for everyone, presented in large part by local speakers.</p>\n<p>June 1719: <a href="http://wordcampcolumbus.com/">WordCamp Columbus</a> in Columbus, OH. WordCamp Columbus has a new organizer this year and is bringing the focus more firmly onto WordPress (and less on social media). Their 3-day event includes an entire day for newbies, and another for non-profits, a nice addition to the usual blogger/developer tracks.</p>\n<p>July 910: <a href="http://wcmtl.org/">WordCamp Montreal</a> in Montreal, Quebec. This group consistently puts on a great every year. If you register now, you can still get a $10 discount and get both days for only $30 (with sessions in both English and French to reflect the bilingual nature of the city). Montreal plays host to a number of <a href="http://www.montreal.com/tourism/festivals/index.html">festivals</a> throughout the year, and this weekend is no different, including festivals for the arts, comedy, tango, and even circus arts.</p>\n<p>July 16: <a href="http://2011.sandiego.wordcamp.org/">WordCamp San Diego</a> in San Diego, CA. First WordCamp in San Diego! They have talking about this for over a year, and are now starting to really ramp up the planning. They&#8217;re finalizing their venue right now, and I would expect a great roster of speakers.</p>\n<p>July 16-17: <a href="http://wiki.wordcampuk.org/Main_Page">WordCamp Portsmouth</a> in Portsmouth, UK. The annual WordCamp UK that moves from city to city each year alights this year in Portsmouth. This one is notable because Mike Little, co-founder of WordPress, is part of the organizing team.</p>\n<p>July 2324: <a href="http://wordcampboston.com/">WordCamp Boston</a> in Boston, MA. Another one just about to lock down some details and get starting with speaker selection, etc. An easy train ride from so many places, and not in the middle of winter this year!</p>\n<p>July 30-31: <a href="http://2011.chicago.wordcamp.org">WordCamp Chicago</a> has new organizers and is a new venue this year. A call for speakers, supporters, and volunteers will likely be posted sometime next week.</p>\n<p><a href="http://www.wordcampportland.org/">WordCamp Portland</a> is looking for a venue before deciding on a date this year, as it has outgrown the space it&#8217;s used the past two years, but hopes to happen in September. If you would be interested in donating a venue to this popular event, please <a href="http://www.wordcampportland.org/">contact them</a>.</p>\n<p>We&#8217;ll hold off on posting fall events until later in the summer since there a lot in the planning stages now. To get the most up-to-date information, visit <a href="http://central.wordcamp.org/schedule/">WordCamp Central</a>.</p>\n<p>Hope to see you at a WordCamp soon!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:60:"http://wordpress.org/news/2011/04/summer-wordcamps-201/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:8;a:6:{s:4:"data";s:44:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:15:"WordPress 3.1.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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:50:"http://wordpress.org/news/2011/04/wordpress-3-1-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:59:"http://wordpress.org/news/2011/04/wordpress-3-1-1/#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:"Tue, 05 Apr 2011 15:10:11 +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:2:{i:0;a:5:{s:4:"data";s:8:"Releases";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:5:{s:4:"data";s:8:"Security";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=1762";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:397:"WordPress 3.1.1 is now available. This maintenance and security release fixes almost thirty issues in 3.1, including: Some security hardening to media uploads Performance improvements Fixes for IIS6 support Fixes for taxonomy and PATHINFO (/index.php/) permalinks Fixes for various query and taxonomy edge cases that caused some plugin compatibility issues Version 3.1.1 also addresses three [...]";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:"Ryan Boren";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:1395:"<p><a href="http://wordpress.org/download/">WordPress 3.1.1</a> is now available. This maintenance and security release fixes <a title="Bugs fixed in 3.1.1" href="http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.1.1&amp;group=resolution&amp;order=priority">almost thirty issues</a> in 3.1, including:</p>\n<ul>\n<li>Some security hardening to media uploads</li>\n<li>Performance improvements</li>\n<li>Fixes for IIS6 support</li>\n<li>Fixes for taxonomy and PATHINFO (/index.php/) permalinks</li>\n<li>Fixes for various query and taxonomy edge cases that caused some plugin compatibility issues</li>\n</ul>\n<p>Version 3.1.1 also addresses three security issues discovered by WordPress core developers <a href="http://joncave.co.uk/">Jon Cave</a> and <a href="http://blog.ftwr.co.uk/">Peter Westwood</a>, of our security team. The first hardens CSRF prevention in the media uploader. The second avoids a PHP crash in certain environments when handling devilishly devised links in comments, and the third addresses an XSS flaw.</p>\n<p>We suggest you update to 3.1.1 promptly. <a href="http://wordpress.org/download/">Download 3.1.1</a> or update automatically from the Dashboard → Updates menu in your site&#8217;s admin area.</p>\n<p>Our release haiku:</p>\n<p>Only the geeks know<br />\nWhat half this stuff even means<br />\nDon&#8217;t worry &#8212; update</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:55:"http://wordpress.org/news/2011/04/wordpress-3-1-1/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:9;a:6:{s:4:"data";s:47:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:29:"WordPress Summer of Code 2011";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:64:"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/";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:73:"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/#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:"Wed, 30 Mar 2011 15:57:54 +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:3:{i:0;a:5:{s:4:"data";s:9:"Community";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:5:{s:4:"data";s:11:"Development";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:2;a:5:{s:4:"data";s:4:"GSoC";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=1756";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:361:"For the past several years, WordPress has been a proud participant in the Google Summer of Code program (aka GSoC). We&#8217;ve been accepted as a mentoring organization again this year, and are looking forward to working with a select handful of talented college students who are interested in developing for WordPress. Student applications are currently [...]";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:"Jane Wells";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:2993:"<p>For the past several years, WordPress has been a proud participant in the <a href="http://www.google-melange.com/gsoc/homepage/google/gsoc2011">Google Summer of Code</a> program (aka GSoC). We&#8217;ve been accepted as a mentoring organization <a title="The official GSoC page on WordPress.org" href="http://wordpress.org/gsoc/">again this year</a>, and are looking forward to working with a select handful of talented college students who are interested in developing for WordPress. Student applications are currently being accepted, and the deadline to apply is April 8. Are you a college student/developer looking for a summer challenge (or do you know one)? If so, read on to find out how you (or your friend) can make $5,000 developing for WordPress this summer. (Best. Summer. Job. Ever.)</p>\n<p>GSoC Logistics:</p>\n<ul>\n<li>175 mentoring organizations (including WordPress)</li>\n<li>Highly competitive and prestigious program (in 2010, 5539 proposals were submitted by 3464 students, and 1026 were accepted)</li>\n<li>You must be enrolled in an accredited college/university</li>\n<li>Coding period is May-August</li>\n<li>Successful completion of project = $5,000</li>\n<li><a href="http://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2011/faqs">GSoC FAQ</a> answers all your questions</li>\n</ul>\n<p>WordPress logistics:</p>\n<ul>\n<li>Mentors include WordPress core developers, plugin authors (including BuddyPress and bbPress), mobile app developers, and WordPress professionals.</li>\n<li>Projects are limited only by your imagination and ability.</li>\n<li>Previous GSoC students have gained responsible roles in WordPress core development, like Dion Hulse and Andrew Nacin (core committers), and Daryl Koopersmith (wrote the internal linking feature in 3.1 and much of the custom menus feature in 3.0).</li>\n<li>This year, in addition to accepting project proposals for the main WordPress web app, we&#8217;re also encouraging applications for projects with the <a href="http://wordpress.org/extend/mobile/">WordPress mobile apps</a> (iOS, Android, Blackberry, Nokia, Windows Phone 7), for community-developed plugins like BuddyPress and bbPress, and even standalone plugins that could become community projects. Check out our <a href="http://codex.wordpress.org/GSoC2011">Codex page on GSoC 2011</a> for some ideas to get you thinking.</li>\n<li>Last year we mentored 15 students, and hope to take on about the same number this year.</li>\n</ul>\n<p>If you&#8217;re a college student/developer, we encourage you to apply. If you&#8217;re a professor or a teacher of graduating high school seniors, encourage your students! If you just want to help us spread the word, <a title="WordPress GSoC 2011 flyer in PDF format (black and white, 8.5 x 11)" href="http://wpdevel.files.wordpress.com/2011/03/wordpress-gsoc-2011-flyer.pdf">download the WordPress GSoC flyer</a> and post it on campus bulletin boards in your town. Remember, April 8 is the deadline to apply!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:69:"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:31:"http://wordpress.org/news/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";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:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"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:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 28 Jun 2011 15:12:55 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:10:"x-pingback";s:36:"http://wordpress.org/news/xmlrpc.php";s:13:"last-modified";s:29:"Fri, 24 Jun 2011 23:15:22 GMT";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no');
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 your website.\n\nWPtouch automatically transforms your WordPress blog into an iPhone applicatio";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:17:"BraveNewCode Inc.";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:2;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:"Alex Rabe on "NextGEN Gallery"";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/nextgen-gallery/#post-1169";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, 23 Apr 2007 20:08: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:"1169@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:108:"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.";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:9:"Alex Rabe";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:3;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:36:"Frederick Townes on "W3 Total Cache"";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/w3-total-cache/#post-12073";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:"Wed, 29 Jul 2009 18:46:31 +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:"12073@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:135:"Improve site performance and user experience via caching: browser, page, object, database, minify and content delivery network support.";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:16:"Frederick Townes";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:4;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:36:"Takayuki Miyoshi on "Contact Form 7"";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:61:"http://wordpress.org/extend/plugins/contact-form-7/#post-2141";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, 02 Aug 2007 12:45:03 +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:"2141@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:54:"Just another contact form plugin. Simple but flexible.";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:16:"Takayuki Miyoshi";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:5;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:22:"edo888 on "GTranslate"";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:58:"http://wordpress.org/extend/plugins/gtranslate/#post-14437";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, 26 Nov 2009 17:35:42 +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:"14437@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:108:"Get translations with a single click between 58 languages (more than 98% of internet users) on your website!";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:6:"edo888";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:6;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:96:"nicashmu on "Post video players, slideshow albums, photo galleries and music / podcast playlist"";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:81:"http://wordpress.org/extend/plugins/video-playlist-and-gallery-plugin/#post-23415";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, 04 Jan 2011 16:16: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:42:"23415@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:73:"Post your videos, photo galleries/flash slideshows easily and in seconds.";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:"nicashmu";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:7;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:42:"Mike Challis on "Fast Secure Contact Form"";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:63:"http://wordpress.org/extend/plugins/si-contact-form/#post-12636";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, 27 Aug 2009 01:20:04 +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:"12636@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:131:"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.";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:"Mike Challis";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:8;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:29:"Arne on "Google XML Sitemaps"";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:70:"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132";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, 09 Mar 2007 22:31:32 +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:"132@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:105:"This plugin will generate a special XML sitemap which will help search engines to better index your blog.";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:4:"Arne";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:9;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:38:"Brian Colinger on "WordPress Importer"";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:66:"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101";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, 20 May 2010 17:42:45 +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:"18101@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:101:"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.";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:14:"Brian Colinger";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:10;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:38:"SEO Design Solutions on "SEO Ultimate"";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:60:"http://wordpress.org/extend/plugins/seo-ultimate/#post-10779";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, 21 May 2009 16:15:15 +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:"10779@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:147:"This all-in-one SEO plugin gives you control over title tags, noindex, meta tags, slugs, canonical, autolinks, 404 errors, rich snippets, and more.";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:20:"SEO Design Solutions";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:11;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:"Michael Torbert on "WP Security Scan"";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:63:"http://wordpress.org/extend/plugins/wp-security-scan/#post-4986";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:"Sat, 29 Mar 2008 20:05:44 +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:"4986@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:63:"Scans your WordPress installation for security vulnerabilities.";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:15:"Michael Torbert";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:12;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:28:"casibus on "ourSTATS 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:65:"http://wordpress.org/extend/plugins/ourstatsde-widget/#post-18282";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:"Sat, 29 May 2010 14:16:19 +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:"18282@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:51:"create a widget for the ourstats.de counter service";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:7:"casibus";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:13;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:29:"Joe Dolson on "WP to Twitter"";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:60:"http://wordpress.org/extend/plugins/wp-to-twitter/#post-7509";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, 30 Oct 2008 20:13:21 +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:"7509@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:"Posts a Twitter update when you update your WordPress blog or post to your blogroll, using your chosen URL shortening service. Requires PHP 5 and cURL";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:"Joe Dolson";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:14;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:75:"_mjk_ on "AddThis featuring Sharing Buttons / Facebook Like / Tweet Button"";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/addthis/#post-8124";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:"Wed, 17 Dec 2008 16:03:39 +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:"8124@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:123:"The AddThis Social Bookmarking Widget allows any visitor to bookmark and share your site easily with many popular services.";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:5:"_mjk_";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/popular";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 28 Jun 2011 15:12:56 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2007-03-30 20:08:18";s:14:"content-length";s:4:"7980";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no'),
(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:"description";a:1:{i:0;a:5:{s:4:"data";s:156:"<p>Joseph Scott has written <a href="http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/">pressfs, a WordPress filesystem</a>. Cool!</p>";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 02:52:33 +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:4:"Matt";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:2;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:58:"Weblog Tools Collection: WordPress Theme Releases for 6/26";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=10182";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/uYhx7NA4QO0/";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:1618:"<p><img class="alignnone size-full wp-image-10183" title="rocketwood" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/rocketwood.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://www.wpcrown.com/project/rocket-wood/"><strong>Rocket Wood</strong></a> is a WordPress theme for business, portfolio, or corporate built with latest WordPress 3.1 features.</p>\n<p><img class="alignnone size-full wp-image-10184" title="simple" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/simple.jpg" alt="" width="150" height="106" /></p>\n<p><a href="http://tentblogger.com/simple-wordpress-theme/"><strong>Simple</strong></a> is a flexible, minimal theme focused on great typography.</p>\n<p><img class="alignnone size-full wp-image-10185" title="urbanclassic" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/urbanclassic.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/?p=1544"><strong>Urban Classic</strong></a> is great for a city business or corporation. It uses rich colours, valid xhtml, and three columns.</p>\n<p><img class="alignnone size-full wp-image-10186" title="zeesynergie" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/zeesynergie.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://themezee.com/zeesynergie/"><strong>zeeSynergie</strong></a> is a two column WordPress theme in an elegant and sleek design that fits perfectly for a blog or small business website.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/uYhx7NA4QO0" 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:"Sun, 26 Jun 2011 13:00:54 +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:3;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:39:"Matt: Robustness Principle Reconsidered";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=38330";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:55:"http://ma.tt/2011/06/robustness-principle-reconsidered/";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:206:"<p><a href="http://queue.acm.org/detail.cfm?id=1999945">The Robustness Principle Reconsidered in the most recent ACM Queue</a>. <cite>Hat tip: <a href="http://diveintomark.org/">Mark Pilgrim</a>.</cite></p>";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:"Sat, 25 Jun 2011 18:28:39 +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:4:"Matt";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:4;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:45:"Matt: WP Blocked in Kazakhstan and Kyrgyzstan";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=38328";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:61:"http://ma.tt/2011/06/wp-blocked-in-kazakhstan-and-kyrgyzstan/";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:593:"<p>Here&#8217;s an <a href="http://www.neweurasia.net/media-and-internet/update-on-wordpress-woes-in-kazakhstan-and-kyrgyzstan/">update on WordPress woes in Kazakhstan and Kyrgyzstan</a>. As far as I know we&#8217;ve had no contact with KazakhTelecom. Typically this happens when they don&#8217;t like something a blog is saying, so they block or degrade service for everybody. The footer of the site links to Global Voices <a href="http://advocacy.globalvoicesonline.org/projects/guide/">Anonymous Blogging with WordPress and Tor</a> guide, which is still excellent all these years later.</p>";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:"Sat, 25 Jun 2011 17:42:45 +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:4:"Matt";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:5;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: Local Development Tips";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=38326";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/local-development-tips/";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:154:"<p>Mark Jaquith writes <a href="http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/">WordPress local dev tips: DB &amp; plugins</a>.</p>";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:"Sat, 25 Jun 2011 17:09:45 +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:4:"Matt";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:6;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:51:"Weblog Tools Collection: WordPress 3.2 RC2 Released";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=10178";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/D7mZdCCaN7U/";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:1091:"<p><a href="http://wordpress.org/">WordPress</a> 3.2 RC2 <a href="http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate-2/">has been released</a>. There have been a few changes made since <a href="http://weblogtoolscollection.com/archives/2011/06/15/wordpress-3-2-rc1-released/">RC1</a>, including a few Twenty Eleven tweaks, a new option to randomize header images, and some RTL fixes.</p>\n<p>This may be the last release candidate before the final, so now&#8217;s the time for developers to test their themes and plugins, if they have not done so already.</p>\n<p>If you find any bugs, please check <a href="http://core.trac.wordpress.org/report/5">the known issues</a> first, then <a href="http://codex.wordpress.org/Reporting_Bugs">file a bug report</a>. If you need any help, please feel free to contact <a href="http://wordpress.org/support/forum/alphabeta">the WordPress.org Support Forums</a>.</p>\n<p>Have you tried WordPress 3.2 yet? What do you think so far?</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/D7mZdCCaN7U" 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:"Sat, 25 Jun 2011 13:00:25 +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:7;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:22:"Matt: MyISAM vs InnoDB";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=38323";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:38:"http://ma.tt/2011/06/myisam-vs-innodb/";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:212:"<p>{EAV_BLOG_VER:c967aa2d93c7cb18} Mark Maunder writes <a href="http://markmaunder.com/2011/wordpress-myisam-vs-innodb-mysql/">Can WordPress Developers survive without InnoDB? MyISAM vs InnoDB benchmarks</a>.</p>";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:"Sat, 25 Jun 2011 02:47: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Matt";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:8;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:43:"Dev Blog: 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:33:"http://wordpress.org/news/?p=1915";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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:1875:"<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 fixes.</p>\n<p>Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release. Users are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause. If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a> or <a href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href="http://core.trac.wordpress.org/">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="http://wordpress.org/wordpress-3.2-RC2.zip">download the release candidate here</a> (zip).</p>\n<p>If any known issues crop up, you&#8217;ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>. If you&#8217;d like to know which levers to pull in your testing, <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">check out a list of features</a> in our Beta 1 post.</p>";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: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:"";}}}}}i:9;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/24";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=10176";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/vxQ_-3Bj22o/";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:1627:"<h3>New plugins</h3>\n<p><a href="http://tentblogger.com/gravatar-reminder/"><strong>Gravatar Reminder</strong></a> is a very simple plugin to remind people to get a <a href="http://gravatar.com/">Gravatar</a>.</p>\n<p><a href="http://tinsology.net/plugins/wp-get/"><strong>WP Get</strong></a> allows you to display content in posts dynamically, depending on URL parameters.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/addthis/"><strong>AddThis</strong></a> allows any visitor to bookmark and share your site easily with many popular services.</p>\n<p><a href="http://wordpress.org/extend/plugins/benchmark-email-lite/"><strong>Benchmark Email Lite</strong></a> creates a newsletter signup form widget.</p>\n<p><a href="http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-jquery-vertical-accordion-menu-widget/"><strong>jQuery Vertical Accordion Menu</strong></a> creates vertical accordion menus from any WordPress custom menu.</p>\n<p><a href="http://wordpress.org/extend/plugins/w3-total-cache/"><strong>W3 Total Cache</strong></a> allows you to improve site performance and user experience via caching.</p>\n<p><a href="http://wordpress.org/extend/plugins/wptouch/"><strong>WPtouch</strong></a> automatically transforms your WordPress blog into an iPhone application-style theme, complete with ajax loading articles and effects, when viewed from an iPhone, iPod touch, Android, Opera Mini, Palm Pre, Samsung touch and BlackBerry Storm/Torch mobile devices.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/vxQ_-3Bj22o" 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:"Fri, 24 Jun 2011 13:00:55 +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:10;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:52:"Mark Jaquith: WordPress local dev tips: DB & plugins";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:39:"http://markjaquith.wordpress.com/?p=645";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:69:"http://markjaquith.wordpress.com/2011/06/24/wordpress-local-dev-tips/";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:5542:"<p>Running a WordPress site on your local machine is a great way to do development. I&#8217;ve taken advantage of this to do development while on flights (and yes, I realize that in about 5 years it&#8217;s going to seem positively <em>quaint</em> that there used to be flights without Internet access).</p>\n<p>Today, I&#8217;d like to tackle two common issues when running a WordPress site locally:</p>\n<ol>\n<li>Handling differing database connection details</li>\n<li>Handling plugins that can&#8217;t or shouldn&#8217;t run on a localhost</li>\n</ol>\n<p>My assumptions:</p>\n<ul>\n<li>You have your site in a Git repository</li>\n<li>You have a working LAMP/MAMP/WAMP/whatever setup.</li>\n<li>You already know how to do a mysqldump and import that dump to your local machine</li>\n</ul>\n<h3>Database connection details</h3>\n<p>Your database user and password are (or should) be different on your localhost than they are on your production environment. One way to handle this is to have <code>wp-config.php</code> not be in version control and have everyone make their own. Boo. Stop taking things out of version control. Another solution I&#8217;ve seen is that people modify the <code>wp-config.php</code> and just try to be really careful not to commit their local changes. Again, boo.</p>\n<p>Here&#8217;s how to do it. Open up your <code>wp-config.php</code> file.</p>\n<pre class="brush: php;">\nif ( file_exists( dirname( __FILE__ ) . ''/local-config.php'' ) ) {\n include( dirname( __FILE__ ) . ''/local-config.php'' );\n define( ''WP_LOCAL_DEV'', true ); // We''ll talk about this later\n} else {\n define( ''DB_NAME'', ''production_db'' );\n define( ''DB_USER'', ''production_user'' );\n define( ''DB_PASSWORD'', ''production_password'' );\n define( ''DB_HOST'', ''production_db_host'' );\n}\n</pre>\n<p>Ignore the <code>WP_LOCAL_DEV</code> define&#8230; I&#8217;ll explain that later.</p>\n<p>Now open up your <code>.gitignore</code> file.</p>\n<pre class="brush: plain;">\n/dir-that-contains-wp-config/local-config.php\n</pre>\n<p>There. Now you can just create a <code>local-config.php</code> file and put your <code>DB_*</code> defines in there. And thanks to the <code>.gitignore</code> addition, you won&#8217;t have to worry about accidentally committing your local config.</p>\n<p>But what if you want to override other defines locally? Well, just modify them in <code>wp-config.php</code> like so:</p>\n<pre class="brush: php;">\nif ( !defined( ''SCRIPT_DEBUG'' ) )\n define( ''SCRIPT_DEBUG'', false );\n</pre>\n<p>And make sure they&#8217;re after the <code>local-config.php</code> block. Now you can override these defines as well.</p>\n<h3>Plugins that are production-only</h3>\n<p>I&#8217;m a big fan of <a href="http://vaultpress.com/">VaultPress</a> from Automattic. But this is not something you want to run on your localhost. Other backup plugins probably fall into this category of &#8220;production-only.&#8221;</p>\n<p>The bad way to do this is to remember to disable this plugin after you import a DB snapshot to your localhost. Boo. Remember <code>WP_LOCAL_DEV</code> that we set earlier? Let&#8217;s use it.</p>\n<p>I&#8217;ve written a quick &#8220;must-use&#8221; plugin to handle conditional plugin disabling. <a href="https://gist.github.com/1044546">Get it here</a>, and put it in the <code>mu-plugins</code> directory (create it in your WP content directory if you don&#8217;t already have one).</p>\n<p>The part you modify is at the bottom:</p>\n<pre class="brush: php;">\nnew CWS_Disable_Plugins_When_Local_Dev( array( ''vaultpress.php'' ) );\n</pre>\n<p>I&#8217;ve jump-started you by putting <code>vaultpress.php</code> in there. Add plugin filenames to that array as necessary. Don&#8217;t forget that most plugins are in a subdirectory, so they&#8217;ll be in the form <code>plugin-name/plugin-name.php</code>.</p>\n<p>Now those plugins won&#8217;t be active when doing local dev (based on the presence of <code>local-config.php</code>).</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/645/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/645/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/645/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=645&subd=markjaquith&ref=&feed=1" width="1" height="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:"Fri, 24 Jun 2011 11:17:15 +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:12:"Mark Jaquith";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:11;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:54:"Weblog Tools Collection: WordPress.org Passwords Reset";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=10172";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/ibwz2aG09YE/";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:1461:"<p>The <a href="http://wordpress.org/">WordPress</a> team <a href="http://wordpress.org/news/2011/06/passwords-reset/">noticed some suspicious changes</a> made to the <a href="http://wordpress.org/extend/plugins/addthis/">AddThis</a>, <a href="http://wordpress.org/extend/plugins/wptouch/">WPtouch</a>, and <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a> plugins in <a href="http://wordpress.org/extend/plugins/">the official plugin directory</a>. The three plugins have been updated to remove the suspicious code, and all account passwords on WordPress.org have been reset as a precautionary measure. If you have an account on WordPress.org, you&#8217;ll need to <a href="http://wordpress.org/support/bb-login.php">reset your password</a>.</p>\n<p>To avoid future problems, or at the very least notice such activity sooner, the WordPress team <a href="http://wpdevel.wordpress.com/2011/06/22/plugin-committers-now-receive-svn-notify-emails-with/">has enabled notification emails</a> for all plugin developers for whenever their plugin files are changed.</p>\n<p>If you have a WordPress.com account or a self-hosted WordPress blog, this reset did not affect your own user account, but you should probably immediately upgrade your copies of AddThis, WPtouch, and W3 Total Cache, if you&#8217;re using them of course.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/ibwz2aG09YE" 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:"Thu, 23 Jun 2011 13:00:55 +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:12;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:99:"WordPress.tv: Ariz Jacinto Strategies for Using and Integrating WordPress CMS to PHP MVC Frameworks";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:27:"http://wordpress.tv/?p=6084";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:117:"http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/";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:1839:"<div id="v-urpXT8Ys" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6084/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6084/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6084/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6084&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/"><img alt="Ariz Jacinto CMS Doctor" src="http://videos.videopress.com/urpXT8Ys/ariz-jacinto-cms-doctor_scruberthumbnail_1.jpg" width="160" height="120" /></a></div>";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:"Wed, 22 Jun 2011 21:12:00 +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:14:"blazestreaming";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:13;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:86:"WordPress.tv: Bob Dunn How to Attract More Readers with a User-friendly WordPress Site";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:27:"http://wordpress.tv/?p=6088";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:104:"http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-wordpress-site/";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:1852:"<div id="v-Vpv0hZlp" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6088/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6088/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6088/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6088&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-wordpress-site/"><img alt="Bob Dunn How To Attract More Readers" src="http://videos.videopress.com/Vpv0hZlp/bob-dunn-how-to-attract-more-readers_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";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:"Wed, 22 Jun 2011 20:53:50 +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:14:"blazestreaming";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:14;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:73:"WordPress.tv: Bret Bernhoft Installing and Using Facebook Domain Insights";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:27:"http://wordpress.tv/?p=6105";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:91:"http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/";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:1885:"<div id="v-Phr2O9wZ" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6105/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6105/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6105/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6105&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/"><img alt="Bret Bernhoft Installing and Using Facebook Domain Insights" src="http://videos.videopress.com/Phr2O9wZ/bret-bernhoft-installing-and-using-facebook-domain-insights_scruberthumbnail_2.jpg" width="160" height="120" /></a></div>";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:"Wed, 22 Jun 2011 20:47:52 +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:14:"blazestreaming";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:15;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:18:"Matt: ExpanDrive 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:"guid";a:1:{i:0;a:5:{s:4:"data";s:21:"http://ma.tt/?p=38320";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:34:"http://ma.tt/2011/06/expandrive-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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:401:"<p>ExpanDrive, a program I&#8217;ve used for years, allows you to mount FTP, SFTP, or S3 accounts as local drives on your computer on Mac or Windows. <a href="http://blog.expandrive.com/2011/06/21/expandrive-2-for-windows-ftp-and-s3-blazing-fast-sftp/">They just released their new Windows version</a>, and it&#8217;s fast and slick. They support key authentication, which is my must-have feature.</p>";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:"Wed, 22 Jun 2011 13:12:24 +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:4:"Matt";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:16;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:58:"Weblog Tools Collection: WordPress Theme Releases for 6/22";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=10165";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/D9GIo78Jvh8/";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:1257:"<p><img class="alignnone size-full wp-image-10166" title="brightnews" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/brightnews.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/?p=1502"><strong>Bright News</strong></a> is a simple, bright, and colorful theme that&#8217;s great for blogs, news sites and/or newsletters.</p>\n<p><img class="alignnone size-full wp-image-10167" title="minimalxpert" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/minimalxpert.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://www.wpexplorer.com/minimal-xpert.html"><strong>Minimal Xpert</strong></a> is a very clean and professional theme that is perfect for both business and blogging use.</p>\n<p><img class="alignnone size-full wp-image-10168" title="trending" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/trending.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/trending"><strong>Trending</strong></a> is a theme for bloggers that uses multiple nav menus, several sidebars, and custom post layouts.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/D9GIo78Jvh8" 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:"Wed, 22 Jun 2011 13:00: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: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:17;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:25:"Dev Blog: Passwords Reset";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=1908";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:50:"http://wordpress.org/news/2011/06/passwords-reset/";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:1289:"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We&#8217;re still investigating what happened, but as a prophylactic measure we&#8217;ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you&#8217;ll need to <a href="http://wordpress.org/support/bb-login.php">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href="http://wordpress.org/extend/plugins/addthis/">AddThis</a>, <a href="http://wordpress.org/extend/plugins/wptouch/">WPtouch</a>, or <a href="http://wordpress.org/extend/plugins/w3-total-cache/">W3 Total Cache</a> and there&#8217;s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>";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, 21 Jun 2011 23:57:42 +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:14:"Matt Mullenweg";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:18;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:40:"Matt: Pharrell Williams at Home in Miami";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=38318";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:56:"http://ma.tt/2011/06/pharrell-williams-at-home-in-miami/";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:210:"<p>The Selby goes with <a href="http://theselby.com/5_25_10_PharrellWilliamsEd/">Pharrell Williams at Home in Miami</a>. Explore the rest of the site, this is actually one of the less-interesting galleries.</p>";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, 21 Jun 2011 23:47:44 +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:4:"Matt";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:19;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:24:"Matt: Alec Baldwin on WP";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=38316";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:40:"http://ma.tt/2011/06/alec-baldwin-on-wp/";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:337:"<p>Alec Baldwin, my favorite character on 30 Rock, <a href="http://www.alecbaldwin.com/">has a great-looking WordPress-powered site</a>. It was also built by <a href="http://www.alleyinteractive.com/">Alley Interactive</a> who did the Observer site I <a href="http://ma.tt/2011/06/new-york-observer/">blogged about the other day</a>.</p>";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, 21 Jun 2011 16:22:29 +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:4:"Matt";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:20;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:77:"Weblog Tools Collection: What WordPress 3.2 items are you looking forward 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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:41:"http://weblogtoolscollection.com/?p=10162";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/qqnOY-Fc3y0/";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:1300:"<p>With <a href="http://weblogtoolscollection.com/archives/2011/06/15/wordpress-3-2-rc1-released/">the release of RC 1</a>, <a href="http://wordpress.org/">WordPress</a> 3.2 is fast approaching completion. Besides <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">some notable changes</a>, WordPress 3.2 has actually received a total of <a href="http://core.trac.wordpress.org/milestone/3.2">over 370 changes</a> to date.</p>\n<p>Not only will this version of WordPress be dropping support for <a href="http://weblogtoolscollection.com/archives/2011/03/23/do-you-still-use-internet-explorer-6/">Internet Explorer 6</a> and requiring a minimum of PHP 5.2.4 and MySQL 5, but it will be introducing <a href="http://weblogtoolscollection.com/archives/2011/05/04/distraction-free-writing-is-coming-to-wordpress/">distraction free writing</a>, <a href="http://weblogtoolscollection.com/archives/2011/05/06/wordpress-3-2-new-dashboard-and-twenty-eleven/">a new Dashboard</a>, <a href="http://weblogtoolscollection.com/archives/2011/06/07/new-wordpress-default-theme-unveiled/">Twenty Eleven</a>, and an expanded Admin Bar.</p>\n<p>Which feature are you looking forward to the most?</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/qqnOY-Fc3y0" 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, 21 Jun 2011 13:00:20 +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:21;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:33:"Matt: Gopher dead, blogging lives";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=38314";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:48:"http://ma.tt/2011/06/gopher-dead-blogging-lives/";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:178:"<p><a href="http://inessential.com/2011/06/15/gopher_dead_blogging_lives">Gopher dead, blogging lives</a>. &#8220;If blogs are dead, what are we reading in Instapaper?&#8221;</p>";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, 20 Jun 2011 23:57:15 +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:4:"Matt";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:22;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:29:"Matt: Four Cool WP .gov Sites";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=38312";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/four-cool-wp-gov-sites/";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:1205:"<p>I was in Washington DC last week at the <a href="http://opengovdc.com/">OpenGovDC conference</a> where I participated on a panel about design. The organizers and many of the speakers were pretty Drupal-focused, but I did get to meet some folks and learn about the ever-growing use of WordPress inside the Beltway. Here are four:</p>\n<ol>\n<li><a href="http://www.consumerfinance.gov/">CFPB, Consumer Financial Protection Bureau</a>. This is the best-looking of the four, and 100% WordPress.</li>\n<li><a href="http://www.mo.gov/">MO.gov, Missouri State</a>. Is there a LESS.gov? <img src="http://s.ma.tt/blog/wp-includes/images/smilies/icon_wink.gif" alt=";)" class="wp-smiley" /> The show-me state has a solid WP-as-CMS going here.</li>\n<li><a href="http://www.compliance.gov/">Office of Compliance</a>. As exciting as it sounds.</li>\n<li><a href="http://www.nccs.gov/">NCCS.gov, National Center for Computational Sciences</a>. Website is okay, but center is super-cool: they provide super-computing (tens of thousands of processors) for open scientific research.</li>\n</ol>\n<p>Any other favorites? Particularly well-designed ones like <a href="http://consumerfinance.gov/">consumerfinance.gov</a>.</p>";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, 20 Jun 2011 19:03: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:4:"Matt";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:23;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:76:"Publisher Blog: Bangor Daily News: A complete publishing system on WordPress";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:43:"http://publisherblog.automattic.com/?p=1575";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:107:"http://publisherblog.automattic.com/2011/06/20/bangor-daily-news-a-complete-publishing-system-on-wordpress/";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:8778:"<p>Check out the inspiring and detailed story about <a href="http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781">Bangor Daily News switching to a publishing system powered by WordPress and Google Docs</a>, on Media Bistro. There&#8217;s also a screencast which <a href="http://www.screenr.com/8J8s">outlines their new editorial workflow</a> and a list of all the plugins you can install to run your own news site with WordPress (emphasis ours):</p>\n<blockquote><p>The Bangor Daily News announced this week that it completed its full transition to open source blogging software, WordPress. And get this: The workflow integrates seamlessly with InDesign, meaning the paper now has one content management system for both its web and print operations. And if youre auspicious enough, you can do it too — hes <strong>open-sourced all the code</strong>!</p>\n<p>Rather than having to pay a licensing fee to a company that runs your content management system, what The BDN has set up is essentially free to run. Of course, there were upfront costs involved with paying freelancers to help write the plugins, and each month the website has to pay hosting fees, but the rest of the tools they use are free for everyone. WordPress is open source software that anyone can download and use. Google Docs is also a free product if your organization is small enough. [<em><a href="http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781">Media Bistro</a></em>]</p></blockquote>\n<p>We also had a chance to speak with William Davis, part of the <a href="http://dev.bangordailynews.com/2011/06/14/credits/">Bangor Daily News team who led the integration</a> who told us more about their decision to use WordPress:</p>\n<p>&#8220;We looked at several solutions, including proprietary hosted solutions, but we quickly decided they wouldn&#8217;t offer the flexibility we needed. We didn&#8217;t want to have to wait around for a corporation to develop any features we needed. We wanted to be able to get into the guts of our website if we needed to,&#8221; Davis said. &#8220;We&#8217;re growing quickly online, so we wanted a platform that allowed us to develop and deploy easily and with speed.&#8221;</p>\n<p>Through a series of plugins they developed specifically for their news site, and utilizing a few from the WordPress community, Bangor Daily News extended WordPress to do exactly what they needed it to do.</p>\n<p>&#8220;To us, that&#8217;s the beauty of WordPress: It&#8217;s more easily extendable than any other CMS. In nine months I haven&#8217;t hacked core once except to apply patches,&#8221; said Davis.</p>\n<p>Some of those plugins include, in Davis&#8217; words:</p>\n<ul>\n<li>the <a href="http://wordpress.org/extend/plugins/zoninator/" target="_blank">Zoninator</a> (written by now-<a title="VentureBeat now on WordPress.com VIP" href="http://automattic.com/about">Automattician</a> Mo Jangda) that allows us to order posts in specific zones, such as the home page, instead of displaying them in reverse-chronological order. It&#8217;s a must-have for any publisher on WordPress and we&#8217;re very pleased he released it. I believe it will be available for WordPress.com VIP members soon.</li>\n<li>We use custom post types for quite a bit, including to power our <a href="http://bangordailynews.com/contact/" target="_blank">contact pages</a>, our <a href="http://bangordailynews.com/events/" target="_blank">events pages</a>, our <a href="http://bangordailynews.com/?post_type=slideshow" target="_blank">photo galleries</a>, our <a href="http://bangordailynews.com/?post_type=ugc" target="_blank">our user-contributed content</a> and our candidate pages for the election. Each of those are a separate plugin, and all will be open-sourced eventually.</li>\n<li>We use <a href="http://wordpress.org/extend/plugins/terms-to-links/" target="_blank">Terms to Links</a>, which I built after being inspired by someone else&#8217;s plugins, to <a href="http://bangordailynews.com/2011/06/07/politics/lepage-vetoes-foreign-loggers-bill/" target="_blank">automatically link</a> people, organizations and places to drive readers deeper into the site. Each of those are custom taxonomies.</li>\n<li>We use <a href="http://wordpress.org/extend/plugins/edit-flow/" target="_blank">Edit Flow</a>, a CoPress project, to handle copy flow once it gets into WordPress. It&#8217;s another must-have.</li>\n<li>We use <a href="http://wordpress.org/extend/plugins/media-credit/" target="_blank">Media Credit</a> to handle attribution for images.</li>\n<li>We use Automattic&#8217;s own <a href="http://polldaddy.com/" target="_blank">PollDaddy</a>, with a custom plugin on top of theirs, to handle <a href="http://bangordailynews.com/polls/" target="_blank">polls</a>.</li>\n</ul>\n<p>The changes to Bangor Daily News&#8217; editorial workflow have been immediate and dramatic, but they have also seen an increase in productivity regarding their development cycle, and their site has benefited with an increase in traffic, too.</p>\n<p>&#8220;We started rolling things out in earnest in January, and the change has been dramatic. With one workflow with WordPress at the center we&#8217;ve cut down handling times for articles dramatically — we&#8217;re now able to get the news out faster than ever before. We&#8217;ve also seen a nice jump in search engine traffic thanks to more advanced URLs. Our build times are now down dramatically, as well — we can develop or patch features as quickly as they need to be addressed. The speed at which we break news requires a nimble API to develop with, and we&#8217;ve already been able to put it to the test, to great results.&#8221;</p>\n<p>They were also able to take advantage of <a href="http://codex.wordpress.org/WordPress_API%27s">WordPress&#8217; APIs</a> to integrate everything and even publish back to the print version in InDesign, creating a truly seamless publishing system.</p>\n<p>&#8220;I&#8217;m proud of how deeply we&#8217;ve integrated WordPress into everything we do. Our stories start in Google Docs, where our reporters write and our editors edit. Those are seamlessly and automatically moved to WordPress when they&#8217;re ready to be published — no more copying and pasting. We also use <a href="https://github.com/bangordailynews/WordPress-xmlrpc-extenders" target="_blank">XML-RPC</a> to easily find and bring content onto the print page in InDesign. We custom-built an InDesign plugin to accomplish that.&#8221;</p>\n<p><a href="http://bangordailynews.com/"><img class="aligncenter size-full wp-image-1577" title="bangornews" src="http://wordpresspublishers.files.wordpress.com/2011/06/bangornews.jpg?w=640&h=516" alt="" width="640" height="516" /></a><br />\nVisit <a href="http://bangordailynews.com/">Bangor Daily News</a></p>\n<p><em></em><strong><em><a href="http://get.wp.com/"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></strong></p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1575/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1575/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1575/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1575&subd=wordpresspublishers&ref=&feed=1" width="1" height="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:"Mon, 20 Jun 2011 16:29:05 +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:"Sara Rosso";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:24;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/20";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=10160";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/52JfEZE8aNw/";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:1440:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/crawlable-facebook-comments/"><strong>Crawlable Facebook Comments</strong></a> retrieves Facebook comments (with authors, dates and replies) and makes them visible in your source code.</p>\n<p><a href="http://ottopress.com/2011/howto-html5-video-that-works-almost-everywhere/"><strong>HTML5 Video Shortcode</strong></a> allows you to quickly and easily add HTML5 Video tags as a shortcode.</p>\n<p><a href="http://tentblogger.com/rss-reminder/"><strong>TentBlogger RSS Reminder</strong></a> is a simple way of capturing commenters and calling them to subscribe to your feed.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://www.fastsecurecontactform.com/"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href="http://wordpress.org/extend/plugins/si-captcha-for-wordpress/"><strong>SI CAPTCHA Anti-Spam</strong></a> adds CAPTCHA anti-spam methods to WordPress forms for comments, registration, lost password, login, or all. In order to post comments or register, users will have to type in the code shown on the image.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/52JfEZE8aNw" 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:"Mon, 20 Jun 2011 13:00:52 +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:25;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:46:"Matt: Newspaper with WordPress And Google Docs";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=38310";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://ma.tt/2011/06/newspaper-with-wordpress-and-google-docs/";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:390:"<p><a href="http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781">How To Run A News Site And Newspaper Using WordPress And Google Docs</a>. This is why I love saying &#8220;scripting is the new literacy.&#8221; A bit of scripting glue can tie together Big Projects like WP and Google Docs to create something completely novel.</p>";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, 19 Jun 2011 14:53:39 +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:4:"Matt";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:26;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: Achievement Design 101";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=38308";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/achievement-design-101/";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:261:"<p><a href="http://www.gamasutra.com/blogs/GregMcClanahan/20091202/3709/Achievement_Design_101.php">Gamasutra: Greg McClanahan&#8217;s Blog &#8211; Achievement Design 101</a>. Long article, but worth getting through. I&#8217;ve had it in Instapaper forever.</p>";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, 19 Jun 2011 06:29:38 +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:4:"Matt";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:27;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:58:"Weblog Tools Collection: WordPress Theme Releases for 6/18";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=10153";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/iAVj83SviLc/";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:1223:"<p><img class="alignnone size-full wp-image-10154" title="blueline" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/blueline.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/blueline"><strong>Blueline</strong></a> is a two-column, fixed-width, and conservative theme.</p>\n<p><img class="alignnone size-full wp-image-10155" title="neuro" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/neuro.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/neuro"><strong>Neuro</strong></a> is a clean and easily customizable HTML5 design, featuring customizable theme options, the Neuro slider, dynamic header for custom logo, and much more.</p>\n<p><img class="alignnone size-full wp-image-10157" title="vintagespring" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/vintagespring1.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/?p=1477"><strong>Vintage Spring</strong></a> is a very subtle, pretty theme with a vintage floral background.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/iAVj83SviLc" 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:"Sat, 18 Jun 2011 13:00:14 +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:28;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:23:"Matt: New York Observer";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=38305";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:39:"http://ma.tt/2011/06/new-york-observer/";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:197:"<p>WordPress Publisher Blog: <a href="http://publisherblog.automattic.com/2011/06/17/ny-observer/">Influential Weekly The New York Observer Migrates from Drupal to WordPress</a>. <em>Cool!</em></p>";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:"Sat, 18 Jun 2011 10:44:17 +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:4:"Matt";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:29;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:22:"Matt: Every 60 Seconds";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=38303";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:38:"http://ma.tt/2011/06/every-60-seconds/";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:264:"<p><a href="http://www.adverblog.com/2011/06/15/60-seconds-on-the-web-infographic/60seconds/">Every 60 seconds on the web</a> there are 50+ WordPress downloads and 60+ new blogs created. <cite>Hat tip: <a href="http://andrewnacin.com/">Andrew Nacin</a>.</cite></p>";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, 17 Jun 2011 17:32:13 +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:4:"Matt";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:30;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:90:"Publisher Blog: Influential Weekly The New York Observer Migrates from Drupal to WordPress";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:43:"http://publisherblog.automattic.com/?p=1553";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:59:"http://publisherblog.automattic.com/2011/06/17/ny-observer/";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:2737:"<p>Last week<em> The New York Observer</em> launched a redesign of <a href="http://observer.com">Observer.com</a>, and switched from Drupal to <a href="http://wordpress.org">WordPress</a> in the process.</p>\n<p>The site&#8217;s redesign &#8220;focused on cleaner presentation that would accommodate more breaking news and higher volume posting&#8221;, says Elizabeth Spiers, the paper&#8217;s editor-in-chief. [<a href="http://news.yahoo.com/s/yblog_thecutline/20110607/bs_yblog_thecutline/new-york-observer-to-emphasize-long-form-scoops-with-new-web-design">via</a>]</p>\n<p><a href="http://observer.com"><img class="aligncenter size-full wp-image-1554" title="NY Observer" src="http://wordpresspublishers.files.wordpress.com/2011/06/screen-shot-2011-06-16-at-2-25-37-pm.png?w=640&h=474" alt="" width="640" height="474" /></a></p>\n<p>[Visit <a href="http://observer.com">Observer.com</a>]</p>\n<p><em><a href="http://get.wp.com/"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1553/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1553/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1553/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1553&subd=wordpresspublishers&ref=&feed=1" width="1" height="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:"Fri, 17 Jun 2011 14:33: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:13:"Paul Maiorana";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:31;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:52:"Publisher Blog: VentureBeat now on WordPress.com VIP";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:43:"http://publisherblog.automattic.com/?p=1537";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:76:"http://publisherblog.automattic.com/2011/06/16/venturebeat-wordpresscom-vip/";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:2821:"<p>At the end of last week <a href="http://venturebeat.com/">VentureBeat.com</a> migrated to <a href="http://vip.wordpress.com/hosting/">WordPress.com VIP hosting</a></p>\n<p>Started by award-winning journalist <a href="http://venturebeat.com/about/">Matt Marshall</a> in 2006, VentureBeat has long been a <a href="http://wordpress.org/">WordPress</a> showcase site. Today, nearly 30,000 articles have been published on VentureBeat, and the archives dates back to August, 2004. There is a lot of our tech industry history laid out in these articles, and insights throughout.</p>\n<p><a href="http://venturebeat.com/"><img class="aligncenter size-full wp-image-1565" title="VentureBeat.com" src="http://wordpresspublishers.files.wordpress.com/2011/06/veaturebeat.jpg?w=600&h=572" alt="Screenshot of VentureBeat.com Home page" width="600" height="572" /></a></p>\n<p>While monitoring the import to WordPress.com, it was cool to see the team growth and the breadth of topics covered increase tenfold from its inception.</p>\n<p>[Visit <a href="http://venturebeat.com/">VentureBeat.com</a>]</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1537/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1537/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1537/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1537&subd=wordpresspublishers&ref=&feed=1" width="1" height="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:"Thu, 16 Jun 2011 23:43:48 +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:"Lloyd Budd";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:32;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:66:"Alex King: Use $content_width to Set Width of oEmbeds in WordPress";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:27:"http://alexking.org/?p=5910";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:90:"http://alexking.org/blog/2011/06/16/use-content_width-to-set-width-of-oembeds-in-wordpress";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:876:"<p>If you want resulting oEmbed code to scale to a specific size (width) in WordPress, you can do this really easily by setting the <code>$content_width</code> global variable before calling your oEmbed processing.</p>\n<p>Example:</p>\n<div class="code">\n<pre>global $wp_embed, $content_width;\n$content_width = ''600''; // set to desired width\n$string_with_embedded_content = $wp_embed->autoembed($string_with_oembed_url);</pre>\n</div>\n<p>I only recently ran across this feature (just recently had the need for it), though it&#8217;s been around for <a href="http://wordpress.org/extend/ideas/topic/oembed-to-configure-width-and-height-of-video" rel="external">at least a year</a>. In talking with some other devs, it seems to not be a widely known feature &#8211; hopefully this helps.</p>\n<img src="http://alexking.org/wp/?ak_action=api_record_view&id=5910&type=feed" alt="" />";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, 16 Jun 2011 18:57: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:4:"Alex";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:33;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/16";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=10151";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/0JM90aTdb58/";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:1128:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/delete-custom-fields/"><strong>Delete Custom Fields</strong></a> will let you delete every instance of a custom field from your site.</p>\n<p><a href="http://godropship.com/OfferMatch.html"><strong>OfferMatch</strong></a> shows offers or ads related to your posts.</p>\n<p><a href="http://www.toppa.com/simpletest-for-wordpress/"><strong>SimpleTest for WordPress</strong></a> is a tool for WordPress plugin developers who want to create and run automated tests for their plugins.</p>\n<p><a href="http://www.toppa.com/toppa-plugin-libraries-for-wordpress/"><strong>Toppa Plugin Libraries for WordPress</strong></a> includes several utilities for plugin developers. They facilitate the use of Agile coding techniques for developing WordPress plugins.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/"><strong>WordPress Beta Tester</strong></a> allows you to easily upgrade to WordPress Beta releases.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/0JM90aTdb58" 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:"Thu, 16 Jun 2011 13:00:53 +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:34;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:51:"Weblog Tools Collection: WordPress 3.2 RC1 Released";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=10147";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/gJZWiWEiR7I/";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:1254:"<p><a href="http://wordpress.org/">WordPress</a> 3.2 RC1 <a href="http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/">has been released</a>. The release candidate stage is that special stage after beta which pretty much amounts to, &#8220;We think we&#8217;re done,&#8221; so now is the time for the community to really dig in, find bugs, and share some honest feedback.</p>\n<p><a href="http://core.trac.wordpress.org/milestone/3.2">Over 360 tickets</a> have been closed, so <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">quite a bit</a> has changed since WordPress 3.1, which means that now is definitely the time for plugin and theme developers to test their products before WordPress 3.2 is officially released.</p>\n<p>If you find any bugs, please check <a href="http://core.trac.wordpress.org/report/5">the known issues</a> first, then <a href="http://codex.wordpress.org/Reporting_Bugs">file a bug report</a>. If you need any help, please feel free to contact <a href="http://wordpress.org/support/forum/alphabeta">the WordPress.org Support Forums</a>.</p>\n<p>What do you think of WordPress 3.2 so far?</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/gJZWiWEiR7I" 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:"Wed, 15 Jun 2011 13:00:42 +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:35;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:58:"Weblog Tools Collection: WordPress Theme Releases for 6/14";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=10139";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/Ae8d6HG2OVM/";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:1314:"<p><img class="alignnone size-full wp-image-10140" title="coolorange" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/coolorange.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://www.jasong-designs.com/2011/06/12/cool-orange/"><strong>Cool Orange</strong></a> is a <a href="http://wordpress.org/extend/themes/sandbox">Sandbox</a> child theme with a cool, muted blue vs. bright orange color scheme.</p>\n<p><img class="alignnone size-full wp-image-10141" title="mygrid2" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/mygrid2.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/mygrid2"><strong>MYgRID2</strong></a> is a minimalistic WordPress theme in grey-silver colors with fresh look, fancy css3 and jQurey effects, widget ready area, automatic post thumbnail, and more.</p>\n<p><img class="alignnone size-full wp-image-10142" title="vibrato" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/vibrato.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/?p=1449"><strong>Vibrato</strong></a> is a bright, colorful, cheerful, and loud two column theme.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Ae8d6HG2OVM" 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, 14 Jun 2011 13:00:20 +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:36;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:41:"Dev Blog: WordPress 3.2 Release Candidate";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=1890";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:66:"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/";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:2296:"<p>The first release candidate (RC1) for WordPress 3.2 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think were done, but with tens of millions of users, a variety of configurations, and thousands of plugins, its possible weve missed something. So if you havent tested WordPress 3.2 yet, now is the time! Please though, not on your live site unless youre extra adventurous.</p>\n<p>Things to keep in mind:</p>\n<ul>\n<li>With <a href="http://core.trac.wordpress.org/milestone/3.2">more than 350 tickets closed</a>, there are plenty of changes. Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release.</li>\n<li><strong>Users</strong> are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.</li>\n<li>Twenty Eleven isn&#8217;t quite at the release candidate stage. <a href="http://cheezburger.com/Mmmbop/lolz/View/4683101952">Contents may settle</a>.</li>\n<li>If any known issues crop up, you&#8217;ll be able to <a href="http://core.trac.wordpress.org/report/5">find them here</a>.</li>\n</ul>\n<p>If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href="http://wordpress.org/support/forum/alphabeta/">Alpha/Beta area in the support forums</a> or <a href="http://lists.automattic.com/mailman/listinfo/wp-testers">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href="http://core.trac.wordpress.org/">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href="http://wordpress.org/wordpress-3.2-RC1.zip">download the release candidate here</a> (zip).</p>\n<p>Happy testing!</p>\n<p><em>If you&#8217;d like to know which levers to pull in your testing, <a href="http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/">check out a list of features</a> in our Beta 1 post.</em></p>";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, 14 Jun 2011 04:28:39 +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: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:"";}}}}}i:37;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:39:"Publisher Blog: LGBT Pride on WordPress";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:43:"http://publisherblog.automattic.com/?p=1532";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://publisherblog.automattic.com/2011/06/13/lgbt-pride-on-wordpress/";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:3114:"<p>This past weekend, there were many celebrations around the world for Gay and Lesbian Pride Month.</p>\n<p>We can&#8217;t help but feel a little extra pride that these GLBT sites are using WordPress:</p>\n<ul>\n<li><a href="http://glaadblog.org/">GLAAD</a></li>\n<li><a href="http://www.sfpride.org/blog/">San Francisco Pride</a></li>\n<li><a href="http://www.reacttoyournews.org/">NLGJA</a></li>\n<li><a href="http://www.newnownext.com/">NewNowNext</a></li>\n<li><a href="http://www.bostonpride.org/">Boston Pride</a></li>\n<li><a href="http://lgbtjewishheroes.org/">LGBT Jewish Heroes</a></li>\n<li><a href="http://www.havana.org.il/">Havana.org.il</a> (in Hebrew)</li>\n<li><a href="http://www.pridesofia.org/">Sofia Pride</a> (in Bulgarian)</li>\n<li><a href="https://magicm.wordpress.com/">Cologne CSD</a> (in German)</li>\n</ul>\n<p><strong>Know about another GLBT site that&#8217;s running on WordPress? Let us know in the comments!</strong></p>\n<p><a href="http://www.bostonpride.org/"><img class="aligncenter size-full wp-image-1533" title="Boston Pride (20110613)" src="http://wordpresspublishers.files.wordpress.com/2011/06/boston-pride-20110613.jpg?w=640&h=509" alt="" width="640" height="509" /></a></p>\n<p><strong><em></em></strong><strong><strong><em><a href="http://get.wp.com/"><strong>Want WordPress for your site? Get.WordPress.com</strong></a></em></strong></strong></p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1532/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1532/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1532/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1532&subd=wordpresspublishers&ref=&feed=1" width="1" height="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:"Mon, 13 Jun 2011 16:30: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:32:"http://purl.org/dc/elements/1.1/";a:1:{s:7:"creator";a:1:{i:0;a:5:{s:4:"data";s:10:"Sara Rosso";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:38;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:52:"Weblog Tools Collection: bbPress 2.0 Beta 3 Released";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=10134";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/9KRViPmPUBc/";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:1691:"<p><a href="http://bbpress.org/">bbPress</a> 2.0 Beta 3 <a href="http://bbpress.org/blog/2011/06/bbpress-2-0-beta-3/">has been released</a>. bbPress development is on schedule with a hopeful final launch around the same time as <a href="http://wordpress.org/">WordPress</a> 3.2. Since <a href="http://weblogtoolscollection.com/archives/2011/05/28/bbpress-2-0-beta-2-released/">the previous release</a>, the following changes have been made:</p>\n<ul>\n<li>Akismet integration</li>\n<li>Fixes replies within wp-admin</li>\n<li>Fixes reply notification links</li>\n<li>Fixes inconsistent breadcrumb behavior</li>\n<li>Fixes theme compatibility issues</li>\n<li>Fixes archive and page conflicts</li>\n<li>Improvements to unpretty permalink support</li>\n<li>Improvements to importer</li>\n<li>Improvements to multisite support</li>\n<li>Normalize theme, shortcodes, and template parts</li>\n<li>Add humans.txt</li>\n<li>Add empty index.php files to prevent snooping</li>\n<li>Add max length to topic titles (default 80 chars)</li>\n<li>Add shortcodes for login, register, and lost password forms</li>\n<li>Add proper redirect handling to topics and replies, allowing them to live almost anywhere</li>\n<li>Add permalink collision warnings if custom slugs conflict</li>\n</ul>\n<p>Though the first release candidate should be the next step, bbPress 2 is still not necessarily ready for use on a live site yet, but bbPress theme and plugin developers are encouraged to start testing now. If you encounter any bugs, please report them to the <a href="http://bbpress.trac.wordpress.org/">bbPress Trac</a>.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/9KRViPmPUBc" 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:"Mon, 13 Jun 2011 13:00:55 +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:39;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:"bbPress: bbPress 2.0, Beta 3";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:25:"http://bbpress.org/?p=450";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://bbpress.org/blog/2011/06/bbpress-2-0-beta-3/";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:2270:"<p>Available immediately is bbPress 2.0 <a href="http://wordpress.org/extend/plugins/bbpress/">Beta 3</a>, chock full of fixes and enhancements to help smooth out the integration of bbPress into your existing WordPress.org powered site. Your feedback has been super helpful, and there&#8217;s been so much testing we think a sarcastic cake-promising robot may be involved somewhere.</p>\n<p>You know the drill; this is still beta software, so dont use it on your production sites. If youre a plugin or theme developer, or a site administrator, run this only on test environments and report any bugs you find. If youre a loyal bbPress user who&#8217;s anxious to see what the future of bbPress looks like, create a secondary WordPress test site and let us know what you think about it in the support forums. Extra points if you&#8217;re testing with WordPress Multisite.</p>\n<p>So far we&#8217;re right on schedule for this to be the final beta before we start packaging release candidates, with bbPress 2.0 by the end of June (in tandem with <a href="http://wordpress.org/news/2011/05/wordpress-3-1-3/">WordPress 3.2</a>.) The more you kick the tires and the more miles you put on Beta 3 means a more dependable, longer lasting bbPress 2.0, so put your testing gloves on and take it for a spin!</p>\n<p>Here are some of the important changes since Beta 2:</p>\n<ul>\n<li>Akismet integration</li>\n<li>Fixes replies within wp-admin</li>\n<li>Fixes reply notification links</li>\n<li>Fixes inconsistent breadcrumb behavior</li>\n<li>Fixes theme compatibility issues</li>\n<li>Fixes archive and page conflicts</li>\n<li>Improvements to unpretty permalink support</li>\n<li>Improvements to importer</li>\n<li>Improvements to multisite support</li>\n<li>Normalize theme, shortcodes, and template parts</li>\n<li>Add humans.txt</li>\n<li>Add empty index.php files to prevent snooping</li>\n<li>Add max length to topic titles (default 80 chars)</li>\n<li>Add shortcodes for login, register, and lost password forms</li>\n<li>Add proper redirect handling to topics and replies, allowing them to live almost anywhere</li>\n<li>Add permalink collision warnings if custom slugs conflict</li>\n</ul>\n<p><a href="http://wordpress.org/extend/plugins/bbpress/">Download bbPress 2.0 Beta 3</a></p>";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, 12 Jun 2011 21:13:23 +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:17:"John James Jacoby";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:40;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/12";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=10130";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/n37XuaJXCsk/";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:1898:"<h3>New plugins</h3>\n<p><a href="http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-floating-tweets/"><strong>Floating Tweets</strong></a> adds a floating, slide out tab containing the latest tweets from any twitter account.</p>\n<p><a href="http://showappeal.com/random-redirect-2/"><strong>Random Redirect 2</strong></a> makes it easier for the average user to create a stumbleupon-like experience on any website and restrict the randomness to certain tags and keywords.</p>\n<p><a href="http://www.riyaz.net/social-metrics/"><strong>Social Metrics</strong></a> is a social media analytics tool you can use to track your WordPress blog performance on popular social networking websites and services.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://tinsology.net/plugins/amazon-tools/"><strong>Amazon Tools</strong></a> allows you to retrieve and display Amazon product information in your blog.</p>\n<p><a href="http://ottopress.com/wordpress-plugins/simple-twitter-connect/"><strong>Simple Twitter Connect</strong></a> is a series of plugins that let you add any sort of Twitter functionality you like to a WordPress blog.</p>\n<p><a href="http://www.designchemical.com/blog/index.php/wordpress-plugin-slick-contact-forms/"><strong>Slick Contact Forms</strong></a> creates a widget, which adds a contact form using either a floating, drop down button or a sticky, sliding tab.</p>\n<p><a href="http://posttypemanager.wordpress.com/"><strong>Ultimate Post Type Manager</strong></a> allows you to easily customize post types.</p>\n<p><a href="http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/"><strong>WordPress MU Sitewide Tags Pages</strong></a> provides a central area where all the posts on a WordPress MU or WordPress MS site can be collected.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/n37XuaJXCsk" 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:"Sun, 12 Jun 2011 13:00:10 +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:41;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:56:"Alex King: Detecting Lightboxed Pages in WordPress Admin";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:27:"http://alexking.org/?p=5897";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:81:"http://alexking.org/blog/2011/06/11/detecting-lightboxed-pages-in-wordpress-admin";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:676:"<p>When you want inject something into the WordPress admin, you might not think to account for pages that load inside lightboxes (plugin updates, media upload, etc.). Generally, you don&#8217;t want to add your JS/CSS/etc. to these pages.</p>\n<p>To check for this type of page load, you can check for the <code>IFRAME_REQUEST</code> constant:</p>\n<div class="code">\n<pre>if ( !defined( ''IFRAME_REQUEST'' ) ) {\n // do your normal WP admin page stuff here.\n wp_enqueue_script(...\n}</pre>\n</div>\n<p>Here is <a href="https://gist.github.com/1020947" rel="external">some sample code</a>.</p>\n<img src="http://alexking.org/wp/?ak_action=api_record_view&id=5897&type=feed" alt="" />";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:"Sat, 11 Jun 2011 20:56:40 +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:4:"Alex";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:42;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:58:"Weblog Tools Collection: WordPress Theme Releases for 6/10";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=10124";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/xX-iBO-FTdI/";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:1297:"<p><img class="alignnone size-full wp-image-10125" title="classic" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/classic.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://emptynestthemes.emptynestheritage.com/?p=1394"><strong>Classic</strong></a> is a bright, clean theme with three columns in black, grey and white, giving it a polished, professional look.</p>\n<p><img class="alignnone size-full wp-image-10126" title="greyopaque" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/greyopaque.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://wordpress.org/extend/themes/grey-opaque"><strong>Grey Opaque</strong></a> is a clear and elegant grey theme with some very nice opaque-effects.</p>\n<p><img class="alignnone size-full wp-image-10127" title="mycorporation" src="http://weblogtoolscollection.com/wp-content/uploads/2011/06/mycorporation.jpg" alt="" width="150" height="113" /></p>\n<p><a href="http://www.wpexplorer.com/my-corporation-wordpress-theme.html"><strong>My Corporation</strong></a> is a clean, professional and modern business WordPress theme and portfolio, that is perfect for professionals and corporations.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/xX-iBO-FTdI" 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:"Fri, 10 Jun 2011 13:00:10 +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:43;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:49:"Weblog Tools Collection: WordPress Tavern is Back";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=10120";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/lTZ0hDtomZA/";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:973:"<p>Less than a month ago, Jeff <a href="http://www.wptavern.com/thanks-for-everything">announced the end</a> of long-time <a href="http://wordpress.org/">WordPress</a> community, news source, and podcast, <a href="http://www.wptavern.com/">WordPress Tavern</a>. While all seemed lost, WordPress Tavern was picked up by an anonymous buyer, and <a href="http://www.wptavern.com/more-of-the-same-really">as announced</a>, Jeff will be containing to helm the community as always with no major changes in store for the foreseeable future.</p>\n<p>This is definitely a major victory for Jeff and the WordPress Tavern community, who&#8217;s <a href="http://www.wptavern.com/forum/">forum</a> had often been the go-to place for the greater WordPress community outside of the walls of the <a href="http://wordpress.org/support/">WordPress.org forums</a>. Well done, Jeff!</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/lTZ0hDtomZA" 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:"Thu, 09 Jun 2011 13:00:13 +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:44;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:58:"Weblog Tools Collection: WordPress Plugin Releases for 6/8";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=10117";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/qxhszR_ws2Q/";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:1128:"<h3>New plugins</h3>\n<p><a href="http://wordpress.org/extend/plugins/menu-humility/"><strong>Menu Humility</strong></a> shoves plugins with top level nav menus (below &#8220;Dashboard&#8221;) to the bottom of your Dashboard sidebar.</p>\n<p><a href="http://wordpress.org/extend/plugins/newsletter-sign-up/"><strong>Newsletter Sign-Up</strong></a> provides various ways to gain more subscribers to your mailing list.</p>\n<p><a href="http://dannyvankooten.com/wordpress-plugins/wysiwyg-widgets/"><strong>WYSIWYG Widgets</strong></a> allows you to create easy rich text widgets without having to know HTML.</p>\n<h3>Updated plugins</h3>\n<p><a href="http://scribu.net/wordpress/query-multiple-taxonomies"><strong>Query Multiple Taxonomies</strong></a> adds an advanced taxonomy navigation widget that lets users filter posts by multiple criteria.</p>\n<p><a href="http://wordpress.org/extend/plugins/wordpress-beta-tester/"><strong>WordPress Beta Tester</strong></a> allows you to easily upgrade to WordPress Beta releases.</p>\n<img src="http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/qxhszR_ws2Q" 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:"Wed, 08 Jun 2011 13:00:54 +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:45;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:33:"WPTavern: More Of The Same Really";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:31:"http://www.wptavern.com/?p=5273";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:85:"http://feedproxy.google.com/~r/WordpressTavern/~3/J7a_UGSK-Ig/more-of-the-same-really";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:3092:"<p>Long time no see. Last time we talked, I announced that I&#8217;d be stepping away and selling off everything I accomplished with this site and the podcast. I&#8217;m happy to report that not only have I sold the content I generated to an awesome buyer, they have requested that I continue about my business with WPTavern, the forum and the podcast as if nothing has happened. The only distinct change that has happened and will be the only thing to happen for the foreseeable future is that the site will be owned by someone else. I am in charge of maintaining and operating the site as I normally would. At the request of the new owner, the terms of the deal as well as who the new owner is is under wraps. </p>\n<p>So what this means is that I&#8217;ll be re-opening the forum as well as upgrading it to get it going again. I&#8217;ll also be conducting an episode or two of WordPress Weekly in the near future and I&#8217;ll be writing about WordPress again here on the site. I&#8217;m sticking around without any influence by the new owner as to what to write, say, or do. In all honesty, it&#8217;s a pretty weird deal on paper but it&#8217;s a deal that&#8217;s allowed me the greatest flexibility as well as allowing me to fulfill a couple of financial obligations that sprang up. For instance, I was recently able to put money down on a used truck. You don&#8217;t know how much you need a truck until you become a home owner!</p>\n<p>There is one change that I&#8217;ll be making. Thanks to the deal, I&#8217;m going to remove all display advertising from the site and will not need to pursue affiliate links in future reviews I do. While any additional income is great, writing without the weight of needing money is actually a huge weight off my shoulders. </p>\n<p>Before we get back to regular programming around here, I want to thank all of you for your comments on my good bye post. It became obvious that the audience of WPTavern values my work much more than I do. So many of you wanted me to stick around in some form or fashion while many of you were pretty darn sad to see WPWeekly to go by the wayside. It&#8217;s comments like those that convinced me of negotiating a deal that allowed me to stay on and manage the site.</p>\n<p>I&#8217;m not guaranteeing that I&#8217;ll be publishing posts or that I&#8217;ll be active in the forum every day or producing a podcast every weekend but I am guaranteeing that I&#8217;ll be behind the bar, taking your orders and continuing to talk about this thing called WordPress which is pretty cool publishing software. </p>\n\n\n<p>Related posts:<ol><li><a href="http://www.wptavern.com/thanks-for-everything" rel="bookmark" title="Permanent Link: Thanks For Everything">Thanks For Everything</a></li>\n<li><a href="http://www.wptavern.com/wptavern-is-my-home-and-youre-just-a-guest" rel="bookmark" title="Permanent Link: WPTavern Is My Home And You&#8217;re Just A Guest">WPTavern Is My Home And You&#8217;re Just A Guest</a></li>\n</ol></p><img src="http://feeds.feedburner.com/~r/WordpressTavern/~4/J7a_UGSK-Ig" 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:"Wed, 08 Jun 2011 11:06:39 +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:6:"Jeffro";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:46;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:61:"Mark Jaquith: How to write a WordPress plugin that Ill use";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:39:"http://markjaquith.wordpress.com/?p=634";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:79:"http://markjaquith.wordpress.com/2011/06/07/how-to-write-a-plugin-that-ill-use/";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:5631:"<p>I tend to be very fastidious about the WordPress plugins that I&#8217;ll install. I&#8217;ll often write my own simple version of a plugin rather than install one from someone else that does a bunch of stuff I don&#8217;t need. Here is my philosophy behind writing WordPress plugins, best witnessed through the plugins I&#8217;ve written lately, like <a href="http://wordpress.org/extend/plugins/markdown-on-save/">Markdown on Save</a>, <a href="http://wordpress.org/extend/plugins/login-logo/">Login Logo</a>, <a href="http://wordpress.org/extend/plugins/monitor-pages/">Monitor Pages</a>, and <a href="http://wordpress.org/extend/plugins/wp-help/">WP Help</a>.</p>\n<h3>Fewer features as a feature</h3>\n<p>There are diminishing returns as you add features. That is, the more you add, the more likely you&#8217;re adding something that X % of your plugin&#8217;s users won&#8217;t ever use. Stick to the basics. I&#8217;ll often release a &#8220;0.1&#8243; version of my plugin with really obvious features missing. When I get a flurry of &#8220;You should add Y!&#8221; messages, that validates my assumption that Y is necessary. Start with the smallest version that gets the core job done. Iterate as needed.</p>\n<h3>Code the hell out of it</h3>\n<p>The best part of starting small is that you can code the hell out of the plugin. Do it right. Make each line of code beautiful. Make sure you&#8217;re using WordPress APIs properly, and while you&#8217;re at it, add i18n support (WP Help 0.2 shipped with support for Bulgarian, German, Spanish, Mexican Spanish, Macedonian, Dutch, Brazilian Portuguese, and Russian!)</p>\n<h3>Reduce UI</h3>\n<p>If you can do without UI, don&#8217;t make it. Make every bit of UI prove its necessity. As an example, look at my <a href="http://wordpress.org/extend/plugins/login-logo/">Login Logo</a> plugin. It has zero UI. It looks for the presence of a file named <code>login-logo.png</code> in the <code>wp-content</code> directory. The rest is &#8220;magic.&#8221; It measures the image, generates appropriate CSS, and gives you an instantly and easily customized login screen. The plugin is invisible. It&#8217;s completely out of sight, and out of mind. Finally, UI screens are generally where plugin authors make security mistakes. By skipping them, you make it much more likely that your plugin is secure.</p>\n<h3>Code it for the future</h3>\n<p>Don&#8217;t use deprecated APIs. Plan features in future-forward ways. Implement it in such a way that a site that is using the plugin doesn&#8217;t break if the plugin suddenly goes away. One example of this is my <a href="http://wordpress.org/extend/plugins/markdown-on-save/">Markdown on Save</a> plugin, which offers per-post Markdown formatting. First, I decided that for performance reasons, I wanted to parse Markdown then the post was updated, not on display. The obvious place to store the generated HTML was in the <code>post_content_filtered</code> column that WordPress provides (but does not use). But then I considered what would happen if someone deactivated the plugin or deleted the plugin. The code that accessed <code>post_content_filtered</code> would not work. Their blog would spit out raw Markdown. And any exports they made would export raw Markdown. What if they were exporting to WordPress.com which doesn&#8217;t support Markdown? So I decided to store the <em>Markdown</em> in <code>post_content_filtered</code>, and store the generated HTML in <code>post_content</code>. When you edit a Markdown-formatted post, it swaps in the Markdown, so you can edit that. But if you deactivated the plugin, it would fall back to the HTML. So you can feel free to use this plugin and know that if one day you wake up and you hate Markdown, all you have to do is deactivate the plugin and all of your posts are back to HTML.</p>\n<h3>Secure it</h3>\n<p>Writing secure WordPress plugins isn&#8217;t hard. It just takes awareness. Take the time to do your research and code a plugin that will be an asset to its users, not a liability.</p>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/634/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/634/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/634/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=634&subd=markjaquith&ref=&feed=1" width="1" height="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, 07 Jun 2011 17:53:59 +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:12:"Mark Jaquith";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:47;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:72:"WordPress.tv: Isaac Keyet Create the Perfect Mobile WordPress Experience";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:27:"http://wordpress.tv/?p=6114";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:90:"http://wordpress.tv/2011/06/07/isaac-keyet-create-the-perfect-mobile-wordpress-experience/";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:1882:"<div id="v-BuqB1tGQ" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6114&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/07/isaac-keyet-create-the-perfect-mobile-wordpress-experience/"><img alt="Isaac Keyet Create the Perfect Mobile WordPress Experience" src="http://videos.videopress.com/BuqB1tGQ/isaac-keyet-create-the-perfect-mobile-wordpress-experience_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";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, 07 Jun 2011 17:49:24 +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:14:"blazestreaming";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:48;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:48:"WordPress.tv: Alex King Interview With Nick Ohrn";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:27:"http://wordpress.tv/?p=6078";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:66:"http://wordpress.tv/2011/06/07/alex-king-interview-with-nick-ohrn/";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:1810:"<div id="v-Kub2S28L" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6078/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6078/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6078/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6078&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/07/alex-king-interview-with-nick-ohrn/"><img alt="Alex King Interview With Nick Ohrn" src="http://videos.videopress.com/Kub2S28L/alex-king-interview-with-nick-ohrn_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";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, 07 Jun 2011 17:47:56 +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:14:"blazestreaming";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:49;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:64:"WordPress.tv: Andrew Nacin Ask Not What WordPress Can Do For You";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:27:"http://wordpress.tv/?p=6098";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:82:"http://wordpress.tv/2011/06/07/andrew-nacin-ask-not-what-wordpress-can-do-for-you/";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:1858:"<div id="v-OLLkHvqM" class="video-player">\n</div>\n<br /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6098/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6098/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6098/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6098&subd=wptv&ref=&feed=1" width="1" height="1" /><div><a href="http://wordpress.tv/2011/06/07/andrew-nacin-ask-not-what-wordpress-can-do-for-you/"><img alt="Andrew Nacin Ask Not What WordPress Can Do For You" src="http://videos.videopress.com/OLLkHvqM/andrew-nacin-ask-not-what-wordpress-can-do-for-you_scruberthumbnail_0.jpg" width="160" height="120" /></a></div>";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, 07 Jun 2011 17:43:33 +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:14:"blazestreaming";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:"type";i:128;s:7:"headers";a:9:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 28 Jun 2011 15:12:55 GMT";s:12:"content-type";s:15:"application/xml";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:29:"Tue, 28 Jun 2011 15:00:15 GMT";s:14:"content-length";s:6:"115408";s:4:"x-nc";s:11:"HIT luv 138";s:13:"accept-ranges";s:5:"bytes";}s:5:"build";s:14:"20090627192103";}', 'no');
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 plugin will create the vertical scroll slideshow on the website. It create the slideshow like reel.";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:"gopiplus";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:2;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:40:"DaoByDesign on "Contact Form 7 Honeypot"";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/contact-form-7-honeypot/#post-27817";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 03:15: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:"27817@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:69:"Contact Form 7 - Adds honeypot functionality to Contact Form 7 forms.";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:11:"DaoByDesign";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:3;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:"Custom skeduled Posts. This widget gives you the ability to show skeduled posts for start and end times on the widget content.";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:13:"Ciprian Turcu";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:4;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:29:"FanQuake on "Handy Functions"";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:63:"http://wordpress.org/extend/plugins/handy-functions/#post-27827";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 12:04:39 +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:"27827@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:133:"Handy Functions allows you to add and use the functions that you would normally add to your functions.php, in your WordPress backend.";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:"FanQuake";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:5;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:14:"soso on "SMTP"";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:52:"http://wordpress.org/extend/plugins/smtp/#post-27657";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, 21 Jun 2011 18:31:57 +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:"27657@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:81:"Allows you to configure and use a SMTP server (such as Gmail) for sending emails.";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:4:"soso";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:6;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:29:"Magic Toolbox on "Magic Zoom"";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:72:"http://wordpress.org/extend/plugins/magic-zoom-for-wordpress/#post-27709";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, 23 Jun 2011 16:14:17 +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:"27709@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:105:"Magic Zoom will zoom into your images to reveal beautiful detail. Simply hover your mouse over the image.";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:13:"Magic Toolbox";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:7;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:23:"Hax on "File Un-Attach"";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/file-un-attach/#post-27597";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:"Sat, 18 Jun 2011 23:24: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:4:"guid";a:1:{i:0;a:5:{s:4:"data";s:42:"27597@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:118:"This plugin will allow you to attach a single file to multiple posts, but will also will allow you to detach any file.";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:3:"Hax";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:8;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:23:"brent_ono on "Lavalinx"";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:56:"http://wordpress.org/extend/plugins/lavalinx/#post-27480";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, 14 Jun 2011 21:37:29 +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:"27480@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:59:"SEO link building tool for dynamic, contextual link trades.";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:9:"brent_ono";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:9;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:42:"jumpple on "Jumpple - Your website keeper"";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:55:"http://wordpress.org/extend/plugins/jumpple/#post-27343";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, 09 Jun 2011 15:34:32 +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:"27343@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:197:"Jumpple is your website protector - this plugin will notify you if something is wrong with your site. See also: <a href="http://www.jumpple.com" rel="nofollow">http://www.jumpple.com</a> &#124; FAQ";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:7:"jumpple";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:10;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:"Shahnur Alam on "Quick Notice"";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:60:"http://wordpress.org/extend/plugins/quick-notice/#post-27596";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:"Sat, 18 Jun 2011 17:14:42 +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:"27596@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:66:"This plugin will help you to display a sticky message in your site";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:"Shahnur Alam";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:11;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:45:"Mindvalley on "Mindvalley Comments Moderator"";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:76:"http://wordpress.org/extend/plugins/mindvalley-comment-moderator/#post-27743";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 12:03:24 +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:"27743@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:76:"Create a custom role that enables only Comment Moderation actions and pages.";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:"Mindvalley";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:12;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:51:"hyperdude on "Alan''s BBC Technolgy News RSS 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/bbc-tech-news-rss-feed-widget/#post-27753";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 19:42:04 +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:"27753@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:78:"This plug-in adds a very simple RSS feed from the BBC technology news section.";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:9:"hyperdude";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:13;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:36:"themecrest1 on "Login With Facebook"";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:67:"http://wordpress.org/extend/plugins/facebook-with-login/#post-27590";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:"Sat, 18 Jun 2011 09:57:41 +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:"27590@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:59:"The simplest way to access site with Your Facebook Account.";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:11:"themecrest1";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:14;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:"mucash on "MuCash Micro-payments"";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:69:"http://wordpress.org/extend/plugins/mucash-micro-payments/#post-27584";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, 17 Jun 2011 19:59:38 +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:"27584@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:148:"MuCash is micro-payments made simple. With just a few clicks your readers can buy articles, make donations, and more... as small as a single penny!";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:6:"mucash";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:48:"http://wordpress.org/extend/plugins/rss/view/new";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 28 Jun 2011 15:12:57 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2011-06-28 05:26:27";s:14:"content-length";s:4:"7868";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no'),
(139, 0, '_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc', '1309317175', 'no'),
(140, 0, '_transient_feed_mod_57bc725ad6568758915363af670fd8bc', '1309273975', 'no'),
(1314, 0, 'js_paging', 'false', 'yes'),
(886, 0, 'grid_number_per_row', '4', 'yes'),
(842, 0, 'wpsc_database_check', '5f52024aae4a520f09f51cd8b6535b960c7cb81c', 'yes'),
(1080, 0, '_transient_timeout_wpsc_path_wpsc-products_page.php', '1309982649', 'no'),
(1081, 0, '_transient_wpsc_path_wpsc-products_page.php', 'D:\\Trabajo\\OriginalHouse\\trunk\\src/wp-content/themes/originalhouse/wpsc-products_page.php', 'no'),
(887, 0, 'show_images_only', '1', 'yes'),
(888, 0, 'wpsc_sort_by', 'name', 'yes'),
(889, 0, 'wpsc_dropshop_theme', 'light', 'yes'),
(890, 0, 'wpsc_lightbox', 'thickbox', 'yes'),
(891, 0, 'wpsc_comments_which_products', '1', 'yes'),
(895, 0, 'wpsc_page_number_position', '2', 'yes'),
(1353, 0, 'googlemaps_height', '250px', 'yes'),
(1370, 0, 'category_children', 'a:0:{}', 'yes'),
(1397, 0, '_transient_feed_mod_8fa202021a0c51f109142bc571ee925a', '1310548458', 'no'),
(1398, 0, '_transient_timeout_dash_20494a3d90a6669585674ed0eb8dcd8f', '1310591658', 'no'),
(458, 0, 'wpsc_minor_version', '391083', 'yes'),
(378, 0, 'tubepress-tagValue', 'armani house', 'yes'),
(379, 0, 'tubepress-userValue', 'Armani', 'yes'),
(380, 0, 'tubepress-developerKey', 'AI39si5uUzupiQW9bpzGqZRrhvqF3vBgRqL-I_28G1zWozmdNJlskzMDQEhpZ-l2RqGf_6CNWooL96oJZRrqKo-eJ9QO_QppMg', 'yes'),
(381, 0, 'tubepress-vimeoKey', '', 'yes'),
(382, 0, 'tubepress-vimeoSecret', '', 'yes'),
(383, 0, 'tubepress-widget-title', 'TubePress', 'yes'),
(384, 0, 'tubepress-widget-tagstring', '[tubepress thumbHeight=''105'' thumbWidth=''135'']', 'yes'),
(385, 0, 'tubepress-vimeoUploadedByValue', 'mattkaar', 'yes'),
(386, 0, 'tubepress-vimeoLikesValue', 'coiffier', 'yes'),
(387, 0, 'tubepress-vimeoAppearsInValue', 'royksopp', 'yes'),
(388, 0, 'tubepress-vimeoSearchValue', 'cats playing piano', 'yes'),
(389, 0, 'tubepress-vimeoCreditedToValue', 'patricklawler', 'yes'),
(390, 0, 'tubepress-vimeoChannelValue', 'splitscreenstuff', 'yes'),
(391, 0, 'tubepress-vimeoGroupValue', 'hdxs', 'yes'),
(392, 0, 'tubepress-vimeoAlbumValue', '140484', 'yes'),
(393, 0, 'tubepress-cacheDirectory', '', 'yes'),
(394, 0, 'tubepress-searchResultsRestrictedToUser', '', '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:"Custom skeduled Posts. This widget gives you the ability to show skeduled posts for start and end times on the widget content.";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:13:"Ciprian Turcu";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:2;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:29:"FanQuake on "Handy Functions"";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:63:"http://wordpress.org/extend/plugins/handy-functions/#post-27827";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 12:04:39 +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:"27827@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:133:"Handy Functions allows you to add and use the functions that you would normally add to your functions.php, in your WordPress backend.";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:"FanQuake";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:3;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:"edward mindreantre on "ThreeWP Activity Monitor"";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:72:"http://wordpress.org/extend/plugins/threewp-activity-monitor/#post-16151";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, 23 Feb 2010 00:46:40 +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:"16151@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:53:"Track and display site or network-wide user activity.";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:18:"edward mindreantre";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:4;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:29:"Magic Toolbox on "Magic Zoom"";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:72:"http://wordpress.org/extend/plugins/magic-zoom-for-wordpress/#post-27709";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, 23 Jun 2011 16:14:17 +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:"27709@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:105:"Magic Zoom will zoom into your images to reveal beautiful detail. Simply hover your mouse over the image.";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:13:"Magic Toolbox";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:5;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:25:"rewish on "WP Zen-Coding"";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:61:"http://wordpress.org/extend/plugins/wp-zen-coding/#post-16056";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:"Wed, 17 Feb 2010 13:32: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:42:"16056@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:62:"Plugin to introduce `Zen Coding` into the admin page(wp-admin)";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:6:"rewish";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:6;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:43:"edward mindreantre on "ThreeWP Ajax 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:67:"http://wordpress.org/extend/plugins/threewp-ajax-search/#post-23393";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, 03 Jan 2011 16:29:02 +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:"23393@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:106:"Enables ajax searches for content. The default settings work automatically with Twentyten and derivatives.";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:18:"edward mindreantre";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:7;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:"AI.Takeuchi on "Cf Shopping Cart"";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:64:"http://wordpress.org/extend/plugins/cf-shopping-cart/#post-15748";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, 04 Feb 2010 09:02: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:42:"15748@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:"Cf Shopping Cart is simple shopping cart plugin for WordPress.\nThis plugin be working with Custom Field and more plugins.\nThereby website can have fle";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:11:"AI.Takeuchi";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:8;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:26:"bestwebsoft on "Portfolio"";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:57:"http://wordpress.org/extend/plugins/portfolio/#post-25798";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, 11 Apr 2011 17:34:04 +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:"25798@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:80:"Portfolio allows you to create a page with information about your past projects.";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:11:"bestwebsoft";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:9;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:40:"Ronak Gandhi on "Awesome Flickr Gallery"";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/awesome-flickr-gallery-plugin/#post-26391";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:"Sat, 07 May 2011 15:51:14 +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:"26391@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:128:"Create a photo gallery of your Flickr photos on your WordPress enabled website\nenabling you to customize it the way you like it.";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:"Ronak Gandhi";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:10;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:29:"Desertsnowman on "DB Toolkit"";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:58:"http://wordpress.org/extend/plugins/db-toolkit/#post-18292";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, 30 May 2010 11:57: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:"18292@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:112:"Database Interface Toolkit creates interfaces (capture/update forms, reports, charts etc.) from database tables.";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:13:"Desertsnowman";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:11;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:39:"timothyja on "Linux Promotional Plugin"";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:72:"http://wordpress.org/extend/plugins/linux-promotional-plugin/#post-27777";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:"Sat, 25 Jun 2011 15:05: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:42:"27777@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:108:"A SMALL popup with customizable message about the avaliablity of a free OS replacement for Windows, and Mac.";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:9:"timothyja";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:12;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:"mathzqy on "Latex for WordPess"";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:52:"http://wordpress.org/extend/plugins/latex/#post-4855";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, 16 Mar 2008 12:46:42 +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:"4855@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:95:"This plugin provide an easy and elegant solution to add and display your mathematical fourmula.";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:7:"mathzqy";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:13;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:42:"Hugh WIll Fayle on "Multi Post Newsletter"";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:69:"http://wordpress.org/extend/plugins/multi-post-newsletter/#post-23459";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, 06 Jan 2011 07:36:45 +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:"23459@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:"The Multi Post Newsletter is a simple plugin, which provides to link several posts to a newsletter. This procedure is similar to the categories. Withi";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:15:"Hugh WIll Fayle";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:14;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:28:"Stargazer on "WP-BlackCheck"";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:61:"http://wordpress.org/extend/plugins/wp-blackcheck/#post-11090";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, 05 Jun 2009 12:52: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:42:"11090@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:125:"WP-BlackCheck is an Anti-Spam Solution for Wordpress blocking spam using local detection and a centralized Blacklist Service.";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:9:"Stargazer";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:52:"http://wordpress.org/extend/plugins/rss/view/updated";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}}}}}}}}}}s:4:"type";i:128;s:7:"headers";a:8:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Tue, 28 Jun 2011 15:12:58 GMT";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:10:"connection";s:5:"close";s:4:"vary";s:15:"Accept-Encoding";s:13:"last-modified";s:19:"2008-06-29 23:30:06";s:14:"content-length";s:4:"8009";s:4:"x-nc";s:11:"HIT luv 139";}s:5:"build";s:14:"20090627192103";}', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(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'),
(396, 0, 'tubepress-debugging_enabled', '1', 'yes'),
(159, 0, '_site_transient_update_themes', 'O:8:"stdClass":3:{s:12:"last_checked";i:1310633557;s:7:"checked";a:1:{s:13:"originalhouse";s:5:"1.0.0";}s:8:"response";a:0:{}}', 'yes'),
(1286, 0, '_site_transient_timeout_wporg_theme_feature_list', '1309990529', 'yes'),
(1287, 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.8', '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:66:{s:18:"woo_alt_stylesheet";s:11:"default.css";s:8:"woo_logo";s:72:"http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo2.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:69:"http://localhost/originalhouse/wp-content/uploads/2011/06/favicon.ico";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:14:"woo_title_show";s:5:"false";s:19:"woo_pagination_type";s:15:"paginated_links";s:14:"woo_body_color";s:7:"#000000";s:12:"woo_body_img";s:75:"http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg";s:15:"woo_body_repeat";s:9:"no-repeat";s:12:"woo_body_pos";s:13:"center 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:5:"false";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:"#7F7875";}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:"#181818";}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:"#7F7875";}s:14:"woo_home_intro";s:58:"Si tu casa se parece a todas, nosotros no tenemos la culpa";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:"185";s:11:"woo_thumb_h";s:3:"185";s:15:"woo_thumb_align";s:11:"aligncenter";s:16:"woo_thumb_single";s:4:"true";s:12:"woo_single_w";s:3:"300";s:12:"woo_single_h";s:3:"300";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:72:{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:"type";s:8:"checkbox";}i:16;a:5:{s:4:"name";s:19:"Display Breadcrumbs";s:4:"desc";s:57:"Display dynamic breadcrumbs on each page of your website.";s:2:"id";s:20:"woo_breadcrumbs_show";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:17;a:5:{s:4:"name";s:23:"Display Post/Page Title";s:4:"desc";s:43:"Display title on each page of your website.";s:2:"id";s:14:"woo_title_show";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:18;a:5:{s:4:"name";s:16:"Pagination Style";s:4:"desc";s:65:"Select the style of pagination you would like to use on the blog.";s:2:"id";s:19:"woo_pagination_type";s:4:"type";s:7:"select2";s:7:"options";a:2:{s:15:"paginated_links";s:7:"Numbers";s:6:"simple";s:13:"Next/Previous";}}i:19;a:3:{s:4:"name";s:15:"Styling Options";s:4:"type";s:7:"heading";s:4:"icon";s:7:"styling";}i:20;a:5:{s:4:"name";s:21:"Body Background Color";s:4:"desc";s:66:"Pick a custom color for background color of the theme e.g. #697e09";s:2:"id";s:14:"woo_body_color";s:3:"std";s:0:"";s:4:"type";s:5:"color";}i:21;a:5:{s:4:"name";s:21:"Body background image";s:4:"desc";s:42:"Upload an image for the theme''s background";s:2:"id";s:12:"woo_body_img";s:3:"std";s:0:"";s:4:"type";s:6:"upload";}i:22;a:6:{s:4:"name";s:23:"Background image repeat";s:4:"desc";s:56:"Select how you would like to repeat the background-image";s:2:"id";s:15:"woo_body_repeat";s:3:"std";s:9:"no-repeat";s:4:"type";s:6:"select";s:7:"options";a:4:{i:0;s:9:"no-repeat";i:1;s:8:"repeat-x";i:2;s:8:"repeat-y";i:3;s:6:"repeat";}}i:23;a:6:{s:4:"name";s:25:"Background image position";s:4:"desc";s:52:"Select how you would like to position the background";s:2:"id";s:12:"woo_body_pos";s:3:"std";s:3:"top";s:4:"type";s:6:"select";s:7:"options";a:9:{i:0;s:8:"top left";i:1;s:10:"top center";i:2;s:9:"top right";i:3;s:11:"center left";i:4;s:13:"center center";i:5;s:12:"center right";i:6;s:11:"bottom left";i:7;s:13:"bottom center";i:8;s:12:"bottom right";}}i:24;a:5:{s:4:"name";s:10:"Link Color";s:4:"desc";s:66:"Pick a custom color for links or add a hex color code e.g. #697e09";s:2:"id";s:14:"woo_link_color";s:3:"std";s:0:"";s:4:"type";s:5:"color";}i:25;a:5:{s:4:"name";s:16:"Link Hover Color";s:4:"desc";s:72:"Pick a custom color for links hover or add a hex color code e.g. #697e09";s:2:"id";s:20:"woo_link_hover_color";s:3:"std";s:0:"";s:4:"type";s:5:"color";}i:26;a:5:{s:4:"name";s:12:"Button Color";s:4:"desc";s:68:"Pick a custom color for buttons or add a hex color code e.g. #697e09";s:2:"id";s:16:"woo_button_color";s:3:"std";s:0:"";s:4:"type";s:5:"color";}i:27;a:3:{s:4:"name";s:10:"Typography";s:4:"type";s:7:"heading";s:4:"icon";s:10:"typography";}i:28;a:5:{s:4:"name";s:24:"Enable Custom Typography";s:4:"desc";s:100:"Enable the use of custom typography for your site. Custom styling will be output in your sites HEAD.";s:2:"id";s:14:"woo_typography";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:29;a:5:{s:4:"name";s:18:"General Typography";s:4:"desc";s:24:"Change the general font.";s:2:"id";s:13:"woo_font_body";s:3:"std";a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:0:"";s:5:"color";s:7:"#555555";}s:4:"type";s:10:"typography";}i:30;a:5:{s:4:"name";s:10:"Navigation";s:4:"desc";s:27:"Change the navigation font.";s:2:"id";s:12:"woo_font_nav";s:3:"std";a:5:{s:4:"size";s:2:"14";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:0:"";s:5:"color";s:7:"#555555";}s:4:"type";s:10:"typography";}i:31;a:5:{s:4:"name";s:10:"Post Title";s:4:"desc";s:22:"Change the post title.";s:2:"id";s:19:"woo_font_post_title";s:3:"std";a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}s:4:"type";s:10:"typography";}i:32;a:5:{s:4:"name";s:9:"Post Meta";s:4:"desc";s:21:"Change the post meta.";s:2:"id";s:18:"woo_font_post_meta";s:3:"std";a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:0:"";s:5:"color";s:7:"#999999";}s:4:"type";s:10:"typography";}i:33;a:5:{s:4:"name";s:10:"Post Entry";s:4:"desc";s:22:"Change the post entry.";s:2:"id";s:19:"woo_font_post_entry";s:3:"std";a:5:{s:4:"size";s:2:"14";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:0:"";s:5:"color";s:7:"#555555";}s:4:"type";s:10:"typography";}i:34;a:5:{s:4:"name";s:13:"Widget Titles";s:4:"desc";s:25:"Change the widget titles.";s:2:"id";s:22:"woo_font_widget_titles";s:3:"std";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:5:"Arial";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}s:4:"type";s:10:"typography";}i:35;a:3:{s:4:"name";s:8:"Homepage";s:4:"type";s:7:"heading";s:4:"icon";s:8:"homepage";}i:36;a:5:{s:4:"name";s:10:"Intro Text";s:4:"desc";s:82:"Type your Intro Text here, it will show up in your homepage above your blog posts.";s:2:"id";s:14:"woo_home_intro";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:37;a:3:{s:4:"name";s:14:"Layout Options";s:4:"type";s:7:"heading";s:4:"icon";s:6:"layout";}i:38;a:6:{s:4:"name";s:11:"Main Layout";s:4:"desc";s:43:"Select which layout you want for your site.";s:2:"id";s:15:"woo_site_layout";s:3:"std";s:11:"layout-full";s:4:"type";s:6:"images";s:7:"options";a:1:{s:11:"layout-full";s:86:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/1c.png";}}i:39;a:3:{s:4:"name";s:14:"Dynamic Images";s:4:"type";s:7:"heading";s:4:"icon";s:5:"image";}i:40;a:6:{s:4:"name";s:17:"WP Post Thumbnail";s:4:"desc";s:56:"Use WordPress post thumbnail to assign a post thumbnail.";s:2:"id";s:22:"woo_post_image_support";s:3:"std";s:4:"true";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:41;a:6:{s:4:"name";s:38:"WP Post Thumbnail - Dynamically Resize";s:4:"desc";s:113:"The post thumbnail will be dynamically resized using native WP resize functionality. <em>(Requires PHP 5.2+)</em>";s:2:"id";s:14:"woo_pis_resize";s:3:"std";s:4:"true";s:5:"class";s:6:"hidden";s:4:"type";s:8:"checkbox";}i:42;a:6:{s:4:"name";s:29:"WP Post Thumbnail - Hard Crop";s:4:"desc";s:59:"The image will be cropped to match the target aspect ratio.";s:2:"id";s:17:"woo_pis_hard_crop";s:3:"std";s:4:"true";s:5:"class";s:11:"hidden last";s:4:"type";s:8:"checkbox";}i:43;a:5:{s:4:"name";s:28:"Enable Dynamic Image Resizer";s:4:"desc";s:103:"This will enable the thumb.php script which dynamically resizes images added through post custom field.";s:2:"id";s:10:"woo_resize";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:44;a:5:{s:4:"name";s:22:"Automatic Image Thumbs";s:4:"desc";s:117:"If no image is specified in the ''image'' custom field or WP post thumbnail then the first uploaded post image is used.";s:2:"id";s:12:"woo_auto_img";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:45;a:5:{s:4:"name";s:26:"Thumbnail Image Dimensions";s:4:"desc";s:109:"Enter an integer value i.e. 250 for the desired size which will be used when dynamically creating the images.";s:2:"id";s:20:"woo_image_dimensions";s:3:"std";s:0:"";s:4:"type";a:2:{i:0;a:4:{s:2:"id";s:11:"woo_thumb_w";s:4:"type";s:4:"text";s:3:"std";i:80;s:4:"meta";s:5:"Width";}i:1;a:4:{s:2:"id";s:11:"woo_thumb_h";s:4:"type";s:4:"text";s:3:"std";i:80;s:4:"meta";s:6:"Height";}}}i:46;a:6:{s:4:"name";s:25:"Thumbnail Image alignment";s:4:"desc";s:47:"Select how to align your thumbnails with posts.";s:2:"id";s:15:"woo_thumb_align";s:3:"std";s:9:"alignleft";s:4:"type";s:5:"radio";s:7:"options";a:3:{s:9:"alignleft";s:4:"Left";s:10:"alignright";s:5:"Right";s:11:"aligncenter";s:6:"Center";}}i:47;a:6:{s:4:"name";s:30:"Show thumbnail in Single Posts";s:4:"desc";s:48:"Show the attached image in the single post page.";s:2:"id";s:16:"woo_thumb_single";s:5:"class";s:9:"collapsed";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:48;a:6:{s:4:"name";s:23:"Single Image Dimensions";s:4:"desc";s:69:"Enter an integer value i.e. 250 for the image size. Max width is 576.";s:2:"id";s:20:"woo_image_dimensions";s:3:"std";s:0:"";s:5:"class";s:11:"hidden last";s:4:"type";a:2:{i:0;a:4:{s:2:"id";s:12:"woo_single_w";s:4:"type";s:4:"text";s:3:"std";i:200;s:4:"meta";s:5:"Width";}i:1;a:4:{s:2:"id";s:12:"woo_single_h";s:4:"type";s:4:"text";s:3:"std";i:200;s:4:"meta";s:6:"Height";}}}i:49;a:7:{s:4:"name";s:27:"Single Post Image alignment";s:4:"desc";s:53:"Select how to align your thumbnail with single posts.";s:2:"id";s:22:"woo_thumb_single_align";s:3:"std";s:10:"alignright";s:4:"type";s:5:"radio";s:5:"class";s:6:"hidden";s:7:"options";a:3:{s:9:"alignleft";s:4:"Left";s:10:"alignright";s:5:"Right";s:11:"aligncenter";s:6:"Center";}}i:50;a:5:{s:4:"name";s:25:"Add thumbnail to RSS feed";s:4:"desc";s:68:"Add the the image uploaded via your Custom Settings to your RSS feed";s:2:"id";s:13:"woo_rss_thumb";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:51;a:3:{s:4:"name";s:20:"Footer Customization";s:4:"type";s:7:"heading";s:4:"icon";s:6:"footer";}i:52;a:5:{s:4:"name";s:26:"Enable Footer Social Icons";s:4:"desc";s:136:"Activate footer social icons (Twitter & Facebook). Your social profile URLs can be added under <strong>Subscribe &amp; Connect</strong>.";s:2:"id";s:17:"woo_footer_social";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:53;a:5:{s:4:"name";s:21:"Custom Affiliate Link";s:4:"desc";s:71:"Add an affiliate link to the WooThemes logo in the footer of the theme.";s:2:"id";s:19:"woo_footer_aff_link";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:54;a:5:{s:4:"name";s:27:"Enable Custom Footer (Left)";s:4:"desc";s:58:"Activate to add the custom text below to the theme footer.";s:2:"id";s:15:"woo_footer_left";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:55;a:5:{s:4:"name";s:18:"Custom Text (Left)";s:4:"desc";s:66:"Custom HTML and Text that will appear in the footer of your theme.";s:2:"id";s:20:"woo_footer_left_text";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:56;a:5:{s:4:"name";s:28:"Enable Custom Footer (Right)";s:4:"desc";s:58:"Activate to add the custom text below to the theme footer.";s:2:"id";s:16:"woo_footer_right";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:57;a:5:{s:4:"name";s:19:"Custom Text (Right)";s:4:"desc";s:66:"Custom HTML and Text that will appear in the footer of your theme.";s:2:"id";s:21:"woo_footer_right_text";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:58;a:3:{s:4:"name";s:19:"Subscribe & Connect";s:4:"type";s:7:"heading";s:4:"icon";s:7:"connect";}i:59;a:5:{s:4:"name";s:40:"Enable Subscribe & Connect - Single Post";s:4:"desc";s:169:"Enable the subscribe & connect area on single posts. You can also add this as a <a href=''http://localhost/originalhouse/wp-admin/widgets.php''>widget</a> in your sidebar.";s:2:"id";s:11:"woo_connect";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:60;a:5:{s:4:"name";s:15:"Subscribe Title";s:4:"desc";s:57:"Enter the title to show in your subscribe & connect area.";s:2:"id";s:17:"woo_connect_title";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:61;a:5:{s:4:"name";s:4:"Text";s:4:"desc";s:37:"Change the default text in this area.";s:2:"id";s:19:"woo_connect_content";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:62;a:5:{s:4:"name";s:35:"Subscribe By E-mail ID (Feedburner)";s:4:"desc";s:146:"Enter your <a href=''http://www.google.com/support/feedburner/bin/answer.py?hl=en&answer=78982''>Feedburner ID</a> for the e-mail subscription form.";s:2:"id";s:25:"woo_connect_newsletter_id";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:63;a:5:{s:4:"name";s:10:"Enable RSS";s:4:"desc";s:34:"Enable the subscribe and RSS icon.";s:2:"id";s:15:"woo_connect_rss";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:64;a:5:{s:4:"name";s:11:"Twitter URL";s:4:"desc";s:99:"Enter your <a href=''http://www.twitter.com/''>Twitter</a> URL e.g. http://www.twitter.com/woothemes";s:2:"id";s:19:"woo_connect_twitter";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:65;a:5:{s:4:"name";s:12:"Facebook URL";s:4:"desc";s:102:"Enter your <a href=''http://www.facebook.com/''>Facebook</a> URL e.g. http://www.facebook.com/woothemes";s:2:"id";s:20:"woo_connect_facebook";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:66;a:5:{s:4:"name";s:11:"Blogger URL";s:4:"desc";s:61:"Enter your <a href=''http://www.blogger.com/''>Blogger</a> URL";s:2:"id";s:19:"woo_connect_blogger";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:67;a:5:{s:4:"name";s:11:"YouTube URL";s:4:"desc";s:99:"Enter your <a href=''http://www.youtube.com/''>YouTube</a> URL e.g. http://www.youtube.com/woothemes";s:2:"id";s:19:"woo_connect_youtube";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:68;a:5:{s:4:"name";s:10:"Flickr URL";s:4:"desc";s:96:"Enter your <a href=''http://www.flickr.com/''>Flickr</a> URL e.g. http://www.flickr.com/woothemes";s:2:"id";s:18:"woo_connect_flickr";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:69;a:5:{s:4:"name";s:12:"LinkedIn URL";s:4:"desc";s:113:"Enter your <a href=''http://www.www.linkedin.com.com/''>LinkedIn</a> URL e.g. http://www.linkedin.com/in/woothemes";s:2:"id";s:20:"woo_connect_linkedin";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:70;a:5:{s:4:"name";s:13:"Delicious URL";s:4:"desc";s:104:"Enter your <a href=''http://www.delicious.com/''>Delicious</a> URL e.g. http://www.delicious.com/woothemes";s:2:"id";s:21:"woo_connect_delicious";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:71;a:5:{s:4:"name";s:20:"Enable Related Posts";s:4:"desc";s:158:"Enable related posts in the subscribe area. Uses posts with the same <strong>tags</strong> to find related posts. Note: Will not show in the Subscribe widget.";s:2:"id";s:19:"woo_connect_related";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}}', 'yes'),
(1459, 0, 'duplicate_post_copy_user_level', '5', 'yes'),
(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:5:{i:0;a:4:{s:4:"name";s:5:"image";s:5:"label";s:5:"Image";s:4:"type";s:6:"upload";s:4:"desc";s:32:"Upload an image or enter an URL.";}i:1;a:6:{s:4:"name";s:16:"_image_alignment";s:3:"std";s:6:"Center";s:5:"label";s:20:"Image Crop Alignment";s:4:"type";s:7:"select2";s:4:"desc";s:39:"Select crop alignment for resized image";s:7:"options";a:5:{s:1:"c";s:6:"Center";s:1:"t";s:3:"Top";s:1:"b";s:6:"Bottom";s:1:"l";s:4:"Left";s:1:"r";s:5:"Right";}}i:2;a:6:{s:4:"name";s:7:"_layout";s:3:"std";s:6:"normal";s:5:"label";s:6:"Layout";s:4:"type";s:6:"images";s:4:"desc";s:54:"Select the layout you want on this specific post/page.";s:7:"options";a:4:{s:14:"layout-default";s:94:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/layout-off.png";s:11:"layout-full";s:86:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/1c.png";s:19:"layout-left-content";s:87:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/2cl.png";s:20:"layout-right-content";s:87:"http://localhost/originalhouse/wp-content/themes/originalhouse/functions/images/2cr.png";}}i:3;a:4:{s:4:"name";s:5:"image";s:5:"label";s:11:"Slide Image";s:4:"type";s:6:"upload";s:4:"desc";s:51:"Upload an image or enter an URL to your slide image";}i:4;a:4:{s:4:"name";s:3:"url";s:5:"label";s:3:"URL";s:4:"type";s:4:"text";s:4:"desc";s:80:"Enter URL if you want to add a link to the uploaded image and title. (optional) ";}}', 'yes'),
(804, 0, 'mfbfw_active_version', '2.7.5', 'yes'),
(805, 0, 'mfbfw_showTitle', 'on', 'yes'),
(806, 0, 'mfbfw_border', '', 'yes'),
(807, 0, 'mfbfw_borderColor', '#BBBBBB', 'yes'),
(808, 0, 'mfbfw_closeHorPos', 'right', 'yes'),
(685, 0, 'tubepress-fluidThumbs', '1', 'yes'),
(367, 0, 'youtube_media_username', '<? echo get_option(\\''youtube_media_username\\''); ?>', 'yes'),
(457, 0, 'wpsc_version', '3.8.4', 'yes'),
(369, 0, 'tubepress-version', '225', 'yes'),
(178, 0, 'woo_alt_stylesheet', 'default.css', 'yes'),
(179, 0, 'woo_logo', 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo2.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', 'http://localhost/originalhouse/wp-content/uploads/2011/06/favicon.ico', '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', 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg', 'yes'),
(197, 0, 'woo_body_repeat', 'no-repeat', 'yes'),
(198, 0, 'woo_body_pos', 'center 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', 'false', '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:"#7F7875";}', '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:"#181818";}', '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:"#7F7875";}', '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', '185', 'yes'),
(237, 0, 'woo_thumb_h', '185', 'yes'),
(238, 0, 'woo_thumb_align', 'aligncenter', 'yes'),
(239, 0, 'woo_thumb_single', 'true', 'yes'),
(240, 0, 'woo_single_w', '300', 'yes'),
(241, 0, 'woo_single_h', '300', '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'),
(377, 0, 'tubepress-playlistValue', 'D2B04665B213AE35', 'yes'),
(262, 0, 'woo_settings_encode', 'PHVsPjxsaT48c3Ryb25nPndvb19hbHRfc3R5bGVzaGVldDwvc3Ryb25nPiAtIGRlZmF1bHQuY3NzPC9saT48bGk+PHN0cm9uZz53b29fbG9nbzwvc3Ryb25nPiAtIGh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9sb2dvLXJvam8yLmdpZjwvbGk+PGxpPjxzdHJvbmc+d29vX3RleHR0aXRsZTwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9udF9zaXRlX3RpdGxlPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb190YWdsaW5lPC9zdHJvbmc+IC0gZmFsc2U8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3RhZ2xpbmU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2N1c3RvbV9mYXZpY29uPC9zdHJvbmc+IC0gaHR0cDovL2xvY2FsaG9zdC9vcmlnaW5hbGhvdXNlL3dwLWNvbnRlbnQvdXBsb2Fkcy8yMDExLzA2L2Zhdmljb24uaWNvPC9saT48bGk+PHN0cm9uZz53b29fZ29vZ2xlX2FuYWx5dGljczwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2ZlZWRfdXJsPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fc3Vic2NyaWJlX2VtYWlsPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29udGFjdGZvcm1fZW1haWw8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jdXN0b21fY3NzPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29tbWVudHM8L3N0cm9uZz4gLSBwb3N0PC9saT48bGk+PHN0cm9uZz53b29fcG9zdF9jb250ZW50PC9zdHJvbmc+IC0gZXhjZXJwdDwvbGk+PGxpPjxzdHJvbmc+d29vX3Bvc3RfYXV0aG9yPC9zdHJvbmc+IC0gZmFsc2U8L2xpPjxsaT48c3Ryb25nPndvb19icmVhZGNydW1ic19zaG93PC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX3RpdGxlX3Nob3c8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3BhZ2luYXRpb25fdHlwZTwvc3Ryb25nPiAtIHBhZ2luYXRlZF9saW5rczwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfY29sb3I8L3N0cm9uZz4gLSAjMDAwMDAwPC9saT48bGk+PHN0cm9uZz53b29fYm9keV9pbWc8L3N0cm9uZz4gLSBodHRwOi8vbG9jYWxob3N0L29yaWdpbmFsaG91c2Uvd3AtY29udGVudC91cGxvYWRzLzIwMTEvMDYvZm9uZG9udWV2YXdlYi5qcGc8L2xpPjxsaT48c3Ryb25nPndvb19ib2R5X3JlcGVhdDwvc3Ryb25nPiAtIG5vLXJlcGVhdDwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfcG9zPC9zdHJvbmc+IC0gY2VudGVyIGNlbnRlcjwvbGk+PGxpPjxzdHJvbmc+d29vX2xpbmtfY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fbGlua19ob3Zlcl9jb2xvcjwvc3Ryb25nPiAtICNmZmY8L2xpPjxsaT48c3Ryb25nPndvb19idXR0b25fY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fdHlwb2dyYXBoeTwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9udF9ib2R5PC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X25hdjwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29fZm9udF9wb3N0X3RpdGxlPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfbWV0YTwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29fZm9udF9wb3N0X2VudHJ5PC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3dpZGdldF90aXRsZXM8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2hvbWVfaW50cm88L3N0cm9uZz4gLSBTaSB0dSBjYXNhIHNlIHBhcmVjZSBhIHRvZGFzLCBub3NvdHJvcyBubyB0ZW5lbW9zIGxhIGN1bHBhPC9saT48bGk+PHN0cm9uZz53b29fc2l0ZV9sYXlvdXQ8L3N0cm9uZz4gLSBsYXlvdXQtZnVsbDwvbGk+PGxpPjxzdHJvbmc+d29vX3Bvc3RfaW1hZ2Vfc3VwcG9ydDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19waXNfcmVzaXplPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX3Bpc19oYXJkX2Nyb3A8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fcmVzaXplPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX2F1dG9faW1nPC9zdHJvbmc+IC0gZmFsc2U8L2xpPjxsaT48c3Ryb25nPndvb190aHVtYl93PC9zdHJvbmc+IC0gMTg1PC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfaDwvc3Ryb25nPiAtIDE4NTwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX2FsaWduPC9zdHJvbmc+IC0gYWxpZ25jZW50ZXI8L2xpPjxsaT48c3Ryb25nPndvb190aHVtYl9zaW5nbGU8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fc2luZ2xlX3c8L3N0cm9uZz4gLSAzMDA8L2xpPjxsaT48c3Ryb25nPndvb19zaW5nbGVfaDwvc3Ryb25nPiAtIDMwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX3NpbmdsZV9hbGlnbjwvc3Ryb25nPiAtIGFsaWducmlnaHQ8L2xpPjxsaT48c3Ryb25nPndvb19yc3NfdGh1bWI8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2Zvb3Rlcl9zb2NpYWw8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX2FmZl9saW5rPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX2xlZnQ8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX2xlZnRfdGV4dDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Zvb3Rlcl9yaWdodDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfcmlnaHRfdGV4dDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3Q8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF90aXRsZTwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfY29udGVudDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfbmV3c2xldHRlcl9pZDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfcnNzPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfdHdpdHRlcjwvc3Ryb25nPiAtIGh0dHA6Ly90d2l0dGVyLmNvbS8jIS9vcmlnaW5hbGhvdXNlc2w8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X2ZhY2Vib29rPC9zdHJvbmc+IC0gaHR0cDovL3d3dy5mYWNlYm9vay5jb20vcGFnZXMvT1JJR0lOQUwtSE9VU0UtTW9iaWxpYXJpby15LWRlY29yYWNpb24vMTYxMzY1MDAxMzYzPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9ibG9nZ2VyPC9zdHJvbmc+IC0gaHR0cDovL2VsYmxvZ2Rlb3JpZ2luYWxob3VzZS5ibG9nc3BvdC5jb20vPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF95b3V0dWJlPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9mbGlja3I8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X2xpbmtlZGluPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9kZWxpY2lvdXM8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X3JlbGF0ZWQ8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PC91bD4=', 'yes'),
(1351, 0, 'googlemaps_key', 'ABQIAAAAhx6o392K7CSwd5RLtdjC0hSRfGI3U8Nxd81bux29lfxA_gfb9RSt24fNbN8l8e4uJqwlurazFw-VoA', 'yes'),
(1352, 0, 'googlemaps_width', '250px', 'yes'),
(1455, 0, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1310645568', 'yes'),
(1456, 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'),
(370, 0, 'tubepress-playerColor', '999999', 'yes'),
(371, 0, 'tubepress-playerHighlight', '000000', 'yes'),
(372, 0, 'tubepress-mode', 'user', 'yes'),
(373, 0, 'tubepress-dateFormat', 'M j, Y', 'yes'),
(375, 0, 'tubepress-videoBlacklist', '', 'yes'),
(376, 0, 'tubepress-favoritesValue', 'OriginalHouseDecor', '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:5236:"YTo2Nzp7czoxOToic2JtX3dvb19zYm1fb3B0aW9ucyI7czo3MzoiYToyOntzOjg6InNpZGViYXJzIjthOjA6e31zOjg6InNldHRpbmdzIjthOjE6e3M6NzoiaW5mb2JveCI7czo0OiJzaG93Ijt9fSI7czoxODoid29vX2FsdF9zdHlsZXNoZWV0IjtzOjExOiJkZWZhdWx0LmNzcyI7czoxMjoid29vX2F1dG9faW1nIjtzOjU6ImZhbHNlIjtzOjE0OiJ3b29fYm9keV9jb2xvciI7czo3OiIjMDAwMDAwIjtzOjEyOiJ3b29fYm9keV9pbWciO3M6NzU6Imh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9mb25kb251ZXZhd2ViLmpwZyI7czoxMjoid29vX2JvZHlfcG9zIjtzOjEzOiJjZW50ZXIgY2VudGVyIjtzOjE1OiJ3b29fYm9keV9yZXBlYXQiO3M6OToibm8tcmVwZWF0IjtzOjIwOiJ3b29fYnJlYWRjcnVtYnNfc2hvdyI7czo0OiJ0cnVlIjtzOjE2OiJ3b29fYnV0dG9uX2NvbG9yIjtzOjc6IiM3Zjc4NzUiO3M6MTI6Indvb19jb21tZW50cyI7czo0OiJwb3N0IjtzOjExOiJ3b29fY29ubmVjdCI7czo0OiJ0cnVlIjtzOjE5OiJ3b29fY29ubmVjdF9ibG9nZ2VyIjtzOjQyOiJodHRwOi8vZWxibG9nZGVvcmlnaW5hbGhvdXNlLmJsb2dzcG90LmNvbS8iO3M6MTk6Indvb19jb25uZWN0X2NvbnRlbnQiO3M6MDoiIjtzOjIxOiJ3b29fY29ubmVjdF9kZWxpY2lvdXMiO3M6MDoiIjtzOjIwOiJ3b29fY29ubmVjdF9mYWNlYm9vayI7czo4MToiaHR0cDovL3d3dy5mYWNlYm9vay5jb20vcGFnZXMvT1JJR0lOQUwtSE9VU0UtTW9iaWxpYXJpby15LWRlY29yYWNpb24vMTYxMzY1MDAxMzYzIjtzOjE4OiJ3b29fY29ubmVjdF9mbGlja3IiO3M6MDoiIjtzOjIwOiJ3b29fY29ubmVjdF9saW5rZWRpbiI7czowOiIiO3M6MjU6Indvb19jb25uZWN0X25ld3NsZXR0ZXJfaWQiO3M6MDoiIjtzOjE5OiJ3b29fY29ubmVjdF9yZWxhdGVkIjtzOjU6ImZhbHNlIjtzOjE1OiJ3b29fY29ubmVjdF9yc3MiO3M6NDoidHJ1ZSI7czoxNzoid29vX2Nvbm5lY3RfdGl0bGUiO3M6MDoiIjtzOjE5OiJ3b29fY29ubmVjdF90d2l0dGVyIjtzOjM3OiJodHRwOi8vdHdpdHRlci5jb20vIyEvb3JpZ2luYWxob3VzZXNsIjtzOjE5OiJ3b29fY29ubmVjdF95b3V0dWJlIjtzOjA6IiI7czoyMToid29vX2NvbnRhY3Rmb3JtX2VtYWlsIjtzOjA6IiI7czoxNDoid29vX2N1c3RvbV9jc3MiO3M6MDoiIjtzOjE4OiJ3b29fY3VzdG9tX2Zhdmljb24iO3M6Njk6Imh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9mYXZpY29uLmljbyI7czoxMjoid29vX2ZlZWRfdXJsIjtzOjA6IiI7czoxMzoid29vX2ZvbnRfYm9keSI7czoxMzM6ImE6NTp7czo0OiJzaXplIjtzOjI6IjE4IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM5OTk5OTkiO30iO3M6MTI6Indvb19mb250X25hdiI7czoxMzM6ImE6NTp7czo0OiJzaXplIjtzOjI6IjIwIjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM3Rjc4NzUiO30iO3M6MTk6Indvb19mb250X3Bvc3RfZW50cnkiO3M6MTI2OiJhOjU6e3M6NDoic2l6ZSI7czoyOiIxNiI7czo0OiJ1bml0IjtzOjI6InB4IjtzOjQ6ImZhY2UiO3M6MTA6IkRyb2lkIFNhbnMiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM5OTk5OTkiO30iO3M6MTg6Indvb19mb250X3Bvc3RfbWV0YSI7czoxMjY6ImE6NTp7czo0OiJzaXplIjtzOjI6IjEyIjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxMDoiRHJvaWQgU2FucyI7czo1OiJzdHlsZSI7czo2OiJub3JtYWwiO3M6NToiY29sb3IiO3M6NzoiIzk5OTk5OSI7fSI7czoxOToid29vX2ZvbnRfcG9zdF90aXRsZSI7czoxMzE6ImE6NTp7czo0OiJzaXplIjtzOjI6IjI0IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6NDoiYm9sZCI7czo1OiJjb2xvciI7czo3OiIjMTgxODE4Ijt9IjtzOjE5OiJ3b29fZm9udF9zaXRlX3RpdGxlIjtzOjE1OToiYTo1OntzOjQ6InNpemUiO3M6MjoiNDAiO3M6NDoidW5pdCI7czoyOiJweCI7czo0OiJmYWNlIjtzOjQzOiJDYWxpYnJpLCBDYW5kYXJhLCBTZWdvZSwgT3B0aW1hLCBzYW5zLXNlcmlmIjtzOjU6InN0eWxlIjtzOjY6Im5vcm1hbCI7czo1OiJjb2xvciI7czo3OiIjRkZGRkZGIjt9IjtzOjE2OiJ3b29fZm9udF90YWdsaW5lIjtzOjEzMzoiYTo1OntzOjQ6InNpemUiO3M6MjoiMTgiO3M6NDoidW5pdCI7czoyOiJweCI7czo0OiJmYWNlIjtzOjE3OiJZYW5vbmUgS2FmZmVlc2F0eiI7czo1OiJzdHlsZSI7czo2OiJub3JtYWwiO3M6NToiY29sb3IiO3M6NzoiIzk5OTk5OSI7fSI7czoyMjoid29vX2ZvbnRfd2lkZ2V0X3RpdGxlcyI7czoxMzQ6ImE6NTp7czo0OiJzaXplIjtzOjI6IjE2IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoyMDoiVGVybWluYWwgRG9zaXMgTGlnaHQiO3M6NToic3R5bGUiO3M6NDoiYm9sZCI7czo1OiJjb2xvciI7czo3OiIjN0Y3ODc1Ijt9IjtzOjE5OiJ3b29fZm9vdGVyX2FmZl9saW5rIjtzOjA6IiI7czoxNToid29vX2Zvb3Rlcl9sZWZ0IjtzOjQ6InRydWUiO3M6MjA6Indvb19mb290ZXJfbGVmdF90ZXh0IjtzOjA6IiI7czoxNjoid29vX2Zvb3Rlcl9yaWdodCI7czo0OiJ0cnVlIjtzOjIxOiJ3b29fZm9vdGVyX3JpZ2h0X3RleHQiO3M6MDoiIjtzOjE3OiJ3b29fZm9vdGVyX3NvY2lhbCI7czo0OiJ0cnVlIjtzOjIwOiJ3b29fZ29vZ2xlX2FuYWx5dGljcyI7czowOiIiO3M6MTQ6Indvb19ob21lX2ludHJvIjtzOjU4OiJTaSB0dSBjYXNhIHNlIHBhcmVjZSBhIHRvZGFzLCBub3NvdHJvcyBubyB0ZW5lbW9zIGxhIGN1bHBhIjtzOjE0OiJ3b29fbGlua19jb2xvciI7czo3OiIjN2Y3ODc1IjtzOjIwOiJ3b29fbGlua19ob3Zlcl9jb2xvciI7czo0OiIjZmZmIjtzOjg6Indvb19sb2dvIjtzOjcyOiJodHRwOi8vbG9jYWxob3N0L29yaWdpbmFsaG91c2Uvd3AtY29udGVudC91cGxvYWRzLzIwMTEvMDYvbG9nby1yb2pvMi5naWYiO3M6MTk6Indvb19wYWdpbmF0aW9uX3R5cGUiO3M6MTU6InBhZ2luYXRlZF9saW5rcyI7czoxNzoid29vX3Bpc19oYXJkX2Nyb3AiO3M6NDoidHJ1ZSI7czoxNDoid29vX3Bpc19yZXNpemUiO3M6NDoidHJ1ZSI7czoxNToid29vX3Bvc3RfYXV0aG9yIjtzOjU6ImZhbHNlIjtzOjE2OiJ3b29fcG9zdF9jb250ZW50IjtzOjc6ImV4Y2VycHQiO3M6MjI6Indvb19wb3N0X2ltYWdlX3N1cHBvcnQiO3M6NDoidHJ1ZSI7czoxMDoid29vX3Jlc2l6ZSI7czo0OiJ0cnVlIjtzOjEzOiJ3b29fcnNzX3RodW1iIjtzOjU6ImZhbHNlIjtzOjEyOiJ3b29fc2luZ2xlX2giO3M6MzoiMzAwIjtzOjEyOiJ3b29fc2luZ2xlX3ciO3M6MzoiMzAwIjtzOjE1OiJ3b29fc2l0ZV9sYXlvdXQiO3M6MTE6ImxheW91dC1mdWxsIjtzOjE5OiJ3b29fc3Vic2NyaWJlX2VtYWlsIjtzOjA6IiI7czoxMToid29vX3RhZ2xpbmUiO3M6NToiZmFsc2UiO3M6MTM6Indvb190ZXh0dGl0bGUiO3M6NToiZmFsc2UiO3M6MTU6Indvb190aHVtYl9hbGlnbiI7czoxMToiYWxpZ25jZW50ZXIiO3M6MTE6Indvb190aHVtYl9oIjtzOjM6IjE4NSI7czoxNjoid29vX3RodW1iX3NpbmdsZSI7czo0OiJ0cnVlIjtzOjIyOiJ3b29fdGh1bWJfc2luZ2xlX2FsaWduIjtzOjEwOiJhbGlnbnJpZ2h0IjtzOjExOiJ3b29fdGh1bWJfdyI7czozOiIxODUiO3M6MTQ6Indvb190aXRsZV9zaG93IjtzOjU6ImZhbHNlIjtzOjE0OiJ3b29fdHlwb2dyYXBoeSI7czo1OiJmYWxzZSI7fQ==";s:4:"type";s:8:"textarea";}i:17;a:3:{s:4:"name";s:9:"Admin Bar";s:4:"icon";s:6:"header";s:4:"type";s:7:"heading";}i:18;a:5:{s:4:"name";s:27:"Disable WordPress Admin Bar";s:4:"desc";s:32:"Disable the WordPress Admin Bar.";s:2:"id";s:31:"framework_woo_admin_bar_disable";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:19;a:5:{s:4:"name";s:46:"Enable the WooFramework Admin Bar enhancements";s:4:"desc";s:130:"Enable several WooFramework-specific enhancements to the WordPress Admin Bar, such as custom navigation items for ''Theme Options''.";s:2:"id";s:36:"framework_woo_admin_bar_enhancements";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}}', 'yes'),
(267, 0, 'theme_mods_originalhouse', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:4:{s:12:"primary-menu";i:10;s:14:"secondary-menu";i:8;s:8:"top-menu";i:0;s:11:"footer-menu";i:0;}}', 'yes'),
(1458, 0, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1310635651;s:7:"checked";a:14:{s:33:"admin-menu-editor/menu-editor.php";s:5:"1.1.3";s:43:"custom-post-background/custom-post-back.php";s:7:"1.3.1.0";s:33:"duplicate-post/duplicate-post.php";s:5:"1.1.2";s:53:"google-maps-v3-shortcode/Google-Maps-v3-Shortcode.php";s:4:"1.02";s:30:"lightbox-plus/lightboxplus.php";s:5:"2.2.2";s:51:"make-filename-lowercase/make-filename-lowercase.php";s:5:"1.0.0";s:26:"mp3-jplayer/mp3jplayer.php";s:5:"1.7.1";s:43:"nivo-slider-for-wordpress/nivoslider4wp.php";s:5:"0.3.2";s:47:"plugin-update-blocker/plugin-update-blocker.php";s:3:"0.2";s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";s:5:"1.0.2";s:35:"thecartpress/TheCartPress.class.php";s:5:"1.0.9";s:23:"tubepress/tubepress.php";s:5:"2.2.0";s:41:"wordpress-importer/wordpress-importer.php";s:3:"0.4";s:27:"wp-pagenavi/wp-pagenavi.php";s:4:"2.74";}s:8:"response";a:0:{}}', 'yes'),
(456, 0, 'wpsc_purchaselogs_fixed', '1', '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'),
(1063, 0, '_transient_timeout_wpsc_theme_path', '1309982637', 'no'),
(1064, 0, '_transient_wpsc_theme_path', 'D:\\Trabajo\\OriginalHouse\\trunk\\src\\wp-content\\plugins\\wp-e-commerce/wpsc-theme/', 'no'),
(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', 'false', '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";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:15;a:7:{s:4:"name";s:20:"Archive Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:22:"seo_woo_archive_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:16;a:3:{s:4:"name";s:13:"Indexing Meta";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:17;a:6:{s:4:"name";s:16:"Archive Indexing";s:4:"desc";s:128:"Select which archives to index on your site. Aids in removing duplicate content from being indexed, preventing content dilution.";s:2:"id";s:21:"seo_woo_meta_indexing";s:3:"std";s:8:"category";s:4:"type";s:10:"multicheck";s:7:"options";a:5:{s:8:"category";s:17:"Category Archives";s:3:"tag";s:12:"Tag Archives";s:6:"author";s:12:"Author Pages";s:6:"search";s:14:"Search Results";s:4:"date";s:13:"Date Archives";}}i:18;a:5:{s:4:"name";s:49:"Set meta for Posts & Pages to ''follow'' by default";s:4:"desc";s:143:"By default the woo_meta(); adds a ''nofollow'' meta to post and pages, meaning search engines will not index pages leading away from these pages.";s:2:"id";s:26:"seo_woo_meta_single_follow";s:3:"std";s:0:"";s:4:"type";s:8:"checkbox";}i:19;a:3:{s:4:"name";s:16:"Description Meta";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:20;a:6:{s:4:"name";s:20:"Homepage Description";s:4:"desc";s:61:"Choose where to populate your Homepage meta description from.";s:2:"id";s:22:"seo_woo_meta_home_desc";s:3:"std";s:1:"a";s:7:"options";a:3:{s:1:"a";s:3:"Off";s:1:"b";s:24:"From WP Site Description";s:1:"c";s:32:"From Custom Homepage Description";}s:4:"type";s:5:"radio";}i:21;a:5:{s:4:"name";s:27:"Custom Homepage Description";s:4:"desc";s:47:"Add a custom meta description to your homepage.";s:2:"id";s:29:"seo_woo_meta_home_desc_custom";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:22;a:6:{s:4:"name";s:28:"Single Page/Post Description";s:4:"desc";s:79:"Add your post/page description from custom fields. <strong>* See below</strong>";s:2:"id";s:24:"seo_woo_meta_single_desc";s:3:"std";s:1:"a";s:7:"options";a:3:{s:1:"a";s:5:"Off *";s:1:"b";s:33:"From Customs Field and/or Plugins";s:1:"c";s:36:"Automatically from Post/Page Content";}s:4:"type";s:5:"radio";}i:23;a:6:{s:4:"name";s:29:"Global Post/Page Descriptions";s:4:"desc";s:189:"Add a custom meta description to your posts and pages. This will only show if no other data is available from the selection above. Will still be added even if setting above is set to "Off".";s:2:"id";s:33:"seo_woo_meta_single_desc_sitewide";s:3:"std";s:0:"";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:24;a:6:{s:4:"name";s:22:"Add Global Description";s:4:"desc";s:27:"Add your global decription.";s:2:"id";s:31:"seo_woo_meta_single_desc_custom";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:4:"type";s:8:"textarea";}i:25;a:3:{s:4:"name";s:12:"Keyword Meta";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:26;a:6:{s:4:"name";s:17:"Homepage Keywords";s:4:"desc";s:61:"Choose where to populate your Homepage meta description from.";s:2:"id";s:21:"seo_woo_meta_home_key";s:3:"std";s:1:"a";s:7:"options";a:2:{s:1:"a";s:3:"Off";s:1:"c";s:29:"From Custom Homepage Keywords";}s:4:"type";s:5:"radio";}i:27;a:5:{s:4:"name";s:24:"Custom Homepage Keywords";s:4:"desc";s:58:"Add a (comma separated) list of keywords to your homepage.";s:2:"id";s:28:"seo_woo_meta_home_key_custom";s:3:"std";s:0:"";s:4:"type";s:8:"textarea";}i:28;a:6:{s:4:"name";s:25:"Single Page/Post Keywords";s:4:"desc";s:75:"Add your post/page keywords from custom field. <strong>* See below</strong>";s:2:"id";s:23:"seo_woo_meta_single_key";s:3:"std";s:1:"a";s:7:"options";a:3:{s:1:"a";s:5:"Off *";s:1:"b";s:33:"From Custom Fields and/or Plugins";s:1:"c";s:45:"Automatically from Post Tags &amp; Categories";}s:4:"type";s:5:"radio";}i:29;a:6:{s:4:"name";s:25:"Custom Post/Page Keywords";s:4:"desc";s:221:"Add custom meta keywords to your posts and pages. This will only show if no other data is available from the options above. Even if the option above is set to <strong>''Off''</strong>, this will still be added to your site.";s:2:"id";s:32:"seo_woo_meta_single_key_sitewide";s:3:"std";s:0:"";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:30;a:6:{s:4:"name";s:25:"Custom Post/Page Keywords";s:4:"desc";s:65:"Add a (comma separated) list of keywords to your posts and pages.";s:2:"id";s:30:"seo_woo_meta_single_key_custom";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:4:"type";s:8:"textarea";}}', 'yes'),
(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'),
(374, 0, 'tubepress-keyword', 'tubepress', 'yes'),
(314, 0, 'woo_custom_upload_tracking', 'a:0:{}', 'yes'),
(398, 0, 'tubepress-disableHttpTransportExtHttp', '', 'yes'),
(399, 0, 'tubepress-disableHttpTransportFopen', '', 'yes'),
(400, 0, 'tubepress-disableHttpTransportFsockOpen', '', 'yes'),
(401, 0, 'tubepress-disableHttpTransportStreams', '', 'yes'),
(402, 0, 'tubepress-randomize_thumbnails', '', 'yes'),
(403, 0, 'tubepress-relativeDates', '', 'yes'),
(404, 0, 'tubepress-paginationAbove', '', 'yes'),
(405, 0, 'tubepress-paginationBelow', '1', 'yes'),
(406, 0, 'tubepress-ajaxPagination', '', 'yes'),
(407, 0, 'tubepress-hqThumbs', '1', 'yes'),
(408, 0, 'tubepress-autoplay', '1', 'yes'),
(409, 0, 'tubepress-loop', '', 'yes'),
(410, 0, 'tubepress-showInfo', '', 'yes'),
(411, 0, 'tubepress-showRelated', '', 'yes'),
(412, 0, 'tubepress-fullscreen', '1', 'yes'),
(413, 0, 'tubepress-hd', '1', 'yes'),
(414, 0, 'tubepress-author', '', 'yes'),
(415, 0, 'tubepress-category', '', 'yes'),
(416, 0, 'tubepress-description', '', 'yes'),
(417, 0, 'tubepress-id', '', 'yes'),
(418, 0, 'tubepress-length', '', 'yes'),
(419, 0, 'tubepress-rating', '', 'yes'),
(420, 0, 'tubepress-ratings', '', 'yes'),
(421, 0, 'tubepress-tags', '', 'yes'),
(422, 0, 'tubepress-title', '', 'yes'),
(423, 0, 'tubepress-uploaded', '', 'yes'),
(424, 0, 'tubepress-url', '', 'yes'),
(425, 0, 'tubepress-views', '', 'yes'),
(426, 0, 'tubepress-likes', '', 'yes'),
(427, 0, 'tubepress-cacheEnabled', '', 'yes'),
(428, 0, 'tubepress-embeddableOnly', '1', 'yes'),
(429, 0, 'tubepress-descriptionLimit', '80', 'yes'),
(430, 0, 'tubepress-resultsPerPage', '10', 'yes'),
(431, 0, 'tubepress-thumbHeight', '196', 'yes'),
(432, 0, 'tubepress-thumbWidth', '192', 'yes'),
(433, 0, 'tubepress-embeddedHeight', '437', 'yes'),
(434, 0, 'tubepress-embeddedWidth', '531', 'yes'),
(435, 0, 'tubepress-resultCountCap', '300', 'yes'),
(436, 0, 'tubepress-cacheCleaningFactor', '20', 'yes'),
(437, 0, 'tubepress-cacheLifetimeSeconds', '3600', 'yes'),
(438, 0, 'tubepress-most_viewedValue', 'today', 'yes'),
(439, 0, 'tubepress-top_ratedValue', 'today', 'yes'),
(440, 0, 'tubepress-youtubeTopFavoritesValue', 'today', 'yes'),
(441, 0, 'tubepress-orderBy', 'published', 'yes'),
(442, 0, 'tubepress-playerLocation', 'shadowbox', 'yes'),
(443, 0, 'tubepress-filter_racy', 'moderate', 'yes'),
(444, 0, 'tubepress-playerImplementation', 'provider_based', 'yes'),
(445, 0, 'tubepress-theme', 'default', 'yes'),
(446, 0, 'woo_title_show', 'false', 'yes'),
(1354, 0, 'googlemaps_more', '1', 'yes'),
(447, 0, '_transient_plugins_delete_result_1', '1', 'yes'),
(459, 0, 'wpsc_needs_update', '', 'yes'),
(460, 0, 'show_subcatsprods_in_cat', '0', 'yes'),
(461, 0, 'wpsc_share_this', '0', 'yes'),
(462, 0, 'wpsc_crop_thumbnails', '0', 'yes'),
(463, 0, 'wpsc_products_per_page', '20', 'yes'),
(464, 0, 'wpsc_force_ssl', '0', 'yes'),
(465, 0, 'use_pagination', '1', 'yes'),
(466, 0, 'hide_name_link', '1', 'yes'),
(467, 0, 'wpsc_enable_comments', '0', 'yes'),
(468, 0, 'multi_add', '0', 'yes'),
(469, 0, 'hide_addtocart_button', '1', 'yes'),
(470, 0, 'wpsc_addtocart_or_buynow', '0', 'yes'),
(471, 0, 'show_thumbnails', '1', 'yes'),
(472, 0, 'show_thumbnails_thickbox', '1', 'yes'),
(473, 0, 'product_list_url', 'http://localhost/originalhouse/?page_id=127', 'yes'),
(474, 0, 'shopping_cart_url', 'http://localhost/originalhouse/?page_id=128', 'yes'),
(475, 0, 'checkout_url', 'http://localhost/originalhouse/?page_id=128', 'yes'),
(476, 0, 'transact_url', 'http://localhost/originalhouse/?page_id=129', 'yes'),
(477, 0, 'payment_gateway', '', 'yes'),
(478, 0, 'payment_gateway_names', 'a:6:{s:9:"chronopay";s:0:"";s:6:"google";s:0:"";s:28:"wpsc_merchant_paypal_express";s:0:"";s:24:"wpsc_merchant_paypal_pro";s:0:"";s:29:"wpsc_merchant_paypal_standard";s:0:"";i:0;b:0;}', 'yes'),
(479, 0, 'cart_location', '4', 'yes'),
(480, 0, 'currency_type', '201', 'yes'),
(481, 0, 'currency_sign_location', '1', 'yes'),
(482, 0, 'gst_rate', '1', 'yes'),
(483, 0, 'max_downloads', '1', 'yes'),
(484, 0, 'display_pnp', '0', 'yes'),
(485, 0, 'display_specials', '1', 'yes'),
(486, 0, 'do_not_use_shipping', '1', 'yes'),
(487, 0, 'postage_and_packaging', '0', 'yes'),
(488, 0, 'purch_log_email', '', 'yes'),
(489, 0, 'return_email', '', 'yes'),
(490, 0, 'terms_and_conditions', '', 'yes'),
(491, 0, 'google_key', 'none', 'yes'),
(492, 0, 'google_id', 'none', 'yes'),
(493, 0, 'default_brand', 'none', 'yes'),
(494, 0, 'wpsc_default_category', 'all', 'yes'),
(495, 0, 'product_view', 'default', 'yes'),
(496, 0, 'add_plustax', '0', 'yes'),
(497, 0, 'nzshpcrt_first_load', '0', 'yes'),
(498, 0, 'show_categorybrands', '2', 'yes'),
(499, 0, 'paypal_business', '', 'yes'),
(500, 0, 'paypal_url', '', 'yes'),
(501, 0, 'paypal_ipn', '1', 'yes'),
(502, 0, 'paypal_multiple_business', '', 'yes'),
(503, 0, 'paypal_multiple_url', 'https://www.paypal.com/cgi-bin/webscr', 'yes'),
(504, 0, 'product_ratings', '0', 'yes'),
(505, 0, 'wpsc_email_receipt', 'Thank you for purchasing with %shop_name%, any items to be shipped will be processed as soon as possible, any items that can be downloaded can be downloaded using the links on this page.All prices include tax and postage and packaging where applicable.\n You ordered these items: \n %product_list%%total_shipping%%total_price%', 'yes'),
(506, 0, 'wpsc_email_admin', '%product_list%%total_shipping%%total_price%', 'yes'),
(507, 0, 'wpsc_selected_theme', 'default', 'yes'),
(508, 0, 'product_image_height', '148', 'yes'),
(509, 0, 'product_image_width', '148', 'yes'),
(510, 0, 'category_image_height', '148', 'yes'),
(511, 0, 'category_image_width', '148', 'yes'),
(512, 0, 'single_view_image_height', '148', 'yes'),
(513, 0, 'single_view_image_width', '148', 'yes'),
(514, 0, 'wpsc_gallery_image_height', '31', 'yes'),
(515, 0, 'wpsc_gallery_image_width', '31', 'yes'),
(516, 0, 'wpsc_thousands_separator', '.', 'yes'),
(517, 0, 'wpsc_decimal_separator', ',', 'yes'),
(518, 0, 'custom_gateway_options', 'a:1:{i:0;s:22:"wpsc_merchant_testmode";}', 'yes'),
(519, 0, 'wpsc_category_url_cache', 'a:0:{}', 'yes'),
(520, 0, 'wpec_taxes_inprice', 'inclusive', 'yes'),
(521, 0, 'wpec_taxes_product', 'replace', 'yes'),
(522, 0, 'wpec_taxes_logic', 'billing', 'yes'),
(523, 0, 'user_account_url', 'http://localhost/originalhouse/?page_id=130', 'yes'),
(525, 0, 'wpsc_checkout_form_sets', 'a:1:{i:0;s:22:"Default Checkout Forms";}', 'yes'),
(831, 0, 'mfbfw_frameHeight', '340', 'yes'),
(526, 0, 'wpsc_checkout_form_fields', 'a:13:{s:4:"Text";s:4:"text";s:13:"Email Address";s:5:"email";s:14:"Street Address";s:7:"address";s:4:"City";s:4:"city";s:7:"Country";s:7:"country";s:16:"Delivery Address";s:16:"delivery_address";s:13:"Delivery City";s:13:"delivery_city";s:16:"Delivery Country";s:16:"delivery_country";s:9:"Text Area";s:8:"textarea";s:7:"Heading";s:7:"heading";s:6:"Select";s:6:"select";s:12:"Radio Button";s:5:"radio";s:8:"Checkbox";s:8:"checkbox";}', 'yes'),
(527, 0, 'wpsc_checkout_unique_names', 'a:17:{i:0;s:16:"billingfirstname";i:1;s:15:"billinglastname";i:2;s:14:"billingaddress";i:3;s:11:"billingcity";i:4;s:12:"billingstate";i:5;s:14:"billingcountry";i:6;s:12:"billingemail";i:7;s:12:"billingphone";i:8;s:15:"billingpostcode";i:9;s:16:"delivertoafriend";i:10;s:17:"shippingfirstname";i:11;s:16:"shippinglastname";i:12;s:15:"shippingaddress";i:13;s:12:"shippingcity";i:14;s:13:"shippingstate";i:15;s:15:"shippingcountry";i:16;s:16:"shippingpostcode";}', 'yes'),
(528, 0, 'wpsc_australiapost_settings', 'a:1:{s:8:"services";a:5:{s:8:"STANDARD";b:1;s:7:"EXPRESS";b:1;s:3:"AIR";b:1;s:3:"SEA";b:1;s:3:"EPI";b:1;}}', 'yes'),
(1264, 0, '_transient_timeout_wpsc_url_wpsc-default.css', '1309989327', 'no'),
(1265, 0, '_transient_wpsc_url_wpsc-default.css', 'http://localhost/originalhouse/wp-content/plugins/wp-e-commerce/wpsc-theme/wpsc-default.css', 'no'),
(532, 0, 'widget_wpsc_shopping_cart', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(531, 0, 'widget_wpsc_product_tags', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(533, 0, 'widget_wpsc_donations', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(534, 0, 'widget_wpsc_product_specials', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(535, 0, 'widget_wpsc_latest_products', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(536, 0, 'widget_wpsc_price_range', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(537, 0, 'widget_wpsc_admin_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(538, 0, 'widget_wpsc_categorisation', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(539, 0, 'wpsc_trackingid_subject', 'Product Tracking Email', 'yes'),
(540, 0, 'wpsc_trackingid_message', 'Track & Trace means you may track the progress of your parcel with our online parcel tracker, just login to our website and enter the following Tracking ID to view the status of your order.\n\nTracking ID: %trackid%\n', 'yes'),
(541, 0, 'wpsc_ignore_theme', '', 'yes'),
(545, 0, 'base_country', 'ES', 'yes'),
(548, 0, 'tcp_shopping_cart_page_id', '133', 'yes'),
(549, 0, 'tcp_checkout_page_id', '134', 'yes'),
(550, 0, 'tcp_plugins_data_shi_FreeTrans', 'a:1:{i:0;a:5:{s:6:"active";b:1;s:13:"all_countries";s:3:"yes";s:9:"countries";a:0:{}s:10:"new_status";s:7:"PENDING";s:7:"minimun";i:0;}}', 'yes'),
(551, 0, 'tcp_plugins_data_pay_Remboursement', 'a:1:{i:0;a:6:{s:6:"active";b:1;s:13:"all_countries";s:3:"yes";s:9:"countries";a:0:{}s:10:"new_status";s:10:"PROCESSING";s:6:"notice";s:22:"Cash on delivery! (5%)";s:10:"percentage";i:5;}}', 'yes'),
(552, 0, 'tcp_shortcodes_data', 'a:1:{i:0;a:23:{s:2:"id";s:12:"all_products";s:5:"title";s:0:"";s:4:"desc";s:20:"List of all products";s:9:"post_type";s:11:"tcp_product";s:12:"use_taxonomy";b:0;s:8:"taxonomy";s:20:"tcp_product_category";s:8:"included";a:0:{}s:4:"term";s:10:"aparadores";s:4:"loop";s:88:"D:\\\\Trabajo\\\\OriginalHouse\\\\trunk\\\\src/wp-content/themes/originalhouse/loop-tcp-grid.php";s:7:"columns";i:4;s:9:"see_title";b:0;s:9:"see_image";b:0;s:10:"image_size";s:6:"medium";s:11:"see_content";b:0;s:11:"see_excerpt";b:0;s:10:"see_author";b:0;s:13:"see_meta_data";b:0;s:18:"see_meta_utilities";b:0;s:9:"see_price";b:0;s:14:"see_buy_button";b:0;s:21:"see_first_custom_area";b:0;s:22:"see_second_custom_area";b:0;s:21:"see_third_custom_area";b:0;}}', 'yes'),
(553, 0, 'tcp_settings', 'a:53:{s:17:"after_add_to_cart";s:0:"";s:21:"disable_shopping_cart";b:1;s:15:"currency_layout";s:0:"";s:8:"currency";s:3:"EUR";s:16:"decimal_currency";s:1:"2";s:13:"decimal_point";s:1:",";s:19:"thousands_separator";s:1:".";s:11:"unit_weight";s:3:"kg.";s:22:"hide_downloadable_menu";b:1;s:17:"downloadable_path";s:0:"";s:7:"country";s:2:"ES";s:19:"default_tax_country";s:2:"ES";s:18:"prices_include_tax";b:1;s:12:"tax_based_on";s:6:"origin";s:16:"tax_for_shipping";s:1:"0";s:6:"emails";s:0:"";s:10:"from_email";s:0:"";s:12:"legal_notice";s:15:"Checkout notice";s:29:"checkout_successfully_message";s:0:"";s:15:"product_rewrite";s:7:"product";s:16:"category_rewrite";s:8:"category";s:11:"tag_rewrite";s:3:"tag";s:16:"supplier_rewrite";s:8:"supplier";s:13:"use_tcp_loops";b:1;s:17:"products_per_page";i:10;s:18:"image_size_content";s:6:"medium";s:19:"image_align_content";s:0:"";s:18:"image_link_content";s:4:"file";s:18:"image_size_excerpt";s:9:"thumbnail";s:19:"image_align_excerpt";s:0:"";s:18:"image_link_excerpt";s:0:"";s:23:"search_engine_activated";b:1;s:16:"stock_management";b:0;s:17:"enabled_wish_list";b:0;s:17:"user_registration";b:0;s:25:"shipping_cost_include_tax";b:0;s:24:"apply_tax_after_discount";b:0;s:38:"apply_discount_on_prices_including_tax";b:0;s:25:"display_prices_with_taxes";b:0;s:25:"display_Cart_Order_prices";b:0;s:32:"display_shipping_cost_with_taxes";b:0;s:24:"display_full_tax_summary";b:0;s:25:"display_zero_tax_subtotal";b:0;s:25:"see_buy_button_in_content";b:0;s:25:"see_buy_button_in_excerpt";b:0;s:20:"see_price_in_content";b:0;s:20:"see_price_in_excerpt";b:0;s:20:"see_image_in_content";b:0;s:20:"see_image_in_excerpt";b:0;s:19:"load_default_styles";b:0;s:13:"hide_visibles";b:0;s:19:"show_back_end_label";b:0;s:18:"search_engine_guid";s:38:"{6E3F1D63-CAA6-49AE-959F-50BFC08BBF02}";}', 'yes'),
(735, 0, 'pub_update_deactivated', 's:130:"a:1:{s:23:"tubepress/tubepress.php";a:2:{s:4:"name";s:23:"tubepress/tubepress.php";s:4:"note";s:26:"Porque está personalizado";}}";', 'yes'),
(795, 0, 'ttc_settings', 'a:14:{s:9:"see_image";b:1;s:10:"image_size";s:9:"thumbnail";s:7:"columns";i:5;s:9:"see_title";b:0;s:11:"see_excerpt";b:0;s:11:"see_content";b:0;s:10:"see_author";b:0;s:9:"see_price";b:0;s:14:"see_buy_button";b:0;s:13:"see_meta_data";b:0;s:18:"see_meta_utilities";b:0;s:21:"see_first_custom_area";b:0;s:22:"see_second_custom_area";b:0;s:21:"see_third_custom_area";b:0;}', 'yes'),
(618, 0, 'term_prices', 'a:1:{i:36;a:2:{s:5:"price";s:0:"";s:7:"checked";s:9:"unchecked";}}', 'yes'),
(554, 0, 'widget_shoppingcartsummary-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(555, 0, 'widget_shoppingcart-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(556, 0, 'widget_tcplastvisited-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(557, 0, 'widget_tcpwishlist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(558, 0, 'widget_tcprelatedlist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(559, 0, 'widget_customposttypelist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(560, 0, 'widget_taxonomycloudsposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(561, 0, 'widget_taxonomytreesposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(562, 0, 'widget_orderpanel-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(563, 0, 'widget_commentscustomposttype-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(564, 0, 'widget_tcpbrotherslist-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(565, 0, 'widget_checkout-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(566, 0, 'tcp_version', '109', 'yes'),
(1278, 0, 'tcp_product_supplier_children', 'a:0:{}', 'yes'),
(1390, 0, '_transient_timeout_feed_d253e7c9b487cb2e3c129fb2194c2c69', '1310591656', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1391, 0, '_transient_feed_d253e7c9b487cb2e3c129fb2194c2c69', '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:25:"WordPress e-Commerce Cart";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:23:"http://thecartpress.com";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:27:"WordPress e-Commerce Plugin";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:"Tue, 12 Jul 2011 16:55: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: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:29:"http://wordpress.org/?v=3.1.3";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:40:"New Beta release is available, 1.1.0 (4)";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:70:"http://thecartpress.com/2011/07/new-beta-release-is-available-1-1-0-4/";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:79:"http://thecartpress.com/2011/07/new-beta-release-is-available-1-1-0-4/#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:"Tue, 05 Jul 2011 07:51: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:8:"category";a:1:{i:0;a:5:{s:4:"data";s:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1674";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:725:"New Beta releases for TheCartPress 1.1.0 Newest features of this release Settings: Disabled eCommerce. To use TheCartPress lika a Famework/API Tax: fixed some bugs (Thanks to the community) Ready for sell any saleable post type html5 support Widget TCP Archives: Custom post type support in Archives plugin Custom templates Custom Post types and custom taxonomies manager The major features are &#8216;Custom Post types and custom taxonomies manager&#8217;, &#8216;Custom templates&#8217; and the new widget called &#8216;TCP Archives&#8217;. So you could create&#160;&#8230; <a href="http://thecartpress.com/2011/07/new-beta-release-is-available-1-1-0-4/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>";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:6:"Sensei";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:1802:"<p>New Beta releases for TheCartPress 1.1.0</p>\n<p>Newest features of this release</p>\n<ul>\n<li>Settings: Disabled eCommerce. To use TheCartPress lika a Famework/API</li>\n<li>Tax: fixed some bugs (Thanks to the community)</li>\n<li>Ready for sell any saleable post type</li>\n<li>html5 support</li>\n<li>Widget TCP Archives: Custom post type support in Archives plugin</li>\n<li>Custom templates</li>\n<li>Custom Post types and custom taxonomies manager</li>\n</ul>\n<p>The major features are &#8216;Custom Post types and custom taxonomies manager&#8217;, &#8216;Custom templates&#8217; and the new widget called &#8216;TCP Archives&#8217;.<br />\nSo you could create new Custom Post types and taxonomies. You could assign templates to the post types, taxonomies or terms, and with the new widget called &#8216;TCP Archives&#8217;, you could display yearly/weekly/daily/etc links for the different &#8216;post types&#8217;.</p>\n<p>And remember, you could create saleable Post types. So, now, you could create more eCommerces in one eCommerce.<br />\nWith the Custom templates, you&#8217;ll can have different looks for the different products you sell in your eCommerce&#8230;</p>\n<p>Newest features into TheCartPress 1.1.0</p>\n<ul>\n<li>Checkout editor</li>\n<li>Billing Options Ex box for checkout</li>\n<li>Limit in tcp_shortcodes</li>\n<li>Grid layout (by default) in tcp_shortcodes and Product List Widgets</li>\n<li>Shipping Cost calculate by states/regions</li>\n<li>Name of Countries internationalisation</li>\n<li>tcp_checkout_validate_before_enter filter in Checkout</li>\n<li>Custom fields designer</li>\n<li>Checkout improvement: Transaction id</li>\n</ul>\n<p><a href="http://thecartpress.com/download/beta-release/">Download it now</a>, but remember, it&#8217;s only for testing purpose.</p>\n<p>Enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:75:"http://thecartpress.com/2011/07/new-beta-release-is-available-1-1-0-4/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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: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:65:"TheCartPress Product Options new Beta release is available, 1.0.3";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:97:"http://thecartpress.com/2011/06/thecartpress-product-options-new-beta-release-is-available-1-0-3/";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:106:"http://thecartpress.com/2011/06/thecartpress-product-options-new-beta-release-is-available-1-0-3/#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:"Mon, 20 Jun 2011 10:55:04 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1615";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:210:"New beta release for TheCartPress-ProductOptions ( or how to add colours and sizes to your products) Newest features of this release Modify all in product-options list Fixed some bugs Download it now. Enjoy it!";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:6:"Sensei";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:329:"<p>New beta release for TheCartPress-ProductOptions ( or how to add colours and sizes to your products)</p>\n<p>Newest features of this release</p>\n<ul>\n<li>Modify all in product-options list</li>\n<li>Fixed some bugs</li>\n</ul>\n<p><a href="http://thecartpress.com/download/beta-release/">Download it now</a>.</p>\n<p>Enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:102:"http://thecartpress.com/2011/06/thecartpress-product-options-new-beta-release-is-available-1-0-3/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:2;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:40:"New Beta release is available, 1.1.0 (3)";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:70:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-3/";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:79:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-3/#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:"Mon, 20 Jun 2011 08:25:13 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1611";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:523:"New Beta releases for TheCartPress 1.1.0 Newest features of this release Custom fields designer Checkout improvement: Transaction id Newest features into TheCartPress Checkout editor Billing Options Ex box for checkout Limit in tcp_shortcodes Grid layout (by default) in tcp_shortcodes and Product List Widgets Shipping Cost calculate by states/regions Name of Countries internationalisation tcp_checkout_validate_before_enter filter in Checkout Download it now, but remember, it&#8217;s only for testing purpose. Enjoy it!";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:6:"Sensei";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:723:"<p>New Beta releases for TheCartPress 1.1.0</p>\n<p>Newest features of this release</p>\n<ul>\n<li>Custom fields designer</li>\n<li>Checkout improvement: Transaction id</li>\n</ul>\n<p>Newest features into TheCartPress</p>\n<ul>\n<li>Checkout editor</li>\n<li>Billing Options Ex box for checkout</li>\n<li>Limit in tcp_shortcodes</li>\n<li>Grid layout (by default) in tcp_shortcodes and Product List Widgets</li>\n<li>Shipping Cost calculate by states/regions</li>\n<li>Name of Countries internationalisation</li>\n<li>tcp_checkout_validate_before_enter filter in Checkout</li>\n</ul>\n<p><a href="http://thecartpress.com/download/beta-release/">Download it now</a>, but remember, it&#8217;s only for testing purpose.</p>\n<p>Enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:75:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-3/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:3;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:40:"New Beta release is available, 1.1.0 (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:70:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-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:79:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-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:"Tue, 14 Jun 2011 07:12:34 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1594";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:463:"New Beta releases for TheCartPress 1.1.0 Newest features of this release Shipping Cost calculate by states/regions Name of Countries internationalisation tcp_checkout_validate_before_enter filter in Checkout Newest features into TheCartPress Checkout editor Billing Options Ex box for checkout Limit in tcp_shortcodes Grid layout (by default) in tcp_shortcodes and Product List Widgets Download it now, but remember, it&#8217;s only for testing purpose. Enjoy it!";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:6:"Sensei";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:645:"<p>New Beta releases for TheCartPress 1.1.0</p>\n<p>Newest features of this release</p>\n<ul>\n<li>Shipping Cost calculate by states/regions</li>\n<li>Name of Countries internationalisation</li>\n<li>tcp_checkout_validate_before_enter filter in Checkout</li>\n</ul>\n<p>Newest features into TheCartPress</p>\n<ul>\n<li>Checkout editor</li>\n<li>Billing Options Ex box for checkout</li>\n<li>Limit in tcp_shortcodes</li>\n<li>Grid layout (by default) in tcp_shortcodes and Product List Widgets</li>\n</ul>\n<p><a href="http://thecartpress.com/download/beta-release/">Download it now</a>, but remember, it&#8217;s only for testing purpose.</p>\n<p>Enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:75:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:4;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:14:"Showcase group";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://thecartpress.com/2011/06/showcase-group/";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:56:"http://thecartpress.com/2011/06/showcase-group/#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:"Wed, 08 Jun 2011 11:45:58 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1558";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:207:"The Community of TheCartPress has created a new group called Showcase. In this group everybody could share their works made with TheCartPress. Make a link to your eCommerces, visit the Showcase. Best regards";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:6:"Sensei";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:301:"<p>The Community of TheCartPress has created a new group called Showcase.</p>\n<p>In this group everybody could share their works made with TheCartPress.</p>\n<p>Make a link to your eCommerces, visit the <a href="http://community.thecartpress.com/groups/showcase/">Showcase</a>.</p>\n<p>Best regards</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:52:"http://thecartpress.com/2011/06/showcase-group/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:5;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:36:"New Beta release is available, 1.1.0";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://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0/";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://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0/#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:"Wed, 08 Jun 2011 10:16:48 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1555";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:296:"New Beta releases for TheCartPress 1.1.0 Newest features into TheCartPress Checkout editor Billing Options Ex box for checkout Limit in tcp_shortcodes Grid layout (by default) in tcp_shortcodes and Product List Widgets Download it now, but remember, it&#8217;s only for testing purpose. Enjoy it!";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:6:"Sensei";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:433:"<p>New Beta releases for TheCartPress 1.1.0</p>\n<p>Newest features into TheCartPress</p>\n<ul>\n<li>Checkout editor</li>\n<li>Billing Options Ex box for checkout</li>\n<li>Limit in tcp_shortcodes</li>\n<li>Grid layout (by default) in tcp_shortcodes and Product List Widgets</li>\n</ul>\n<p><a href="http://thecartpress.com/download/beta-release/">Download it now</a>, but remember, it&#8217;s only for testing purpose.</p>\n<p>Enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:73:"http://thecartpress.com/2011/06/new-beta-release-is-available-1-1-0/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:6;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:28:"Product Options plugin 1.0.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:61:"http://thecartpress.com/2011/05/product-options-plugin-1-0-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:70:"http://thecartpress.com/2011/05/product-options-plugin-1-0-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:"Mon, 30 May 2011 11:45:58 +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:"Plugins";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:31:"http://thecartpress.com/?p=1543";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:228:"Launched TheCartPress Product Options 1.0.2, one of the plugins for our e-Commece plugin for WordPress. This new release adds these features: Fix some little bugs Adding new hooks Support TheCartPress 1.0.9 We hope you enjoy it!";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:6:"Sensei";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:287:"<p>Launched TheCartPress Product Options 1.0.2, one of the plugins for our e-Commece plugin for WordPress.<br />\nThis new release adds these features:</p>\n<ul>\n<li>Fix some little bugs</li>\n<li>Adding new hooks</li>\n<li>Support TheCartPress 1.0.9</li>\n</ul>\n<p>We hope you enjoy it!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:66:"http://thecartpress.com/2011/05/product-options-plugin-1-0-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:7;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:42:"TheCartPress e-Commerce 1.0.9 is available";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:75:"http://thecartpress.com/2011/05/thecartpress-e-commerce-1-0-9-is-available/";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:84:"http://thecartpress.com/2011/05/thecartpress-e-commerce-1-0-9-is-available/#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:"Mon, 30 May 2011 11:13:50 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1540";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:757:"Launched TheCartPress 1.0.9, e-Commece cart plugin for WordPress: Simple Wish list (Suggested in the community) Settings: Hide downloadable menu (Suggested in the community) Settings: Products per page (Suggested in the community) Settings: Currency layout (Suggested in the community) Print order from order edit page (Suggested in the community) FlateRate/ShippingCost instance names (Suggested in the community) Tax!: International tax management (Suggested in the community) BuyButton: You could make your own buy buttons (Suggested in the community) New Chekout: Developed again. Now,&#160;&#8230; <a href="http://thecartpress.com/2011/05/thecartpress-e-commerce-1-0-9-is-available/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>";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:6:"Sensei";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:1221:"<p>Launched TheCartPress 1.0.9, e-Commece cart plugin for WordPress:</p>\n<ul>\n<li>Simple Wish list (Suggested in the community)</li>\n<li>Settings: Hide downloadable menu (Suggested in the community)</li>\n<li>Settings: Products per page (Suggested in the community)</li>\n<li>Settings: Currency layout (Suggested in the community)</li>\n<li>Print order from order edit page (Suggested in the community)</li>\n<li>FlateRate/ShippingCost instance names (Suggested in the community)</li>\n<li>Tax!: International tax management (Suggested in the community)</li>\n<li>BuyButton: You could make your own buy buttons (Suggested in the community)</li>\n<li>New Chekout: Developed again. Now, it&#8217;s configurable.</li>\n<li>Templates</li>\n<li>Regions/states (Suggested in the community)</li>\n<li>Authorize.net paymet method (Suggested in the community)</li>\n<li>Number of decimals for the prices (Suggested in the community)</li>\n<li>Hide if empty property in Shopping Cart (Summary) Widgets</li>\n<li>Exclude for range prices: Allows to exclude a product from its parent range price</li>\n<li>New ShortCode: tcp_price, to show the price of the current product</li>\n<li>New CSS styles</li>\n</ul>\n<p>And that&#8217;s all. Enjoy it.</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:80:"http://thecartpress.com/2011/05/thecartpress-e-commerce-1-0-9-is-available/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:8;a:6:{s:4:"data";s:44:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:42:"TheCartPress CSV Loader 1.0.4 is available";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:75:"http://thecartpress.com/2011/05/thecartpress-csv-loader-1-0-4-is-available/";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:84:"http://thecartpress.com/2011/05/thecartpress-csv-loader-1-0-4-is-available/#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:"Thu, 19 May 2011 15:57: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:7:"Plugins";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:5:{s:4:"data";s:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1518";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:414:"Launched a new version of the plugin TheCartPress CSVLoader. This release is numered like 1.0.4. This new release fix a bug with the session management. And, of course, we have a new beta release for TheCartPress 1.0.9. This new beta fix some bugs in the Checkout page. You could download it from here. Notice that the plugin TheCartPress-states has disappeared. It has been integrated into TheCartPress Enjoy it!!";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:6:"Sensei";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:516:"<p>Launched a new version of the plugin TheCartPress CSVLoader. This release is numered like 1.0.4.<br />\nThis new release fix a bug with the session management.</p>\n<p>And, of course, we have a new beta release for TheCartPress 1.0.9. This new beta fix some bugs in the Checkout page.<br />\nYou could download it from <a href="http://thecartpress.com/download/beta-release">here</a>.</p>\n<p>Notice that the plugin TheCartPress-states has disappeared. It has been integrated into TheCartPress</p>\n<p>Enjoy it!!</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:80:"http://thecartpress.com/2011/05/thecartpress-csv-loader-1-0-4-is-available/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:9;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:"New beta release is available (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:64:"http://thecartpress.com/2011/05/new-beta-release-is-available-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:73:"http://thecartpress.com/2011/05/new-beta-release-is-available-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:"Wed, 18 May 2011 16:30:07 +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:13:"Uncategorized";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:31:"http://thecartpress.com/?p=1510";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:602:"A new beta release has been upload. In this new version, a bug in the checkout has been fixed. You could test the new Template feature. In the left menu you could find a new menu called Templates. TheCartPress allows you to create different templates and assign them to some places, for example to the end of the checkout. Those Templates are like post, you could type text, attach images, add shortcodes, etc. For example, if you set a Template&#160;&#8230; <a href="http://thecartpress.com/2011/05/new-beta-release-is-available-2/">Continue&#160;reading&#160;<span class="meta-nav">&#8594;</span></a>";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:6:"Sensei";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:635:"<p>A new beta release has been upload.</p>\n<p>In this new version, a bug in the checkout has been fixed.</p>\n<p>You could test the new Template feature. In the left menu you could find a new menu called Templates.</p>\n<p>TheCartPress allows you to create different templates and assign them to some places, for example to the end of the checkout. Those Templates are like post, you could type text, attach images, add shortcodes, etc. For example, if you set a Template to the checkout-end point, the Template will be shown when the customers complete the checkout process.</p>\n<p>And more enjoyable features!</p>\n<p>Best regards</p>\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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:69:"http://thecartpress.com/2011/05/new-beta-release-is-available-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:29:"http://thecartpress.com/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";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:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"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:4:"type";i:128;s:7:"headers";a:12:{s:4:"date";s:29:"Wed, 13 Jul 2011 09:14:16 GMT";s:6:"server";s:21:"Apache/2.2.3 (CentOS)";s:12:"x-powered-by";s:9:"PHP/5.2.6";s:10:"set-cookie";a:3:{i:0;s:44:"PHPSESSID=9oqvj754hgrgescch5e5hb7a00; path=/";i:1;s:65:"bp-message=deleted; expires=Tue, 13-Jul-2010 09:14:17 GMT; path=/";i:2;s:70:"bp-message-type=deleted; expires=Tue, 13-Jul-2010 09:14:17 GMT; path=/";}s:7:"expires";s:29:"Thu, 19 Nov 1981 08:52:00 GMT";s:13:"cache-control";s:62:"no-store, no-cache, must-revalidate, post-check=0, pre-check=0";s:6:"pragma";s:8:"no-cache";s:10:"x-pingback";s:34:"http://thecartpress.com/xmlrpc.php";s:13:"last-modified";s:29:"Tue, 12 Jul 2011 16:55:27 GMT";s:4:"etag";s:34:""a840e69c2f19e85fc9f2d29649fb4498"";s:10:"connection";s:5:"close";s:12:"content-type";s:23:"text/xml; charset=UTF-8";}s:5:"build";s:14:"20090627192103";}', 'no'),
(1423, 0, 'nivoslider4wp_pauseOnHover', 'false', 'yes'),
(1424, 0, 'nivoslider4wp_manualAdvance', 'false', 'yes'),
(1425, 0, 'nivoslider4wp_backgroundCaption', '000000', 'yes'),
(686, 0, 'tubepress-lazyPlay', '1', 'yes'),
(1392, 0, '_transient_timeout_feed_mod_d253e7c9b487cb2e3c129fb2194c2c69', '1310591656', 'no'),
(1393, 0, '_transient_feed_mod_d253e7c9b487cb2e3c129fb2194c2c69', '1310548456', 'no'),
(1475, 0, 'tcp_product_category_children', 'a:5:{i:12;a:12:{i:0;i:17;i:1;i:18;i:2;i:19;i:3;i:20;i:4;i:21;i:5;i:22;i:6;i:23;i:7;i:24;i:8;i:25;i:9;i:26;i:10;i:28;i:11;i:29;}i:26;a:3:{i:0;i:30;i:1;i:31;i:2;i:32;}i:17;a:3:{i:0;i:33;i:1;i:34;i:2;i:35;}i:14;a:3:{i:0;i:46;i:1;i:47;i:2;i:48;}i:15;a:8:{i:0;i:49;i:1;i:50;i:2;i:51;i:3;i:52;i:4;i:53;i:5;i:54;i:6;i:55;i:7;i:56;}}', 'yes'),
(832, 0, 'mfbfw_callbackOnStart', '', 'yes'),
(738, 0, '_site_transient_timeout_browser_01cd422dbf48e2ae3adc97f5e3e61a34', '1310462248', 'yes'),
(739, 0, '_site_transient_browser_01cd422dbf48e2ae3adc97f5e3e61a34', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:10:"14.0.803.0";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"12";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(1106, 0, '_transient_timeout_feed_90e981c8bf563214b04d7165f7da5b7f', '1309982992', 'no'),
(1107, 0, '_transient_feed_90e981c8bf563214b04d7165f7da5b7f', 'a:3:{s:3:"url";s:52:"http://getshopped.org/category/wp-e-commerce-plugin/";s:8:"feed_url";s:57:"http://getshopped.org/category/wp-e-commerce-plugin/feed/";s:5:"build";s:14:"20090627192103";}', 'no'),
(1108, 0, '_transient_timeout_feed_mod_90e981c8bf563214b04d7165f7da5b7f', '1309982992', 'no'),
(1109, 0, '_transient_feed_mod_90e981c8bf563214b04d7165f7da5b7f', '1309939792', 'no'),
(1110, 0, '_transient_timeout_feed_2ab3e749fe117f8942138a191652d94b', '1309982992', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1111, 0, '_transient_feed_2ab3e749fe117f8942138a191652d94b', '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:38:"GetShopped.org » WP e-Commerce Plugin";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:21:"http://getshopped.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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:0:"";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:"Mon, 04 Jul 2011 23:35:35 +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:29:"http://wordpress.org/?v=3.0.4";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:48:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:34:"Plans for WP e-Commerce Plugin 3.9";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://getshopped.org/getshopped-news/plans-for-wp-e-commerce-plugin-3-9/";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:82:"http://getshopped.org/getshopped-news/plans-for-wp-e-commerce-plugin-3-9/#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:"Mon, 04 Jul 2011 23:35:34 +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:5:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:2;a:5:{s:4:"data";s:11:"3.9 release";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:3;a:5:{s:4:"data";s:7:"coupons";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:4;a:5:{s:4:"data";s:19:"payment gateway API";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:29:"http://getshopped.org/?p=2982";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:315:"You&#8217;ll be pleased to know that we&#8217;ve been busy working on some new and exciting features for 3.9, which is expected to be ready in a few months. We decided that this release will focus on giving the WordPress e-Commerce Plugin a more robust and stable API. To be more specific, in our upcoming 3.9 [...]";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:"Gary Cao";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:78:"http://getshopped.org/getshopped-news/plans-for-wp-e-commerce-plugin-3-9/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"11";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:39:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"Plugin compatibility matrix";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:66:"http://getshopped.org/getshopped-news/plugin-compatibility-matrix/";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:75:"http://getshopped.org/getshopped-news/plugin-compatibility-matrix/#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:"Tue, 07 Jun 2011 12:28:13 +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:2:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2895";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:306:"Kia Ora team. A member of the wider WordPress community, has suggested that we provide a Plugin compatibly matrix. So this week we&#8217;re going to put together exactly that, the list will be based on our findings and research and we will make that list available to you via a page on our website as [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://getshopped.org/getshopped-news/plugin-compatibility-matrix/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"32";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:2;a:6:{s:4:"data";s:42:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"A Comprehensive Guide For Upgrading WP-e-Commerce";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:88:"http://getshopped.org/getshopped-news/a-comprehensive-guide-for-upgrading-wp-e-commerce/";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:97:"http://getshopped.org/getshopped-news/a-comprehensive-guide-for-upgrading-wp-e-commerce/#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:"Thu, 02 Jun 2011 06:24:20 +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:3:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:8:"Tutorial";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:2;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2865";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:324:"Hi team. I&#8217;m just posting this on behalf of our friend Matthew Jones from Storefront Themes. It is a great read for people having issues upgrading from 3.7 versions of the WP e-Commerce to the new shiny, hot, sexy, delicious *cough &#8211; uhum*, new 3.8 version of our Plugin.  Enjoy!!! Hi everyone, my name is [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:93:"http://getshopped.org/getshopped-news/a-comprehensive-guide-for-upgrading-wp-e-commerce/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"11";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:3;a:6:{s:4:"data";s:39:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:48:"Coupons for 3.9 and Coupons to Custom Post Types";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:87:"http://getshopped.org/getshopped-news/coupons-for-3-9-and-coupons-to-custom-post-types/";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:96:"http://getshopped.org/getshopped-news/coupons-for-3-9-and-coupons-to-custom-post-types/#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:"Wed, 01 Jun 2011 01:44: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2861";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:345:"We&#8217;re in the process of upgrading our Coupon System for the WP e-Commerce 3.9 release. We already have code that converts Coupons to Custom Post Types in our Google Code repository &#8211; forged by Scott Basgard and the guys at WebDevStudios &#8211; which we&#8217;re busy adding to 3.9 now. And since we&#8217;re working on coupons [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:92:"http://getshopped.org/getshopped-news/coupons-for-3-9-and-coupons-to-custom-post-types/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"43";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:4;a:6:{s:4:"data";s:42:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:49:"Ron Paul 2012 running WordPress e-Commerce Plugin";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:93:"http://getshopped.org/wp-e-commerce-plugin/ron-paul-2012-running-wordpress-e-commerce-plugin/";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:102:"http://getshopped.org/wp-e-commerce-plugin/ron-paul-2012-running-wordpress-e-commerce-plugin/#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:"Wed, 01 Jun 2011 00:28:52 +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:3:{i:0;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:5:{s:4:"data";s:8:"showcase";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:2;a:5:{s:4:"data";s:9:"political";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:29:"http://getshopped.org/?p=2961";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:298:"Being a Kiwi living in New Zealand I don&#8217;t know a LOT about American politics, there is what I read online, what they show on the news, there is the odd good book. Its all good stuff and personally I&#8217;m a big fan, every time I goto the USA I feel welcomed and a part of something [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:98:"http://getshopped.org/wp-e-commerce-plugin/ron-paul-2012-running-wordpress-e-commerce-plugin/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"0";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:5;a:6:{s:4:"data";s:42:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:39:"WP e-Commerce 3.8.4 and Gold Cart 2.9.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:78:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-4-and-gold-cart-2-9-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:87:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-4-and-gold-cart-2-9-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:"Tue, 31 May 2011 05:29:53 +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:3:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:9:"Gold Cart";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:2;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2833";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:308:"Well everyone it seems we are coming to the end of updates and bug fixes for 3.8. The WP e-Commerce Plugin team would like to thank everyone for getting involved &#8211; if you have reported bugs, submitted code, or simply providing us with ideas and feedback then we salute you. We have all been going [...]";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:"Gary Cao";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:83:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-4-and-gold-cart-2-9-2/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"83";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:6;a:6:{s:4:"data";s:39:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:19:"WP-e-Commerce 3.8.3";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:58:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-3/";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:67:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-3/#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:"Sun, 08 May 2011 23:38: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:8:"category";a:2:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2786";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:303:"We are pleased to say that 3.8.3 is now ready for your stores. Like 3.8.1 and 3.8.2 this release covers more fixes and issues, if you have reported a problem or provided us with a fix or contribution then thanks!, without your help none of this is possible. These bug fix updates should be slowing [...]";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:"Mychelle";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:63:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-3/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"81";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:7;a:6:{s:4:"data";s:45:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:99:"Automatic Sales Tax for WordPress e-Commerce has arrived… and brings with it Multi-page Checkout!";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:143:"http://getshopped.org/getshopped-news/automatic-sales-tax-for-wordpress-e-commerce-has-arrived%e2%80%a6-and-brings-with-it-multi-page-checkout/";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:152:"http://getshopped.org/getshopped-news/automatic-sales-tax-for-wordpress-e-commerce-has-arrived%e2%80%a6-and-brings-with-it-multi-page-checkout/#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:"Sun, 01 May 2011 22:27:35 +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:4:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:7:"Plugins";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:2;a:5:{s:4:"data";s:3:"Tax";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:3;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2755";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:379:"We&#8217;re excited to finally announce the release of TaxNOW for WordPress e-Commerce! This WordPress plugin is packed with features to help North American users reduce the workload of running an online business and staying compliant with sales tax laws. Version 1.0 Features TaxNOW from Evolving Office extends the functionality of your WordPress e-Commerce shopping cart [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:148:"http://getshopped.org/getshopped-news/automatic-sales-tax-for-wordpress-e-commerce-has-arrived%e2%80%a6-and-brings-with-it-multi-page-checkout/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"8";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:8;a:6:{s:4:"data";s:39:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:27:"WP e-Commerce 3.9 Wish List";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:66:"http://getshopped.org/getshopped-news/wp-e-commerce-3-9-wish-list/";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:75:"http://getshopped.org/getshopped-news/wp-e-commerce-3-9-wish-list/#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:"Sat, 30 Apr 2011 06:39:30 +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:2:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2752";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:322:"The WP e-Commerce 3.8 Plugin release has been a really awesome success. It has been a great opportunity for us to improve our code base and align our Plugin with the very latest WordPress standards. Now that we use Custom Post Types for Products and the smoking hot WordPress User Interface for managing your product [...]";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:11:"Dan Milward";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:71:"http://getshopped.org/getshopped-news/wp-e-commerce-3-9-wish-list/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"49";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:9;a:6:{s:4:"data";s:39:"\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:4:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:46:"WP e-Commerce 3.8.2 and Gold Cart Plugin 2.9.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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:85:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-2-and-gold-cart-plugin-2-9-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:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:94:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-2-and-gold-cart-plugin-2-9-1/#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:"Wed, 27 Apr 2011 04:36:38 +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:2:{i:0;a:5:{s:4:"data";s:15:"GetShopped 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:"";}i:1;a:5:{s:4:"data";s:20:"WP e-Commerce Plugin";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:29:"http://getshopped.org/?p=2719";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:317:"We are pleased to say that 3.8.2 is now ready for your stores. Like 3.8.1 this release covers more fixes and issues that have been reported by you, our beloved community, please see below for the full list of changes and modifications, we hope to bring you another few minor releases before we start development [...]";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:"Gary Cao";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:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:90:"http://getshopped.org/getshopped-news/wp-e-commerce-3-8-2-and-gold-cart-plugin-2-9-1/feed/";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:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:2:"75";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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:4:"href";s:57:"http://getshopped.org/category/wp-e-commerce-plugin/feed/";s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:44:"http://purl.org/rss/1.0/modules/syndication/";a:2:{s:12:"updatePeriod";a:1:{i:0;a:5:{s:4:"data";s:6:"hourly";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:15:"updateFrequency";a:1:{i:0;a:5:{s:4:"data";s:1:"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:4:"type";i:128;s:7:"headers";a:17:{s:6:"server";s:21:"Apache/2.2.3 (CentOS)";s:12:"x-powered-by";s:22:"W3 Total Cache/0.9.2.3";s:13:"last-modified";s:29:"Mon, 04 Jul 2011 23:35:35 GMT";s:4:"vary";s:17:"Cookie,User-Agent";s:7:"expires";s:29:"Wed, 06 Jul 2011 09:04:58 GMT";s:6:"pragma";s:8:"no-cache";s:13:"cache-control";s:59:"private, no-cache, no-store, proxy-revalidate, no-transform";s:4:"etag";s:32:"bb444e99622f5581d6b85ed225c22b57";s:10:"x-pingback";s:32:"http://getshopped.org/xmlrpc.php";s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:14:"content-length";s:5:"12341";s:4:"date";s:29:"Wed, 06 Jul 2011 08:10:23 GMT";s:9:"x-varnish";s:10:"1235767298";s:3:"age";s:1:"0";s:3:"via";s:11:"1.1 varnish";s:10:"connection";s:5:"close";s:7:"x-cache";s:4:"MISS";}s:5:"build";s:14:"20090627192103";}', 'no'),
(742, 0, 'can_compress_scripts', '1', 'yes'),
(1411, 0, '_transient_settings_errors', 'a:1:{i:0;a:4:{s:7:"setting";s:7:"general";s:4:"code";s:16:"settings_updated";s:7:"message";s:18:"Ajustes guardados.";s:4:"type";s:7:"updated";}}', 'no'),
(1460, 0, 'duplicate_post_version', '1.1', 'yes'),
(1409, 0, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:49:"http://es.wordpress.org/wordpress-3.2.1-es_ES.zip";s:6:"locale";s:5:"es_ES";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:49:"http://es.wordpress.org/wordpress-3.2.1-es_ES.zip";s:10:"no_content";b:0;s:11:"new_bundled";b:0;s:7:"partial";b:0;}s:7:"current";s:5:"3.2.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}i:1;O:8:"stdClass":9:{s:8:"response";s:6:"latest";s:8:"download";s:40:"http://wordpress.org/wordpress-3.2.1.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":4:{s:4:"full";s:40:"http://wordpress.org/wordpress-3.2.1.zip";s:10:"no_content";s:51:"http://wordpress.org/wordpress-3.2.1-no-content.zip";s:11:"new_bundled";s:52:"http://wordpress.org/wordpress-3.2.1-new-bundled.zip";s:7:"partial";b:0;}s:7:"current";s:5:"3.2.1";s:11:"php_version";s:5:"5.2.4";s:13:"mysql_version";s:3:"5.0";s:11:"new_bundled";s:3:"3.2";s:15:"partial_version";s:0:"";}}s:12:"last_checked";i:1310633555;s:15:"version_checked";s:5:"3.2.1";}', 'yes'),
(1388, 0, '_site_transient_timeout_browser_22e325267b65b2f76d0bc7bbc881459e', '1311153250', 'yes'),
(1389, 0, '_site_transient_browser_22e325267b65b2f76d0bc7bbc881459e', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:10:"14.0.814.0";s:10:"update_url";s:28:"http://www.google.com/chrome";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/chrome.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/chrome.png";s:15:"current_version";s:2:"12";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'yes'),
(1405, 0, 'widget_mp3-jplayer-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(1406, 0, 'widget_mp3mi-widget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(1410, 0, '_transient_timeout_settings_errors', '1310569130', 'no'),
(1413, 0, 'nivoslider4wp_width', '960', 'yes'),
(1414, 0, 'nivoslider4wp_height', '550', 'yes'),
(1415, 0, 'nivoslider4wp_colsBox', '4', 'yes'),
(1416, 0, 'nivoslider4wp_rowsBox', '2', 'yes'),
(1417, 0, 'nivoslider4wp_animSpeed', '2000', 'yes'),
(1418, 0, 'nivoslider4wp_effect', 'fold', 'yes'),
(1419, 0, 'nivoslider4wp_pauseTime', '6500', 'yes'),
(1420, 0, 'nivoslider4wp_directionNav', 'false', 'yes'),
(1421, 0, 'nivoslider4wp_directionNavHide', 'false', 'yes'),
(1385, 0, 'ws_menu_editor', 'a:2:{s:22:"hide_advanced_settings";b:1;s:19:"menu_format_version";i:0;}', 'yes'),
(1311, 0, 'js_width', '960', 'yes'),
(1312, 0, 'js_height', '550', 'yes'),
(840, 0, 'lightboxplus_options', 'a:39:{s:18:"lightboxplus_style";s:5:"black";s:16:"use_custom_style";N;s:11:"disable_css";s:1:"1";s:12:"use_php_four";N;s:18:"lightboxplus_multi";N;s:10:"use_inline";N;s:10:"inline_num";s:1:"1";s:10:"transition";s:7:"elastic";s:5:"speed";s:3:"350";s:5:"width";s:5:"false";s:6:"height";s:5:"false";s:11:"inner_width";s:5:"false";s:12:"inner_height";s:5:"false";s:13:"initial_width";s:3:"300";s:14:"initial_height";s:3:"100";s:9:"max_width";s:5:"false";s:10:"max_height";s:5:"false";s:6:"resize";s:1:"1";s:7:"opacity";s:3:"0.8";s:10:"preloading";s:1:"1";s:11:"label_image";s:0:"";s:8:"label_of";s:2:"de";s:8:"previous";s:8:"anterior";s:4:"next";s:9:"siguiente";s:5:"close";s:6:"cerrar";s:13:"overlay_close";s:1:"1";s:9:"slideshow";N;s:14:"slideshow_auto";N;s:15:"slideshow_speed";s:4:"2500";s:15:"slideshow_start";s:5:"start";s:14:"slideshow_stop";s:4:"stop";s:17:"use_caption_title";N;s:20:"gallery_lightboxplus";N;s:18:"multiple_galleries";N;s:16:"use_class_method";N;s:10:"class_name";s:9:"cboxModal";s:16:"no_auto_lightbox";N;s:10:"text_links";N;s:16:"no_display_title";N;}', 'yes'),
(810, 0, 'mfbfw_paddingColor', '#FFFFFF', 'yes'),
(811, 0, 'mfbfw_padding', '10', 'yes'),
(812, 0, 'mfbfw_overlayShow', 'on', 'yes'),
(813, 0, 'mfbfw_overlayColor', '#666666', 'yes'),
(814, 0, 'mfbfw_overlayOpacity', '0.3', 'yes'),
(815, 0, 'mfbfw_zoomOpacity', 'on', 'yes'),
(816, 0, 'mfbfw_zoomSpeedIn', '500', 'yes'),
(817, 0, 'mfbfw_zoomSpeedOut', '500', 'yes'),
(818, 0, 'mfbfw_zoomSpeedChange', '300', 'yes'),
(819, 0, 'mfbfw_easing', '', 'yes'),
(820, 0, 'mfbfw_easingIn', 'easeOutBack', 'yes'),
(821, 0, 'mfbfw_easingOut', 'easeInBack', 'yes'),
(822, 0, 'mfbfw_easingChange', 'easeInOutQuart', 'yes'),
(823, 0, 'mfbfw_imageScale', 'on', 'yes'),
(824, 0, 'mfbfw_enableEscapeButton', 'on', 'yes'),
(825, 0, 'mfbfw_showCloseButton', 'on', 'yes'),
(826, 0, 'mfbfw_centerOnScroll', 'on', 'yes'),
(827, 0, 'mfbfw_hideOnOverlayClick', 'on', 'yes'),
(828, 0, 'mfbfw_hideOnContentClick', '', 'yes'),
(829, 0, 'mfbfw_loadAtFooter', '', 'yes'),
(830, 0, 'mfbfw_frameWidth', '560', 'yes'),
(809, 0, 'mfbfw_closeVerPos', 'top', 'yes'),
(833, 0, 'mfbfw_callbackOnShow', '', 'yes'),
(834, 0, 'mfbfw_callbackOnClose', '', 'yes'),
(835, 0, 'mfbfw_galleryType', 'all', 'yes'),
(836, 0, 'mfbfw_customExpression', 'jQuery(thumbnails).addClass("fancybox").attr("rel","fancybox").getTitle();', 'yes'),
(837, 0, 'mfbfw_nojQuery', '', 'yes'),
(838, 0, 'mfbfw_jQnoConflict', 'on', 'yes'),
(839, 0, 'mfbfw_uninstall', '', 'yes'),
(1426, 0, 'nivoslider4wp_colorCaption', 'ffffff', 'yes'),
(1427, 0, 'nivoslider4wp_captionOpacity', '0.8', 'yes'),
(1428, 0, 'nivoslider4wp_nivoslider4wp_js', 'footer', 'yes'),
(1429, 0, 'nivoslider4wp_imageQuality', '80', 'yes'),
(1430, 0, 'nivoslider4wp_js', 'head', 'yes'),
(841, 0, 'lightboxplus_init', '1', 'yes'),
(1112, 0, '_transient_timeout_feed_mod_2ab3e749fe117f8942138a191652d94b', '1309982992', 'no'),
(1113, 0, '_transient_feed_mod_2ab3e749fe117f8942138a191652d94b', '1309939792', 'no'),
(1404, 0, 'mp3FoxAdminOptions', 'a:34:{s:11:"initial_vol";s:3:"100";s:9:"auto_play";s:4:"true";s:7:"mp3_dir";s:1:"/";s:12:"player_theme";s:6:"styleF";s:15:"allow_remoteMp3";s:4:"true";s:13:"playlist_AtoZ";s:5:"false";s:12:"player_float";s:4:"none";s:13:"player_onblog";s:5:"false";s:19:"playlist_UseLibrary";s:5:"false";s:13:"playlist_show";s:5:"false";s:17:"remember_settings";s:4:"true";s:17:"hide_mp3extension";s:4:"true";s:16:"show_downloadmp3";s:5:"false";s:20:"disable_template_tag";s:5:"false";s:17:"db_plugin_version";s:5:"1.7.1";s:17:"custom_stylesheet";s:56:"/wp-content/plugins/mp3-jplayer/css/player-silverALT.css";s:10:"echo_debug";s:5:"false";s:19:"add_track_numbering";s:5:"false";s:13:"enable_popout";s:5:"false";s:15:"playlist_repeat";s:5:"false";s:12:"player_width";s:3:"40%";s:17:"popout_background";s:0:"";s:23:"popout_background_image";s:0:"";s:15:"colour_settings";a:19:{s:13:"screen_colour";s:0:"";s:14:"screen_opacity";s:0:"";s:14:"loadbar_colour";s:0:"";s:15:"loadbar_opacity";s:0:"";s:13:"posbar_colour";s:0:"";s:11:"posbar_tint";s:0:"";s:14:"posbar_opacity";s:0:"";s:18:"screen_text_colour";s:0:"";s:15:"playlist_colour";s:0:"";s:13:"playlist_tint";s:0:"";s:16:"playlist_opacity";s:0:"";s:16:"list_text_colour";s:0:"";s:19:"list_current_colour";s:0:"";s:17:"list_hover_colour";s:0:"";s:13:"listBGa_hover";s:0:"";s:15:"listBGa_current";s:0:"";s:11:"volume_grad";s:0:"";s:12:"list_divider";s:0:"";s:9:"indicator";s:0:"";}s:13:"use_fixed_css";s:5:"false";s:12:"paddings_top";s:3:"5px";s:15:"paddings_bottom";s:4:"40px";s:14:"paddings_inner";s:4:"35px";s:17:"popout_max_height";s:3:"600";s:12:"popout_width";s:3:"400";s:19:"popout_button_title";s:0:"";s:15:"max_list_height";s:0:"";s:12:"encode_files";s:4:"true";s:15:"animate_sliders";s:5:"false";}', 'yes'),
(1315, 0, 'js_nav', 'false', 'yes'),
(1325, 0, 'cd_res_options', 'a:15:{s:9:"res_speed";i:800;s:9:"res_pause";i:6000;s:8:"res_auto";s:4:"true";s:14:"res_continuous";s:4:"true";s:15:"res_controlshow";s:5:"false";s:11:"res_numeric";s:4:"true";s:17:"res_thumb_support";s:3:"off";s:17:"res_disable_style";s:3:"off";s:18:"res_disable_script";s:3:"off";s:10:"res_nextid";s:11:"cd-res-next";s:10:"res_previd";s:11:"cd-res-prev";s:12:"res_nexttext";s:7:"Next »";s:12:"res_prevtext";s:11:"« Previous";s:14:"res_controlsid";s:15:"cd-res-controls";s:27:"res_control_container_class";s:24:"cd-res-control-container";}', 'yes'),
(1313, 0, 'js_pause', 'false', 'yes'),
(1399, 0, '_transient_dash_20494a3d90a6669585674ed0eb8dcd8f', '<ul>\n <li><strong>deanyit</strong> enlazó aquí <a href="http://forum.mandriva.com/en/viewtopic.php?t=135223&#038;p=847301">diciendo</a>, "[root@localhost home]# cat /etc/fstab # Entry for ..."</li>\n <li><strong>RAPZAP</strong> enlazó aquí <a href="http://freaky-trikz.blogspot.com/2011/05/makeuseofcom-latest-hilarious-picks_13.html">diciendo</a>, "Go to “http://localhost/” and you&#39;ll see a per ..."</li>\n <li><strong>ebook</strong> enlazó aquí <a href="http://free-download-book-pdf.blogspot.com/2011/05/makeuseofcom-latest-hilarious-picks_13.html">diciendo</a>, "Go to “http://localhost/” and you&#39;ll see a per ..."</li>\n <li><strong>unknown</strong> enlazó aquí <a href="http://www.networkedmediatank.com/showthread.php?tid=51003">diciendo</a>, "The link I am adding is http://localhost.drives:88 ..."</li>\n <li><strong>admin</strong> enlazó aquí <a href="http://www.spunkmars.org/2010/12/09/%E3%80%90%E5%8E%9F%E5%88%9B%E3%80%91rrdtool-cacti-%E5%AE%89%E8%A3%85%E6%80%BB%E7%BB%93/">diciendo</a>, "这个软件它老是就编译不出pangocairo.pc这个文件最后还得老老实实去rrdtool官网下 ..."</li>\n <li><strong>LewsTherinTelemon</strong> enlazó aquí <a href="http://forums.opensuse.org/english/get-technical-help-here/applications/447580-virt-manager-only-will-not-x-forward.html">diciendo</a>, "The application &#39;virt-manager.py&#39; lost its ..."</li>\n <li><strong>Stefan</strong> enlazó aquí <a href="http://www.strobelstefan.de/?p=1051">diciendo</a>, "Ruft man im Webbrowser den Installationsdialog übe ..."</li>\n <li><strong>arsex</strong> enlazó aquí <a href="http://hi.baidu.com/godblade/blog/item/3ec43995b23f175bd0135ee1.html">diciendo</a>, "The 2 floating addresses are the external ones. If ..."</li>\n <li><strong>mattrk</strong> enlazó aquí <a href="http://community.spiceworks.com/topic/99299-asa-syslog-errors-from-mssql">diciendo</a>, "For some reason the old administrator used a lot o ..."</li>\n <li><strong>Nick Mancuso</strong> enlazó aquí <a href="http://nickmancuso.wordpress.com/2009/10/28/calabrian-journey/">diciendo</a>, "Version:1.0 StartHTML:0000000202 EndHTML:000002148 ..."</li>\n</ul>\n', 'no'),
(1269, 0, '_transient_random_seed', '92ed898de707fe340efdd158aa856d0d', 'yes'),
(1422, 0, 'nivoslider4wp_keyboardNav', 'false', 'yes'),
(1348, 0, 'widget_pronamic_google_maps', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(1349, 0, 'Pronamic_Google_maps', 'a:2:{s:9:"installed";b:1;s:6:"active";a:2:{s:4:"page";b:1;s:4:"post";b:1;}}', 'yes'),
(1284, 0, 'uninstall_plugins', 'a:3:{i:0;b:0;s:27:"wp-pagenavi/wp-pagenavi.php";s:14:"__return_false";s:41:"simple-nivo-slider/simple-nivo-slider.php";s:15:"snivo_uninstall";}', 'yes'),
(1285, 0, 'pagenavi_options', 'a:15:{s:10:"pages_text";s:0:"";s:12:"current_text";s:13:"%PAGE_NUMBER%";s:9:"page_text";s:13:"%PAGE_NUMBER%";s:10:"first_text";s:10:"« Primera";s:9:"last_text";s:10:"Última »";s:9:"prev_text";s:2:"«";s:9:"next_text";s:2:"»";s:12:"dotleft_text";s:3:"...";s:13:"dotright_text";s:3:"...";s:9:"num_pages";i:10;s:23:"num_larger_page_numbers";i:3;s:28:"larger_page_numbers_multiple";i:10;s:11:"always_show";b:0;s:16:"use_pagenavi_css";b:1;s:5:"style";i:1;}', '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=2388 ;
--
-- 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:"";}}'),
(260, 114, '_wp_attached_file', '2011/06/fondonuevaweb.jpg'),
(219, 106, '_wp_attached_file', '2011/06/logo2.gif'),
(261, 114, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"942";s:6:"height";s:3:"651";s:14:"hwstring_small";s:23:"height=''88'' width=''128''";s:4:"file";s:25:"2011/06/fondonuevaweb.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:25:"fondonuevaweb-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:25:"fondonuevaweb-300x207.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"207";}}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:"";}}'),
(1139, 307, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"633";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''96'' width=''121''";s:4:"file";s:19:"2011/07/dug-741.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"dug-741-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"dug-741-300x236.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"236";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"dug-741-45x35.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"35";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"dug-741-95x75.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"75";}}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:"";}}'),
(1110, 294, '_edit_lock', '1309973334:1'),
(1112, 294, '_edit_last', '1'),
(1113, 294, 'seo_follow', 'false'),
(1114, 294, 'seo_noindex', 'false'),
(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:"";}}'),
(2176, 545, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"650";s:6:"height";s:3:"436";s:14:"hwstring_small";s:23:"height=''85'' width=''128''";s:4:"file";s:13:"2011/07/3.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:13:"3-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:13:"3-300x201.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"201";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:11:"3-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:11:"3-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(2175, 545, '_wp_attached_file', '2011/07/3.jpg'),
(53, 44, '_edit_last', '1'),
(54, 44, '_edit_lock', '1310573811:1'),
(2267, 566, '_edit_lock', '1310635930:1'),
(2268, 566, 'seo_follow', 'false'),
(2141, 531, '_wp_attached_file', '2011/07/intro.mp3'),
(2142, 531, '_wp_attachment_metadata', 'a:0:{}'),
(2143, 532, '_wp_attached_file', '2011/07/intro.ogg'),
(2144, 532, '_wp_attachment_metadata', 'a:0:{}'),
(2290, 570, '_menu_item_menu_item_parent', '569'),
(2285, 569, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2284, 569, '_menu_item_target', ''),
(2278, 568, '_menu_item_url', '#'),
(61, 57, '_edit_last', '1'),
(58, 44, '_wp_page_template', 'template-homepage.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', '1310404514: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', 'default'),
(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'),
(271, 116, '_menu_item_type', 'post_type'),
(956, 211, '_menu_item_object', 'tcp_product_category'),
(269, 115, '_menu_item_url', ''),
(268, 115, '_menu_item_xfn', ''),
(266, 115, '_menu_item_target', ''),
(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'),
(267, 115, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(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'),
(258, 113, '_wp_attached_file', '2011/06/logo-rojo.gif'),
(259, 113, '_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:21:"2011/06/logo-rojo.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"logo-rojo-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:20:"logo-rojo-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:"";}}'),
(163, 82, '_edit_lock', '1310401940: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', '1310470081:1'),
(178, 88, '_wp_page_template', 'default'),
(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', '1310040249: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'),
(262, 115, '_menu_item_type', 'post_type'),
(263, 115, '_menu_item_menu_item_parent', '0'),
(264, 115, '_menu_item_object_id', '96'),
(265, 115, '_menu_item_object', 'page'),
(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:"";}}'),
(272, 116, '_menu_item_menu_item_parent', '0'),
(273, 116, '_menu_item_object_id', '82'),
(274, 116, '_menu_item_object', 'page'),
(275, 116, '_menu_item_target', ''),
(276, 116, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(277, 116, '_menu_item_xfn', ''),
(278, 116, '_menu_item_url', ''),
(955, 211, '_menu_item_object_id', '21'),
(280, 117, '_menu_item_type', 'post_type'),
(281, 117, '_menu_item_menu_item_parent', '0'),
(282, 117, '_menu_item_object_id', '61'),
(283, 117, '_menu_item_object', 'page'),
(284, 117, '_menu_item_target', ''),
(285, 117, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(286, 117, '_menu_item_xfn', ''),
(287, 117, '_menu_item_url', ''),
(953, 211, '_menu_item_type', 'taxonomy'),
(954, 211, '_menu_item_menu_item_parent', '115'),
(298, 119, '_menu_item_type', 'post_type'),
(299, 119, '_menu_item_menu_item_parent', '0'),
(300, 119, '_menu_item_object_id', '88'),
(301, 119, '_menu_item_object', 'page'),
(302, 119, '_menu_item_target', ''),
(303, 119, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(304, 119, '_menu_item_xfn', ''),
(305, 119, '_menu_item_url', ''),
(316, 121, '_edit_last', '1'),
(307, 120, '_menu_item_type', 'post_type'),
(308, 120, '_menu_item_menu_item_parent', '0'),
(309, 120, '_menu_item_object_id', '82'),
(310, 120, '_menu_item_object', 'page'),
(311, 120, '_menu_item_target', ''),
(312, 120, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(313, 120, '_menu_item_xfn', ''),
(314, 120, '_menu_item_url', ''),
(317, 121, '_edit_lock', '1310040233:1'),
(318, 121, '_wp_page_template', 'template-fullwidth.php'),
(319, 121, 'seo_follow', 'false'),
(320, 121, 'seo_noindex', 'false'),
(321, 123, '_menu_item_type', 'post_type'),
(322, 123, '_menu_item_menu_item_parent', '0'),
(323, 123, '_menu_item_object_id', '121'),
(324, 123, '_menu_item_object', 'page'),
(325, 123, '_menu_item_target', ''),
(326, 123, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(327, 123, '_menu_item_xfn', ''),
(328, 123, '_menu_item_url', ''),
(1120, 298, '_wp_attached_file', '2011/07/acro-30a.jpg'),
(948, 1, '_wp_trash_meta_time', '1309857479'),
(949, 1, '_wp_trash_meta_comments_status', 'a:1:{i:1;s:1:"1";}'),
(1121, 298, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"574";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''89'' width=''128''";s:4:"file";s:20:"2011/07/acro-30a.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"acro-30a-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"acro-30a-300x209.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"209";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"acro-30a-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"acro-30a-95x66.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"66";}}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:"";}}'),
(947, 1, '_wp_trash_meta_status', 'publish'),
(2075, 508, '_wp_attached_file', '2011/07/3vintage.jpg'),
(2076, 508, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:20:"2011/07/3vintage.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"3vintage-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"3vintage-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"3vintage-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"3vintage-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2072, 507, '_wp_attached_file', '2011/07/4contemporaneo.jpg'),
(2073, 507, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:26:"2011/07/4contemporaneo.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"4contemporaneo-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"4contemporaneo-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:24:"4contemporaneo-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:24:"4contemporaneo-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(355, 133, '_wp_trash_meta_status', 'publish'),
(356, 133, '_wp_trash_meta_time', '1309800474'),
(357, 134, '_wp_trash_meta_status', 'publish'),
(358, 134, '_wp_trash_meta_time', '1309800474'),
(959, 211, '_menu_item_xfn', ''),
(960, 211, '_menu_item_url', ''),
(1123, 299, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"482";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''115''";s:4:"file";s:21:"2011/07/acro-66ml.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"acro-66ml-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"acro-66ml-300x248.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"248";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"acro-66ml-45x37.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"37";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"acro-66ml-90x75.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"75";}}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:"";}}'),
(1136, 306, '_wp_attached_file', '2011/07/dug-661.jpg'),
(1126, 301, '_wp_attached_file', '2011/07/ari-102284.jpg'),
(1127, 301, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"668";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''86'' width=''128''";s:4:"file";s:22:"2011/07/ari-102284.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"ari-102284-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"ari-102284-300x202.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"202";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"ari-102284-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"ari-102284-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(2117, 519, '_edit_last', '1'),
(1006, 218, '_edit_lock', '1309891019:1'),
(1007, 218, 'seo_follow', 'false'),
(1008, 218, 'seo_noindex', 'false'),
(1018, 219, '_menu_item_object_id', '39'),
(1144, 310, '_wp_attached_file', '2011/07/imo-35-57.jpg'),
(1145, 310, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"649";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/07/imo-35-57.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-35-57-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-35-57-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-35-57-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-35-57-95x73.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"73";}}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:"";}}'),
(1016, 219, '_menu_item_type', 'taxonomy'),
(1017, 219, '_menu_item_menu_item_parent', '115'),
(1022, 219, '_menu_item_xfn', ''),
(1023, 219, '_menu_item_url', ''),
(1025, 221, '_edit_lock', '1309891402:1'),
(1026, 221, 'seo_follow', 'false'),
(1027, 221, 'seo_noindex', 'false'),
(1137, 306, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"518";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''110''";s:4:"file";s:19:"2011/07/dug-661.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"dug-661-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"dug-661-300x260.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"260";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"dug-661-45x39.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"39";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"dug-661-86x75.jpg";s:5:"width";s:2:"86";s:6:"height";s:2:"75";}}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:"";}}'),
(1021, 219, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1020, 219, '_menu_item_target', ''),
(1133, 304, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"755";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''67'' width=''128''";s:4:"file";s:26:"2011/07/cac-599-004463.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"cac-599-004463-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"cac-599-004463-300x158.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"158";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:24:"cac-599-004463-45x23.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"23";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:24:"cac-599-004463-95x50.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"50";}}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:"";}}'),
(1122, 299, '_wp_attached_file', '2011/07/acro-66ml.jpg'),
(1035, 221, '_edit_last', '1'),
(1147, 311, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"680";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''94'' width=''128''";s:4:"file";s:21:"2011/07/imo-35-81.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-35-81-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-35-81-300x220.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"220";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-35-81-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-35-81-95x69.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"69";}}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:"";}}'),
(1146, 311, '_wp_attached_file', '2011/07/imo-35-81.jpg'),
(1142, 309, '_wp_attached_file', '2011/07/dug-w-743.jpg'),
(1143, 309, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"470";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''100''";s:4:"file";s:21:"2011/07/dug-w-743.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"dug-w-743-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"dug-w-743-300x287.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"287";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"dug-w-743-45x43.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"43";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"dug-w-743-78x75.jpg";s:5:"width";s:2:"78";s:6:"height";s:2:"75";}}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:"";}}'),
(1132, 304, '_wp_attached_file', '2011/07/cac-599-004463.jpg'),
(1130, 303, '_wp_attached_file', '2011/07/cac-599-003649.jpg'),
(1131, 303, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"714";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''71'' width=''128''";s:4:"file";s:26:"2011/07/cac-599-003649.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"cac-599-003649-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"cac-599-003649-300x168.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"168";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:24:"cac-599-003649-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:24:"cac-599-003649-95x53.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"53";}}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:"";}}'),
(1148, 312, '_wp_attached_file', '2011/07/imo-35-113.jpg'),
(1149, 312, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"686";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''93'' width=''128''";s:4:"file";s:22:"2011/07/imo-35-113.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"imo-35-113-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"imo-35-113-300x218.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"218";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"imo-35-113-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"imo-35-113-95x69.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"69";}}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:"";}}'),
(1151, 313, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"662";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:22:"2011/07/imo-35-126.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"imo-35-126-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"imo-35-126-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"imo-35-126-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"imo-35-126-95x71.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"71";}}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:"";}}'),
(1150, 313, '_wp_attached_file', '2011/07/imo-35-126.jpg'),
(1155, 315, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"530";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:21:"2011/07/imo-75-25.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-75-25-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-75-25-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-75-25-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-75-25-95x71.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"71";}}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:"";}}'),
(1156, 316, '_wp_attached_file', '2011/07/imo-75-26-e1309975749890.jpg'),
(1157, 316, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"479";s:6:"height";s:3:"399";s:14:"hwstring_small";s:23:"height=''96'' width=''115''";s:4:"file";s:36:"2011/07/imo-75-26-e1309975749890.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:36:"imo-75-26-e1309975749890-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:36:"imo-75-26-e1309975749890-300x249.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"249";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-75-26-45x37.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"37";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-75-26-89x75.jpg";s:5:"width";s:2:"89";s:6:"height";s:2:"75";}}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:"";}}'),
(1158, 317, '_wp_attached_file', '2011/07/imo-75-39.jpg'),
(1159, 317, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"656";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''87'' width=''128''";s:4:"file";s:21:"2011/07/imo-75-39.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-75-39-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-75-39-300x205.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"205";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-75-39-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-75-39-95x65.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"65";}}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:"";}}'),
(1160, 318, '_wp_attached_file', '2011/07/imo-75-46.jpg'),
(1161, 318, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:21:"2011/07/imo-75-46.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-75-46-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-75-46-300x225.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"225";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-75-46-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-75-46-95x71.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"71";}}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:"";}}'),
(1162, 319, '_wp_attached_file', '2011/07/ixi-16265.jpg'),
(1163, 319, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"508";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''108''";s:4:"file";s:21:"2011/07/ixi-16265.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"ixi-16265-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"ixi-16265-300x265.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"265";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"ixi-16265-45x39.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"39";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"ixi-16265-84x75.jpg";s:5:"width";s:2:"84";s:6:"height";s:2:"75";}}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:"";}}'),
(1164, 320, '_wp_attached_file', '2011/07/ixi-7600400.jpg'),
(1165, 320, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"605";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:23:"2011/07/ixi-7600400.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"ixi-7600400-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"ixi-7600400-300x198.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"198";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600400-45x29.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"29";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600400-95x62.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"62";}}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:"";}}'),
(1166, 321, '_wp_attached_file', '2011/07/ixi-7600500.jpg'),
(1167, 321, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"527";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''126''";s:4:"file";s:23:"2011/07/ixi-7600500.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"ixi-7600500-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"ixi-7600500-300x227.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"227";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600500-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600500-95x72.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"72";}}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:"";}}'),
(1168, 322, '_wp_attached_file', '2011/07/ixi-7600600.jpg'),
(1169, 322, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"593";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''126''";s:4:"file";s:23:"2011/07/ixi-7600600.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"ixi-7600600-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"ixi-7600600-300x227.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"227";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600600-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:21:"ixi-7600600-95x72.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"72";}}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:"";}}'),
(1170, 323, '_wp_attached_file', '2011/07/kubik-1400.jpg'),
(1172, 324, '_wp_attached_file', '2011/07/mir-10700.jpg'),
(1176, 326, '_wp_attached_file', '2011/07/moy-14608.jpg'),
(1177, 326, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"536";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:21:"2011/07/moy-14608.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-14608-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-14608-300x223.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"223";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-14608-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-14608-95x70.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"70";}}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:"";}}'),
(1179, 327, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"598";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''85'' width=''128''";s:4:"file";s:21:"2011/07/moy-30137.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30137-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30137-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30137-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30137-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(1178, 327, '_wp_attached_file', '2011/07/moy-30137.jpg'),
(1180, 328, '_wp_attached_file', '2011/07/moy-30212.jpg'),
(1181, 328, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"557";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:21:"2011/07/moy-30212.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30212-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30212-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30212-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30212-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(1182, 329, '_wp_attached_file', '2011/07/moy-30298.jpg'),
(1183, 329, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"504";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''120''";s:4:"file";s:21:"2011/07/moy-30298.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30298-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30298-300x238.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"238";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30298-45x35.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"35";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30298-95x75.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"75";}}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:"";}}'),
(1184, 330, '_wp_attached_file', '2011/07/moy-30313.jpg'),
(1185, 330, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"566";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:21:"2011/07/moy-30313.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30313-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30313-300x212.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"212";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30313-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30313-95x67.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"67";}}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:"";}}'),
(1186, 331, '_wp_attached_file', '2011/07/moy-30541.jpg'),
(1187, 331, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"567";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:21:"2011/07/moy-30541.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30541-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30541-300x211.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"211";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30541-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30541-95x67.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"67";}}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:"";}}'),
(1188, 332, '_wp_attached_file', '2011/07/moy-30550.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1189, 332, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"491";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''117''";s:4:"file";s:21:"2011/07/moy-30550.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30550-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30550-300x244.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"244";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30550-45x36.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"36";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30550-92x75.jpg";s:5:"width";s:2:"92";s:6:"height";s:2:"75";}}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:"";}}'),
(1190, 333, '_wp_attached_file', '2011/07/moy-30940.jpg'),
(1191, 333, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"592";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''86'' width=''128''";s:4:"file";s:21:"2011/07/moy-30940.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30940-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30940-300x202.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"202";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30940-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30940-95x64.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"64";}}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:"";}}'),
(1193, 334, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"641";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''79'' width=''128''";s:4:"file";s:21:"2011/07/moy-30950.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-30950-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-30950-300x187.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"187";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-30950-45x28.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"28";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-30950-95x59.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"59";}}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:"";}}'),
(1192, 334, '_wp_attached_file', '2011/07/moy-30950.jpg'),
(1195, 335, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"579";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''88'' width=''128''";s:4:"file";s:22:"2011/07/moy-145062.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"moy-145062-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"moy-145062-300x207.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"207";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"moy-145062-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"moy-145062-95x65.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"65";}}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:"";}}'),
(1194, 335, '_wp_attached_file', '2011/07/moy-145062.jpg'),
(1196, 336, '_wp_attached_file', '2011/07/moy-145062j.jpg'),
(1197, 336, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"607";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:23:"2011/07/moy-145062j.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"moy-145062j-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"moy-145062j-300x197.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:21:"moy-145062j-45x29.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"29";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:21:"moy-145062j-95x62.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"62";}}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:"";}}'),
(1199, 337, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"556";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''92'' width=''128''";s:4:"file";s:22:"2011/07/moy-145071.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"moy-145071-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"moy-145071-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"moy-145071-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"moy-145071-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(1201, 338, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"586";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''87'' width=''128''";s:4:"file";s:22:"2011/07/moy-301528.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"moy-301528-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"moy-301528-300x204.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"204";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"moy-301528-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"moy-301528-95x64.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"64";}}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:"";}}'),
(1200, 338, '_wp_attached_file', '2011/07/moy-301528.jpg'),
(1202, 339, '_wp_attached_file', '2011/07/moy-301529.jpg'),
(1203, 339, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"595";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''86'' width=''128''";s:4:"file";s:22:"2011/07/moy-301529.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"moy-301529-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"moy-301529-300x201.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"201";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"moy-301529-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"moy-301529-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(1204, 340, '_wp_attached_file', '2011/07/om-555.jpg'),
(1205, 340, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"522";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''125''";s:4:"file";s:18:"2011/07/om-555.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-555-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-555-300x229.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"229";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-555-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-555-95x72.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"72";}}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:"";}}'),
(1206, 341, '_wp_attached_file', '2011/07/om-627.jpg'),
(1207, 341, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"500";s:6:"height";s:3:"419";s:14:"hwstring_small";s:23:"height=''96'' width=''114''";s:4:"file";s:18:"2011/07/om-627.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-627-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-627-300x251.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"251";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-627-45x37.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"37";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-627-89x75.jpg";s:5:"width";s:2:"89";s:6:"height";s:2:"75";}}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:"";}}'),
(1208, 342, '_wp_attached_file', '2011/07/om-666.jpg'),
(1209, 342, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"649";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:18:"2011/07/om-666.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-666-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-666-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-666-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-666-95x73.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"73";}}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:"";}}'),
(1211, 343, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"517";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:18:"2011/07/om-706.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-706-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-706-300x232.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"232";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-706-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-706-95x73.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"73";}}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:"";}}'),
(1210, 343, '_wp_attached_file', '2011/07/om-706.jpg'),
(1212, 344, '_wp_attached_file', '2011/07/om-728.jpg'),
(1213, 344, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"509";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:18:"2011/07/om-728.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-728-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-728-300x235.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"235";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-728-45x35.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"35";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-728-95x75.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"75";}}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:"";}}'),
(1215, 345, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"610";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:18:"2011/07/om-732.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-732-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-732-300x172.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"172";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-732-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-732-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(1214, 345, '_wp_attached_file', '2011/07/om-732.jpg'),
(1216, 346, '_wp_attached_file', '2011/07/om-740.jpg'),
(1217, 346, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"494";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''118''";s:4:"file";s:18:"2011/07/om-740.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:18:"om-740-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"om-740-300x242.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"242";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:16:"om-740-45x36.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"36";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:16:"om-740-92x75.jpg";s:5:"width";s:2:"92";s:6:"height";s:2:"75";}}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:"";}}'),
(1218, 347, '_wp_attached_file', '2011/07/om-1150.jpg'),
(1219, 347, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"521";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''125''";s:4:"file";s:19:"2011/07/om-1150.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"om-1150-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"om-1150-300x230.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"230";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"om-1150-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"om-1150-95x72.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"72";}}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:"";}}'),
(1220, 348, '_wp_attached_file', '2011/07/om-1151.jpg'),
(1221, 348, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"465";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''111''";s:4:"file";s:19:"2011/07/om-1151.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"om-1151-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"om-1151-300x258.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"258";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"om-1151-45x38.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"38";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"om-1151-87x75.jpg";s:5:"width";s:2:"87";s:6:"height";s:2:"75";}}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:"";}}'),
(1222, 349, '_wp_attached_file', '2011/07/om-1161.jpg'),
(1223, 349, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"401";s:6:"height";s:3:"500";s:14:"hwstring_small";s:22:"height=''96'' width=''76''";s:4:"file";s:19:"2011/07/om-1161.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"om-1161-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"om-1161-240x300.jpg";s:5:"width";s:3:"240";s:6:"height";s:3:"300";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"om-1161-36x45.jpg";s:5:"width";s:2:"36";s:6:"height";s:2:"45";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"om-1161-60x75.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"75";}}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:"";}}'),
(1225, 350, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"556";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''92'' width=''128''";s:4:"file";s:19:"2011/07/om-1167.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"om-1167-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"om-1167-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"om-1167-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"om-1167-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(1224, 350, '_wp_attached_file', '2011/07/om-1167.jpg'),
(1226, 351, '_wp_attached_file', '2011/07/om-1172.jpg'),
(1227, 351, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"429";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''102''";s:4:"file";s:19:"2011/07/om-1172.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"om-1172-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"om-1172-300x279.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"279";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"om-1172-45x41.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"41";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"om-1172-80x75.jpg";s:5:"width";s:2:"80";s:6:"height";s:2:"75";}}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:"";}}'),
(1228, 352, '_wp_attached_file', '2011/07/soc-10077.jpg'),
(1229, 352, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"644";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:21:"2011/07/soc-10077.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"soc-10077-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"soc-10077-300x163.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"163";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"soc-10077-45x24.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"24";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"soc-10077-95x51.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"51";}}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:"";}}'),
(1230, 353, '_wp_attached_file', '2011/07/soc-10093.jpg'),
(1231, 353, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"626";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''71'' width=''128''";s:4:"file";s:21:"2011/07/soc-10093.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"soc-10093-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"soc-10093-300x167.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"167";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"soc-10093-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"soc-10093-95x53.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"53";}}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:"";}}'),
(1232, 354, '_wp_attached_file', '2011/07/sp-30214.jpg'),
(1233, 354, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"557";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:20:"2011/07/sp-30214.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"sp-30214-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"sp-30214-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"sp-30214-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"sp-30214-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(1235, 355, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"570";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''89'' width=''128''";s:4:"file";s:20:"2011/07/sp-31440.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"sp-31440-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"sp-31440-300x210.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"210";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"sp-31440-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"sp-31440-95x66.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"66";}}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:"";}}'),
(1234, 355, '_wp_attached_file', '2011/07/sp-31440.jpg'),
(1236, 356, '_wp_attached_file', '2011/07/sp-31577.jpg'),
(1237, 356, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"627";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''81'' width=''128''";s:4:"file";s:20:"2011/07/sp-31577.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"sp-31577-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"sp-31577-300x191.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"191";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"sp-31577-45x28.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"28";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"sp-31577-95x60.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"60";}}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:"";}}'),
(1238, 357, '_wp_attached_file', '2011/07/va-3127.jpg'),
(1239, 357, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"704";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:19:"2011/07/va-3127.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"va-3127-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"va-3127-300x213.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"213";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"va-3127-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"va-3127-95x67.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"67";}}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:"";}}'),
(1242, 359, '_wp_attached_file', '2011/07/va-8316.jpg'),
(1243, 359, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"418";s:6:"height";s:3:"300";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:19:"2011/07/va-8316.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"va-8316-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"va-8316-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"va-8316-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"va-8316-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(1240, 358, '_wp_attached_file', '2011/07/va-8302.jpg'),
(1241, 358, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"539";s:6:"height";s:3:"500";s:14:"hwstring_small";s:23:"height=''96'' width=''103''";s:4:"file";s:19:"2011/07/va-8302.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"va-8302-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"va-8302-300x278.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"278";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"va-8302-45x41.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"41";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"va-8302-80x75.jpg";s:5:"width";s:2:"80";s:6:"height";s:2:"75";}}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:"";}}'),
(1134, 305, '_wp_attached_file', '2011/07/cac-599-004565.jpg'),
(1135, 305, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"774";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''66'' width=''128''";s:4:"file";s:26:"2011/07/cac-599-004565.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"cac-599-004565-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"cac-599-004565-300x155.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"155";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:24:"cac-599-004565-45x23.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"23";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:24:"cac-599-004565-95x49.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"49";}}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:"";}}'),
(2277, 568, '_menu_item_xfn', ''),
(1138, 307, '_wp_attached_file', '2011/07/dug-741.jpg'),
(1005, 218, '_edit_last', '1'),
(1080, 294, 'tcp_tax_id', '0'),
(1081, 294, 'tcp_back_end_label', ''),
(1082, 294, 'tcp_hide_buy_button', ''),
(1083, 294, 'tcp_exclude_range', ''),
(1084, 294, 'tcp_is_downloadable', ''),
(1085, 294, 'tcp_max_downloads', '0'),
(1086, 294, 'tcp_days_to_expire', '0'),
(1087, 294, 'tcp_type', 'SIMPLE'),
(1088, 294, 'tcp_is_visible', '1'),
(1089, 294, 'tcp_price', '0'),
(1090, 294, 'tcp_weight', '0'),
(1091, 294, 'tcp_order', ''),
(1092, 294, 'tcp_sku', ''),
(1093, 294, 'tcp_stock', '-1'),
(1094, 294, 'tcp_type', 'SIMPLE'),
(1095, 294, 'tcp_is_visible', '1'),
(1096, 294, 'tcp_price', '0'),
(1097, 294, 'tcp_sku', ''),
(1098, 294, 'tcp_stock', '-1'),
(1099, 294, 'tcp_tax_id', '0'),
(1102, 294, 'tcp_type', 'SIMPLE'),
(1103, 294, 'tcp_is_visible', '1'),
(1104, 294, 'tcp_price', '0'),
(1105, 294, 'tcp_sku', ''),
(1106, 294, 'tcp_stock', '-1'),
(1107, 294, 'tcp_tax_id', '0'),
(1140, 308, '_wp_attached_file', '2011/07/dug-741-negro.jpg'),
(1141, 308, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"695";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''82'' width=''128''";s:4:"file";s:25:"2011/07/dug-741-negro.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:25:"dug-741-negro-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:25:"dug-741-negro-300x194.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"194";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:23:"dug-741-negro-45x29.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"29";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:23:"dug-741-negro-95x61.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"61";}}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:"";}}'),
(1198, 337, '_wp_attached_file', '2011/07/moy-145071.jpg'),
(1174, 325, '_wp_attached_file', '2011/07/moy-14601.jpg'),
(1175, 325, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"448";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''107''";s:4:"file";s:21:"2011/07/moy-14601.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"moy-14601-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"moy-14601-300x267.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"267";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"moy-14601-45x40.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"40";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"moy-14601-84x75.jpg";s:5:"width";s:2:"84";s:6:"height";s:2:"75";}}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:"";}}'),
(1171, 323, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"697";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:22:"2011/07/kubik-1400.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"kubik-1400-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"kubik-1400-300x172.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"172";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"kubik-1400-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"kubik-1400-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(1173, 324, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"715";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''71'' width=''128''";s:4:"file";s:21:"2011/07/mir-10700.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"mir-10700-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"mir-10700-300x167.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"167";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"mir-10700-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"mir-10700-95x53.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"53";}}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:"";}}'),
(1153, 314, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"594";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:21:"2011/07/imo-75-12.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"imo-75-12-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"imo-75-12-300x227.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"227";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"imo-75-12-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"imo-75-12-95x71.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"71";}}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:"";}}'),
(1152, 314, '_wp_attached_file', '2011/07/imo-75-12.jpg'),
(1154, 315, '_wp_attached_file', '2011/07/imo-75-25.jpg'),
(1128, 302, '_wp_attached_file', '2011/07/ari-102287.jpg'),
(1129, 302, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"675";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''85'' width=''128''";s:4:"file";s:22:"2011/07/ari-102287.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"ari-102287-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"ari-102287-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"ari-102287-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"ari-102287-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(1019, 219, '_menu_item_object', 'wpsc_product_category'),
(1125, 300, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"597";s:6:"height";s:3:"450";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:22:"2011/07/ari-102247.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"ari-102247-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"ari-102247-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"ari-102247-45x33.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"33";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"ari-102247-95x71.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"71";}}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:"";}}'),
(1124, 300, '_wp_attached_file', '2011/07/ari-102247.jpg'),
(958, 211, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(957, 211, '_menu_item_target', ''),
(1244, 360, '_wp_attached_file', '2011/07/vic-15671.jpg'),
(1245, 360, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"522";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''85'' width=''128''";s:4:"file";s:21:"2011/07/vic-15671.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"vic-15671-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"vic-15671-300x201.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"201";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"vic-15671-45x30.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"30";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"vic-15671-95x63.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"63";}}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:"";}}'),
(1246, 361, '_wp_attached_file', '2011/07/vic-16205.jpg'),
(1247, 361, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"481";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''93'' width=''128''";s:4:"file";s:21:"2011/07/vic-16205.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"vic-16205-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"vic-16205-300x218.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"218";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"vic-16205-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"vic-16205-95x69.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"69";}}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:"";}}'),
(1248, 362, '_wp_attached_file', '2011/07/vic-16224.jpg'),
(1249, 362, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"480";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height=''93'' width=''128''";s:4:"file";s:21:"2011/07/vic-16224.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"vic-16224-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"vic-16224-300x218.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"218";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"vic-16224-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"vic-16224-95x69.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"69";}}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:"";}}'),
(1250, 227, '_edit_lock', '1310483816:1'),
(1252, 364, '_wp_attached_file', '2011/07/acro-66ml1.jpg'),
(1253, 364, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"482";s:6:"height";s:3:"400";s:14:"hwstring_small";s:23:"height=''96'' width=''115''";s:4:"file";s:22:"2011/07/acro-66ml1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"acro-66ml1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"acro-66ml1-300x248.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"248";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"acro-66ml1-45x37.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"37";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"acro-66ml1-90x75.jpg";s:5:"width";s:2:"90";s:6:"height";s:2:"75";}}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:"";}}'),
(1255, 227, '_edit_last', '1'),
(1256, 227, 'seo_follow', 'false'),
(1257, 227, 'seo_noindex', 'false'),
(1258, 227, 'tcp_tax_id', '0'),
(1259, 227, 'tcp_back_end_label', ''),
(1260, 227, 'tcp_hide_buy_button', ''),
(1261, 227, 'tcp_exclude_range', ''),
(1262, 227, 'tcp_is_downloadable', ''),
(1263, 227, 'tcp_max_downloads', '0'),
(1264, 227, 'tcp_days_to_expire', '0'),
(1265, 227, 'tcp_type', 'SIMPLE'),
(1266, 227, 'tcp_is_visible', '1'),
(1267, 227, 'tcp_price', '697'),
(1268, 227, 'tcp_weight', '0'),
(1269, 227, 'tcp_order', '0'),
(1270, 227, 'tcp_sku', ''),
(1271, 227, 'tcp_stock', '-1'),
(1295, 243, '_thumbnail_id', '314'),
(1275, 228, '_edit_lock', '1309972120:1'),
(1278, 294, '_thumbnail_id', NULL),
(1279, 227, '_thumbnail_id', '364'),
(1280, 228, '_thumbnail_id', '298'),
(1281, 229, '_thumbnail_id', '300'),
(1282, 230, '_thumbnail_id', '301'),
(1283, 231, '_thumbnail_id', '302'),
(1284, 232, '_thumbnail_id', '303'),
(1285, 233, '_thumbnail_id', '304'),
(1286, 234, '_thumbnail_id', '305'),
(1287, 235, '_thumbnail_id', '306'),
(1288, 236, '_thumbnail_id', '307'),
(1289, 237, '_thumbnail_id', '308'),
(1290, 238, '_thumbnail_id', '309'),
(1291, 239, '_thumbnail_id', '312'),
(1292, 240, '_thumbnail_id', '313'),
(1293, 241, '_thumbnail_id', '310'),
(1294, 242, '_thumbnail_id', '311'),
(1296, 244, '_thumbnail_id', '315'),
(1298, 246, '_thumbnail_id', '317'),
(1299, 247, '_thumbnail_id', '318'),
(1300, 248, '_thumbnail_id', '319'),
(1301, 249, '_thumbnail_id', '320'),
(1302, 250, '_thumbnail_id', '321'),
(1303, 251, '_thumbnail_id', '322'),
(1304, 252, '_thumbnail_id', '323'),
(1305, 253, '_thumbnail_id', '324'),
(1306, 254, '_thumbnail_id', '336'),
(1307, 255, '_thumbnail_id', '334'),
(1308, 256, '_thumbnail_id', '335'),
(1309, 257, '_thumbnail_id', '337'),
(1310, 258, '_thumbnail_id', '325'),
(1311, 259, '_thumbnail_id', '326'),
(1312, 260, '_thumbnail_id', '327'),
(1313, 261, '_thumbnail_id', '338'),
(1314, 262, '_thumbnail_id', '339'),
(1315, 263, '_thumbnail_id', '328'),
(1316, 264, '_thumbnail_id', '329'),
(1317, 265, '_thumbnail_id', '330'),
(1318, 266, '_thumbnail_id', '331'),
(1319, 267, '_thumbnail_id', '332'),
(1320, 268, '_thumbnail_id', '333'),
(1321, 269, '_thumbnail_id', '340'),
(1322, 270, '_thumbnail_id', '341'),
(1323, 271, '_thumbnail_id', '342'),
(1324, 272, '_thumbnail_id', '343'),
(1325, 273, '_thumbnail_id', '344'),
(1326, 274, '_thumbnail_id', '347'),
(1327, 275, '_thumbnail_id', '348'),
(1328, 276, '_thumbnail_id', '349'),
(1329, 277, '_thumbnail_id', '350'),
(1330, 278, '_thumbnail_id', '351'),
(1331, 279, '_thumbnail_id', '345'),
(1332, 280, '_thumbnail_id', '346'),
(1333, 281, '_thumbnail_id', '352'),
(1334, 282, '_thumbnail_id', '353'),
(1335, 283, '_thumbnail_id', '354'),
(1336, 284, '_thumbnail_id', '355'),
(1337, 285, '_thumbnail_id', '356'),
(1338, 286, '_thumbnail_id', '357'),
(1339, 287, '_thumbnail_id', '358'),
(1340, 288, '_thumbnail_id', '359'),
(1341, 289, '_thumbnail_id', '362'),
(1342, 290, '_thumbnail_id', '360'),
(1343, 291, '_thumbnail_id', '361'),
(1344, 294, '_wp_trash_meta_status', 'draft'),
(1345, 294, '_wp_trash_meta_time', '1309974184'),
(1346, 229, '_edit_lock', '1310031202:1'),
(1347, 229, '_edit_last', '1'),
(1348, 229, 'seo_follow', 'false'),
(1349, 229, 'seo_noindex', 'false'),
(1350, 229, '_wp_old_slug', 'ARI 102247'),
(1351, 229, 'tcp_tax_id', '0'),
(1352, 229, 'tcp_back_end_label', ''),
(1353, 229, 'tcp_hide_buy_button', ''),
(1354, 229, 'tcp_exclude_range', ''),
(1355, 229, 'tcp_is_downloadable', ''),
(1356, 229, 'tcp_max_downloads', '0'),
(1357, 229, 'tcp_days_to_expire', '0'),
(1358, 229, 'tcp_type', 'SIMPLE'),
(1359, 229, 'tcp_is_visible', '1'),
(1360, 229, 'tcp_price', '649'),
(1361, 229, 'tcp_weight', '0'),
(1362, 229, 'tcp_order', '0'),
(1363, 229, 'tcp_sku', ''),
(1364, 229, 'tcp_stock', '-1'),
(1400, 245, '_thumbnail_id', '316'),
(1365, 237, '_edit_lock', '1309975100:1'),
(1366, 237, '_edit_last', '1'),
(1367, 237, 'seo_follow', 'false'),
(1368, 237, 'seo_noindex', 'false'),
(1369, 236, '_wp_old_slug', 'DUG 741'),
(1370, 236, 'tcp_tax_id', '0'),
(1371, 236, 'tcp_back_end_label', ''),
(1372, 236, 'tcp_hide_buy_button', ''),
(1373, 236, 'tcp_exclude_range', ''),
(1374, 236, 'tcp_is_downloadable', ''),
(1375, 236, 'tcp_max_downloads', '0'),
(1376, 236, 'tcp_days_to_expire', '0'),
(1377, 236, 'tcp_type', 'SIMPLE'),
(1378, 236, 'tcp_is_visible', '1'),
(1379, 236, 'tcp_price', '0'),
(1380, 236, 'tcp_weight', '0'),
(1381, 236, 'tcp_order', '0'),
(1382, 236, 'tcp_sku', ''),
(1383, 236, 'tcp_stock', '-1'),
(1384, 237, '_wp_old_slug', 'DUG 741'),
(1385, 237, 'tcp_tax_id', '0'),
(1386, 237, 'tcp_back_end_label', ''),
(1387, 237, 'tcp_hide_buy_button', ''),
(1388, 237, 'tcp_exclude_range', ''),
(1389, 237, 'tcp_is_downloadable', ''),
(1390, 237, 'tcp_max_downloads', '0'),
(1391, 237, 'tcp_days_to_expire', '0'),
(1392, 237, 'tcp_type', 'SIMPLE'),
(1393, 237, 'tcp_is_visible', '1'),
(1394, 237, 'tcp_price', '0'),
(1395, 237, 'tcp_weight', '0'),
(1396, 237, 'tcp_order', '0'),
(1397, 237, 'tcp_sku', ''),
(1398, 237, 'tcp_stock', '-1'),
(1399, 245, '_edit_lock', '1309975543:1'),
(1401, 245, '_edit_last', '1'),
(1402, 245, 'seo_follow', 'false'),
(1403, 245, 'seo_noindex', 'false'),
(1404, 245, '_wp_old_slug', 'IMO 75-26'),
(1405, 245, 'tcp_tax_id', '0'),
(1406, 245, 'tcp_back_end_label', ''),
(1407, 245, 'tcp_hide_buy_button', ''),
(1408, 245, 'tcp_exclude_range', ''),
(1409, 245, 'tcp_is_downloadable', ''),
(1410, 245, 'tcp_max_downloads', '0'),
(1411, 245, 'tcp_days_to_expire', '0'),
(1412, 245, 'tcp_type', 'SIMPLE'),
(1413, 245, 'tcp_is_visible', '1'),
(1414, 245, 'tcp_price', '0'),
(1415, 245, 'tcp_weight', '0'),
(1416, 245, 'tcp_order', '0'),
(1417, 245, 'tcp_sku', ''),
(1418, 245, 'tcp_stock', '-1'),
(1419, 316, '_wp_attachment_backup_sizes', 'a:3:{s:9:"full-orig";a:3:{s:5:"width";s:3:"479";s:6:"height";s:3:"400";s:4:"file";s:13:"imo-75-26.jpg";}s:11:"medium-orig";a:3:{s:4:"file";s:21:"imo-75-26-300x250.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"250";}s:14:"thumbnail-orig";a:3:{s:4:"file";s:21:"imo-75-26-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}}'),
(1647, 395, '_menu_item_object_id', '88'),
(1429, 371, '_menu_item_type', 'taxonomy'),
(1430, 371, '_menu_item_menu_item_parent', '447'),
(1431, 371, '_menu_item_object_id', '13'),
(1432, 371, '_menu_item_object', 'tcp_product_category'),
(1433, 371, '_menu_item_target', ''),
(1434, 371, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1435, 371, '_menu_item_xfn', ''),
(1436, 371, '_menu_item_url', ''),
(1646, 395, '_menu_item_menu_item_parent', '0'),
(1645, 395, '_menu_item_type', 'post_type'),
(1908, 450, '_menu_item_target', ''),
(1907, 450, '_menu_item_object', 'tcp_product_category'),
(1906, 450, '_menu_item_object_id', '40'),
(1905, 450, '_menu_item_menu_item_parent', '447'),
(1904, 450, '_menu_item_type', 'taxonomy'),
(1898, 448, '_menu_item_object', 'custom'),
(1456, 374, '_menu_item_type', 'taxonomy'),
(1457, 374, '_menu_item_menu_item_parent', '448'),
(1458, 374, '_menu_item_object_id', '21'),
(1459, 374, '_menu_item_object', 'tcp_product_category'),
(1460, 374, '_menu_item_target', ''),
(1461, 374, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1462, 374, '_menu_item_xfn', ''),
(1463, 374, '_menu_item_url', ''),
(1643, 394, '_menu_item_url', ''),
(1465, 375, '_menu_item_type', 'taxonomy'),
(1466, 375, '_menu_item_menu_item_parent', '448'),
(1467, 375, '_menu_item_object_id', '28'),
(1468, 375, '_menu_item_object', 'tcp_product_category'),
(1469, 375, '_menu_item_target', ''),
(1470, 375, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1471, 375, '_menu_item_xfn', ''),
(1472, 375, '_menu_item_url', ''),
(1642, 394, '_menu_item_xfn', ''),
(1474, 376, '_menu_item_type', 'taxonomy'),
(1475, 376, '_menu_item_menu_item_parent', '448'),
(1476, 376, '_menu_item_object_id', '29'),
(1477, 376, '_menu_item_object', 'tcp_product_category'),
(1478, 376, '_menu_item_target', ''),
(1479, 376, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1480, 376, '_menu_item_xfn', ''),
(1481, 376, '_menu_item_url', ''),
(1483, 377, '_menu_item_type', 'taxonomy'),
(1484, 377, '_menu_item_menu_item_parent', '448'),
(1485, 377, '_menu_item_object_id', '23'),
(1486, 377, '_menu_item_object', 'tcp_product_category'),
(1487, 377, '_menu_item_target', ''),
(1488, 377, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1489, 377, '_menu_item_xfn', ''),
(1490, 377, '_menu_item_url', ''),
(1641, 394, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2120, 520, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"648";s:6:"height";s:3:"427";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:13:"2011/07/1.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:13:"1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:13:"1-300x197.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:11:"1-45x29.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"29";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:11:"1-95x62.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"62";}}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:"";}}'),
(2119, 520, '_wp_attached_file', '2011/07/1.jpg'),
(2118, 519, '_edit_lock', '1310573935:1'),
(2116, 518, '_wp_attachment_metadata', 'a:0:{}'),
(2115, 518, '_wp_attached_file', '2011/06/favicon.ico'),
(1640, 394, '_menu_item_target', ''),
(1501, 379, '_menu_item_type', 'taxonomy'),
(1502, 379, '_menu_item_menu_item_parent', '516'),
(1503, 379, '_menu_item_object_id', '30'),
(1504, 379, '_menu_item_object', 'tcp_product_category'),
(1505, 379, '_menu_item_target', ''),
(1506, 379, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1507, 379, '_menu_item_xfn', ''),
(1508, 379, '_menu_item_url', ''),
(1639, 394, '_menu_item_object', 'page'),
(1510, 380, '_menu_item_type', 'taxonomy'),
(1511, 380, '_menu_item_menu_item_parent', '516'),
(1512, 380, '_menu_item_object_id', '31'),
(1513, 380, '_menu_item_object', 'tcp_product_category'),
(1514, 380, '_menu_item_target', ''),
(1515, 380, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1516, 380, '_menu_item_xfn', ''),
(1517, 380, '_menu_item_url', ''),
(1638, 394, '_menu_item_object_id', '96'),
(1519, 381, '_menu_item_type', 'taxonomy'),
(1520, 381, '_menu_item_menu_item_parent', '516'),
(1521, 381, '_menu_item_object_id', '32'),
(1522, 381, '_menu_item_object', 'tcp_product_category'),
(1523, 381, '_menu_item_target', ''),
(1524, 381, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1525, 381, '_menu_item_xfn', ''),
(1526, 381, '_menu_item_url', ''),
(1637, 394, '_menu_item_menu_item_parent', '0'),
(1528, 382, '_menu_item_type', 'taxonomy'),
(1529, 382, '_menu_item_menu_item_parent', '448'),
(1530, 382, '_menu_item_object_id', '18'),
(1531, 382, '_menu_item_object', 'tcp_product_category'),
(1532, 382, '_menu_item_target', ''),
(1533, 382, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1534, 382, '_menu_item_xfn', ''),
(1535, 382, '_menu_item_url', ''),
(1636, 394, '_menu_item_type', 'post_type'),
(2110, 516, '_menu_item_target', ''),
(2109, 516, '_menu_item_object', 'custom'),
(2108, 516, '_menu_item_object_id', '516');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2107, 516, '_menu_item_menu_item_parent', '448'),
(2106, 516, '_menu_item_type', 'custom'),
(1897, 448, '_menu_item_object_id', '448'),
(1546, 384, '_menu_item_type', 'taxonomy'),
(1547, 384, '_menu_item_menu_item_parent', '515'),
(1548, 384, '_menu_item_object_id', '34'),
(1549, 384, '_menu_item_object', 'tcp_product_category'),
(1550, 384, '_menu_item_target', ''),
(1551, 384, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1552, 384, '_menu_item_xfn', ''),
(1553, 384, '_menu_item_url', ''),
(1634, 393, '_menu_item_url', ''),
(1555, 385, '_menu_item_type', 'taxonomy'),
(1556, 385, '_menu_item_menu_item_parent', '515'),
(1557, 385, '_menu_item_object_id', '33'),
(1558, 385, '_menu_item_object', 'tcp_product_category'),
(1559, 385, '_menu_item_target', ''),
(1560, 385, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1561, 385, '_menu_item_xfn', ''),
(1562, 385, '_menu_item_url', ''),
(1633, 393, '_menu_item_xfn', ''),
(1564, 386, '_menu_item_type', 'taxonomy'),
(1565, 386, '_menu_item_menu_item_parent', '515'),
(1566, 386, '_menu_item_object_id', '35'),
(1567, 386, '_menu_item_object', 'tcp_product_category'),
(1568, 386, '_menu_item_target', ''),
(1569, 386, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1570, 386, '_menu_item_xfn', ''),
(1571, 386, '_menu_item_url', ''),
(1573, 387, '_menu_item_type', 'taxonomy'),
(1574, 387, '_menu_item_menu_item_parent', '448'),
(1575, 387, '_menu_item_object_id', '20'),
(1576, 387, '_menu_item_object', 'tcp_product_category'),
(1577, 387, '_menu_item_target', ''),
(1578, 387, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1579, 387, '_menu_item_xfn', ''),
(1580, 387, '_menu_item_url', ''),
(1632, 393, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1582, 388, '_menu_item_type', 'taxonomy'),
(1583, 388, '_menu_item_menu_item_parent', '448'),
(1584, 388, '_menu_item_object_id', '22'),
(1585, 388, '_menu_item_object', 'tcp_product_category'),
(1586, 388, '_menu_item_target', ''),
(1587, 388, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1588, 388, '_menu_item_xfn', ''),
(1589, 388, '_menu_item_url', ''),
(1631, 393, '_menu_item_target', ''),
(1591, 389, '_menu_item_type', 'taxonomy'),
(1592, 389, '_menu_item_menu_item_parent', '448'),
(1593, 389, '_menu_item_object_id', '25'),
(1594, 389, '_menu_item_object', 'tcp_product_category'),
(1595, 389, '_menu_item_target', ''),
(1596, 389, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1597, 389, '_menu_item_xfn', ''),
(1598, 389, '_menu_item_url', ''),
(1630, 393, '_menu_item_object', 'page'),
(1600, 390, '_menu_item_type', 'taxonomy'),
(1601, 390, '_menu_item_menu_item_parent', '448'),
(1602, 390, '_menu_item_object_id', '24'),
(1603, 390, '_menu_item_object', 'tcp_product_category'),
(1604, 390, '_menu_item_target', ''),
(1605, 390, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1606, 390, '_menu_item_xfn', ''),
(1607, 390, '_menu_item_url', ''),
(1629, 393, '_menu_item_object_id', '121'),
(1609, 391, '_menu_item_type', 'taxonomy'),
(1610, 391, '_menu_item_menu_item_parent', '448'),
(1611, 391, '_menu_item_object_id', '19'),
(1612, 391, '_menu_item_object', 'tcp_product_category'),
(1613, 391, '_menu_item_target', ''),
(1614, 391, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1615, 391, '_menu_item_xfn', ''),
(1616, 391, '_menu_item_url', ''),
(1628, 393, '_menu_item_menu_item_parent', '0'),
(1618, 392, '_menu_item_type', 'taxonomy'),
(1619, 392, '_menu_item_menu_item_parent', '447'),
(1620, 392, '_menu_item_object_id', '16'),
(1621, 392, '_menu_item_object', 'tcp_product_category'),
(1622, 392, '_menu_item_target', ''),
(1623, 392, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1624, 392, '_menu_item_xfn', ''),
(1625, 392, '_menu_item_url', ''),
(1627, 393, '_menu_item_type', 'post_type'),
(1648, 395, '_menu_item_object', 'page'),
(1649, 395, '_menu_item_target', ''),
(1650, 395, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1651, 395, '_menu_item_xfn', ''),
(1652, 395, '_menu_item_url', ''),
(1899, 448, '_menu_item_target', ''),
(1654, 396, '_menu_item_type', 'post_type'),
(1655, 396, '_menu_item_menu_item_parent', '0'),
(1656, 396, '_menu_item_object_id', '82'),
(1657, 396, '_menu_item_object', 'page'),
(1658, 396, '_menu_item_target', ''),
(1659, 396, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1660, 396, '_menu_item_xfn', ''),
(1661, 396, '_menu_item_url', ''),
(1900, 448, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1663, 397, '_menu_item_type', 'post_type'),
(1664, 397, '_menu_item_menu_item_parent', '0'),
(1665, 397, '_menu_item_object_id', '44'),
(1666, 397, '_menu_item_object', 'page'),
(1667, 397, '_menu_item_target', ''),
(1668, 397, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1669, 397, '_menu_item_xfn', ''),
(1670, 397, '_menu_item_url', ''),
(1896, 448, '_menu_item_menu_item_parent', '447'),
(1895, 448, '_menu_item_type', 'custom'),
(1681, 399, '_menu_item_type', 'post_type'),
(1682, 399, '_menu_item_menu_item_parent', '0'),
(1683, 399, '_menu_item_object_id', '82'),
(1684, 399, '_menu_item_object', 'page'),
(1685, 399, '_menu_item_target', ''),
(1686, 399, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1687, 399, '_menu_item_xfn', ''),
(1688, 399, '_menu_item_url', ''),
(1837, 426, '_wp_attached_file', '2011/06/logo-rojo1.gif'),
(1690, 400, '_menu_item_type', 'post_type'),
(1691, 400, '_menu_item_menu_item_parent', '0'),
(1692, 400, '_menu_item_object_id', '121'),
(1693, 400, '_menu_item_object', 'page'),
(1694, 400, '_menu_item_target', ''),
(1695, 400, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1696, 400, '_menu_item_xfn', ''),
(1697, 400, '_menu_item_url', ''),
(1699, 404, '_menu_item_type', 'post_type'),
(1700, 404, '_menu_item_menu_item_parent', '0'),
(1701, 404, '_menu_item_object_id', '61'),
(1702, 404, '_menu_item_object', 'page'),
(1703, 404, '_menu_item_target', ''),
(1704, 404, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1705, 404, '_menu_item_xfn', ''),
(1706, 404, '_menu_item_url', ''),
(1707, 404, '_menu_item_orphaned', '1309981367'),
(1708, 127, '_wp_trash_meta_status', 'publish'),
(1709, 127, '_wp_trash_meta_time', '1309981386'),
(1710, 128, '_wp_trash_meta_status', 'publish'),
(1711, 128, '_wp_trash_meta_time', '1309981386'),
(1712, 129, '_wp_trash_meta_status', 'publish'),
(1713, 129, '_wp_trash_meta_time', '1309981386'),
(1714, 130, '_wp_trash_meta_status', 'publish'),
(1715, 130, '_wp_trash_meta_time', '1309981386'),
(1716, 133, '_wp_trash_meta_status', 'publish'),
(1717, 133, '_wp_trash_meta_time', '1309981386'),
(1718, 134, '_wp_trash_meta_status', 'publish'),
(1719, 134, '_wp_trash_meta_time', '1309981386'),
(1722, 413, '_menu_item_type', 'post_type'),
(1723, 413, '_menu_item_menu_item_parent', '0'),
(1724, 413, '_menu_item_object_id', '88'),
(1725, 413, '_menu_item_object', 'page'),
(1726, 413, '_menu_item_target', ''),
(1727, 413, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1728, 413, '_menu_item_xfn', ''),
(1729, 413, '_menu_item_url', ''),
(1740, 415, '_edit_last', '1'),
(1731, 414, '_menu_item_type', 'post_type'),
(1732, 414, '_menu_item_menu_item_parent', '446'),
(1733, 414, '_menu_item_object_id', '61'),
(1734, 414, '_menu_item_object', 'page'),
(1735, 414, '_menu_item_target', ''),
(1736, 414, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1737, 414, '_menu_item_xfn', ''),
(1738, 414, '_menu_item_url', ''),
(1741, 415, '_edit_lock', '1310040222:1'),
(1742, 415, '_wp_page_template', 'default'),
(1743, 415, 'seo_follow', 'false'),
(1744, 415, 'seo_noindex', 'false'),
(2102, 515, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2101, 515, '_menu_item_target', ''),
(2100, 515, '_menu_item_object', 'custom'),
(2099, 515, '_menu_item_object_id', '515'),
(2098, 515, '_menu_item_menu_item_parent', '448'),
(2097, 515, '_menu_item_type', 'custom'),
(1754, 227, 'tcp_price', '697'),
(1755, 228, 'tcp_price', '649'),
(1756, 229, 'tcp_price', '649'),
(1757, 230, 'tcp_price', '679'),
(1758, 231, 'tcp_price', '697'),
(1759, 232, 'tcp_price', '635'),
(1760, 233, 'tcp_price', '729'),
(1761, 234, 'tcp_price', '629'),
(1762, 235, 'tcp_price', '1037'),
(1763, 236, 'tcp_price', '929'),
(1764, 237, 'tcp_price', '929'),
(1765, 238, 'tcp_price', '837'),
(1766, 239, 'tcp_price', '797'),
(1767, 240, 'tcp_price', '998'),
(1768, 241, 'tcp_price', '897'),
(1769, 242, 'tcp_price', '879'),
(1770, 243, 'tcp_price', '729'),
(1771, 244, 'tcp_price', '519'),
(1772, 245, 'tcp_price', '627'),
(1773, 246, 'tcp_price', '928'),
(1774, 247, 'tcp_price', '497'),
(1775, 248, 'tcp_price', '637'),
(1776, 249, 'tcp_price', '657'),
(1777, 250, 'tcp_price', '747'),
(1778, 251, 'tcp_price', '579'),
(1779, 252, 'tcp_price', '697'),
(1780, 253, 'tcp_price', '1049'),
(1781, 254, 'tcp_price', '719'),
(1782, 255, 'tcp_price', '759'),
(1783, 256, 'tcp_price', '689'),
(1784, 257, 'tcp_price', '597'),
(1785, 258, 'tcp_price', '769'),
(1786, 259, 'tcp_price', '654'),
(1787, 260, 'tcp_price', '579'),
(1788, 261, 'tcp_price', '667'),
(1789, 262, 'tcp_price', '519'),
(1790, 263, 'tcp_price', '619'),
(1791, 264, 'tcp_price', '519'),
(1792, 265, 'tcp_price', '715'),
(1793, 266, 'tcp_price', '657'),
(1794, 267, 'tcp_price', '825'),
(1795, 268, 'tcp_price', '679'),
(1796, 269, 'tcp_price', '842'),
(1797, 270, 'tcp_price', '784'),
(1798, 271, 'tcp_price', '842'),
(1799, 272, 'tcp_price', '898'),
(1800, 273, 'tcp_price', '754'),
(1801, 274, 'tcp_price', '986'),
(1802, 275, 'tcp_price', '798'),
(1803, 276, 'tcp_price', '697'),
(1804, 277, 'tcp_price', '578'),
(1805, 278, 'tcp_price', '947'),
(1806, 279, 'tcp_price', '1119'),
(1807, 280, 'tcp_price', '832'),
(1808, 281, 'tcp_price', '1129'),
(1809, 282, 'tcp_price', '1029'),
(1810, 283, 'tcp_price', '567'),
(1811, 284, 'tcp_price', '589'),
(1812, 285, 'tcp_price', '687'),
(1813, 286, 'tcp_price', '739'),
(1814, 287, 'tcp_price', '629'),
(1815, 288, 'tcp_price', '629'),
(1816, 289, 'tcp_price', '457'),
(1817, 290, 'tcp_price', '397'),
(1818, 291, 'tcp_price', '497'),
(1819, 234, '_edit_lock', '1310031238:1'),
(1820, 234, '_edit_last', '1'),
(1821, 234, 'seo_follow', 'false'),
(1822, 234, 'seo_noindex', 'false'),
(1823, 234, '_wp_old_slug', 'CAC 599-004565'),
(1824, 234, 'tcp_tax_id', '0'),
(1825, 234, 'tcp_back_end_label', ''),
(1826, 234, 'tcp_hide_buy_button', ''),
(1827, 234, 'tcp_exclude_range', ''),
(1828, 234, 'tcp_is_downloadable', ''),
(1829, 234, 'tcp_max_downloads', '0'),
(1830, 234, 'tcp_days_to_expire', '0'),
(1831, 234, 'tcp_type', 'SIMPLE'),
(1832, 234, 'tcp_is_visible', '1'),
(1833, 234, 'tcp_weight', '0'),
(1834, 234, 'tcp_order', '0'),
(1835, 234, 'tcp_sku', ''),
(1836, 234, 'tcp_stock', '-1'),
(1838, 426, '_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:22:"2011/06/logo-rojo1.gif";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"logo-rojo1-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:21:"logo-rojo1-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"logo-rojo1-45x11.gif";s:5:"width";s:2:"45";s:6:"height";s:2:"11";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"logo-rojo1-95x24.gif";s:5:"width";s:2:"95";s:6:"height";s:2:"24";}}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:"";}}'),
(1839, 427, '_wp_attached_file', '2011/06/logo-rojo.png'),
(1840, 427, '_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:21:"2011/06/logo-rojo.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"logo-rojo-150x80.png";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:20:"logo-rojo-300x76.png";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"logo-rojo-45x11.png";s:5:"width";s:2:"45";s:6:"height";s:2:"11";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"logo-rojo-95x24.png";s:5:"width";s:2:"95";s:6:"height";s:2:"24";}}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:"";}}'),
(2048, 499, '_wp_attached_file', '2011/07/11exotico.jpg'),
(2049, 499, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:21:"2011/07/11exotico.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"11exotico-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"11exotico-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"11exotico-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"11exotico-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2184, 544, '_edit_lock', '1310634143:1'),
(2045, 498, '_wp_attached_file', '2011/07/12exterior.jpg'),
(2046, 498, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:22:"2011/07/12exterior.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"12exterior-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"12exterior-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"12exterior-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"12exterior-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2181, 544, 'image', ''),
(2185, 547, '_thumbnail_id', '523'),
(2051, 500, '_wp_attached_file', '2011/07/10vanguardista.jpg'),
(2052, 500, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:26:"2011/07/10vanguardista.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"10vanguardista-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"10vanguardista-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:24:"10vanguardista-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:24:"10vanguardista-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2186, 547, '_edit_last', '1'),
(2178, 544, '_edit_last', '1'),
(1877, 446, '_menu_item_type', 'custom'),
(1878, 446, '_menu_item_menu_item_parent', '0'),
(1879, 446, '_menu_item_object_id', '446'),
(1880, 446, '_menu_item_object', 'custom'),
(1881, 446, '_menu_item_target', ''),
(1882, 446, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1883, 446, '_menu_item_xfn', ''),
(1884, 446, '_menu_item_url', '#'),
(1901, 448, '_menu_item_xfn', ''),
(1886, 447, '_menu_item_type', 'custom'),
(1887, 447, '_menu_item_menu_item_parent', '0'),
(1888, 447, '_menu_item_object_id', '447'),
(1889, 447, '_menu_item_object', 'custom'),
(1890, 447, '_menu_item_target', ''),
(1891, 447, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1892, 447, '_menu_item_xfn', ''),
(1893, 447, '_menu_item_url', '#'),
(1902, 448, '_menu_item_url', '#'),
(1909, 450, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1910, 450, '_menu_item_xfn', ''),
(1911, 450, '_menu_item_url', ''),
(1913, 88, '_pronamic_google_maps_active', 'true'),
(1914, 88, '_pronamic_google_maps_latitude', '40.4318173'),
(1915, 88, '_pronamic_google_maps_longitude', '-3.7121928'),
(1916, 88, '_pronamic_google_maps_map_type', 'roadmap'),
(1917, 88, '_pronamic_google_maps_zoom', '15'),
(1918, 88, '_pronamic_google_maps_title', ''),
(1919, 88, '_pronamic_google_maps_description', ''),
(1920, 88, '_pronamic_google_maps_address', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid'),
(1921, 88, '_pronamic_google_maps_geocode_status', 'OK'),
(1922, 470, '_menu_item_type', 'taxonomy'),
(1923, 470, '_menu_item_menu_item_parent', '446'),
(1924, 470, '_menu_item_object_id', '41'),
(1925, 470, '_menu_item_object', 'category'),
(1926, 470, '_menu_item_target', ''),
(1927, 470, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1928, 470, '_menu_item_xfn', ''),
(1929, 470, '_menu_item_url', ''),
(1931, 471, '_menu_item_type', 'taxonomy'),
(1932, 471, '_menu_item_menu_item_parent', '446'),
(1933, 471, '_menu_item_object_id', '42'),
(1934, 471, '_menu_item_object', 'category'),
(1935, 471, '_menu_item_target', ''),
(1936, 471, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1937, 471, '_menu_item_xfn', ''),
(1938, 471, '_menu_item_url', ''),
(2054, 501, '_wp_attached_file', '2011/07/9etnico.jpg'),
(2055, 501, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:19:"2011/07/9etnico.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"9etnico-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"9etnico-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"9etnico-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"9etnico-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2236, 559, 'image', ''),
(2057, 502, '_wp_attached_file', '2011/07/8cosmopolita.jpg'),
(2058, 502, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:24:"2011/07/8cosmopolita.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:24:"8cosmopolita-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:24:"8cosmopolita-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:22:"8cosmopolita-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:22:"8cosmopolita-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2059, 503, '_wp_attached_file', '2011/07/7eclectico.jpg'),
(2060, 503, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:22:"2011/07/7eclectico.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"7eclectico-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"7eclectico-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"7eclectico-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"7eclectico-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2235, 559, '_thumbnail_id', '523'),
(2232, 558, 'seo_noindex', 'false'),
(2063, 504, '_wp_attached_file', '2011/07/6colonial.jpg'),
(2064, 504, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:21:"2011/07/6colonial.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"6colonial-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"6colonial-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:19:"6colonial-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:19:"6colonial-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2244, 562, '_thumbnail_id', '523'),
(2066, 488, '_edit_lock', '1310466113:1'),
(2067, 505, '_wp_attached_file', '2011/07/5lounge.jpg'),
(2068, 505, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"550";s:14:"hwstring_small";s:23:"height=''73'' width=''128''";s:4:"file";s:19:"2011/07/5lounge.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"5lounge-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"5lounge-300x171.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"171";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:17:"5lounge-45x25.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"25";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:17:"5lounge-95x54.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"54";}}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:"";}}'),
(2276, 568, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2275, 568, '_menu_item_target', ''),
(2272, 568, '_menu_item_menu_item_parent', '447'),
(2274, 568, '_menu_item_object', 'custom'),
(2078, 509, '_wp_attached_file', '2011/07/2airezen.jpg'),
(2079, 509, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"696";s:14:"hwstring_small";s:23:"height=''92'' width=''128''";s:4:"file";s:20:"2011/07/2airezen.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"2airezen-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:20:"2airezen-300x217.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"217";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:18:"2airezen-45x32.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"32";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:18:"2airezen-95x68.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"68";}}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:"";}}'),
(2266, 566, '_edit_last', '1'),
(2258, 564, 'image', ''),
(2257, 564, 'seo_noindex', 'false'),
(2261, 566, 'image', ''),
(2262, 566, 'seo_noindex', 'false'),
(2251, 564, '_thumbnail_id', '523'),
(2271, 568, '_menu_item_type', 'custom'),
(2183, 544, 'seo_noindex', 'false'),
(2182, 544, 'seo_follow', 'false'),
(2177, 544, '_thumbnail_id', '545'),
(2280, 569, '_menu_item_type', 'custom'),
(2081, 510, '_wp_attached_file', '2011/07/1presentacion.jpg'),
(2082, 510, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"960";s:6:"height";s:3:"736";s:14:"hwstring_small";s:23:"height=''96'' width=''125''";s:4:"file";s:25:"2011/07/1presentacion.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:25:"1presentacion-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:25:"1presentacion-300x230.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"230";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:23:"1presentacion-45x34.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"34";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:23:"1presentacion-95x72.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"72";}}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:"";}}'),
(2084, 512, '_wp_attached_file', '2011/06/logo-rojo2.gif'),
(2085, 512, '_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:22:"2011/06/logo-rojo2.gif";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"logo-rojo2-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:21:"logo-rojo2-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:20:"logo-rojo2-45x11.gif";s:5:"width";s:2:"45";s:6:"height";s:2:"11";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:20:"logo-rojo2-95x24.gif";s:5:"width";s:2:"95";s:6:"height";s:2:"24";}}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:"";}}'),
(2289, 570, '_menu_item_type', 'taxonomy'),
(2287, 569, '_menu_item_url', '#'),
(2286, 569, '_menu_item_xfn', ''),
(2086, 415, '_wp_trash_meta_status', 'publish'),
(2087, 415, '_wp_trash_meta_time', '1310469162'),
(2088, 514, '_menu_item_type', 'taxonomy'),
(2089, 514, '_menu_item_menu_item_parent', '0'),
(2090, 514, '_menu_item_object_id', '43'),
(2091, 514, '_menu_item_object', 'category'),
(2092, 514, '_menu_item_target', ''),
(2093, 514, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2094, 514, '_menu_item_xfn', ''),
(2095, 514, '_menu_item_url', ''),
(2283, 569, '_menu_item_object', 'custom'),
(2282, 569, '_menu_item_object_id', '569'),
(2281, 569, '_menu_item_menu_item_parent', '447'),
(2247, 562, 'seo_follow', 'false'),
(2246, 562, '_edit_last', '1'),
(2245, 562, '_edit_lock', '1310635908:1'),
(2273, 568, '_menu_item_object_id', '568'),
(2238, 559, '_edit_lock', '1310635857:1'),
(2237, 559, '_edit_last', '1'),
(2231, 558, 'seo_follow', 'false'),
(2222, 556, '_edit_lock', '1310635761:1'),
(2221, 556, '_edit_last', '1'),
(2220, 556, '_thumbnail_id', '523'),
(2219, 556, 'image', ''),
(2234, 559, 'seo_follow', 'false'),
(2229, 558, '_thumbnail_id', '523'),
(2230, 558, 'image', ''),
(2228, 558, '_edit_last', '1'),
(2208, 553, 'image', ''),
(2207, 553, '_thumbnail_id', '523'),
(2206, 553, '_edit_last', '1'),
(2205, 553, '_edit_lock', '1310635740:1'),
(2103, 515, '_menu_item_xfn', ''),
(2104, 515, '_menu_item_url', '#'),
(2111, 516, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2112, 516, '_menu_item_xfn', ''),
(2113, 516, '_menu_item_url', '#'),
(2202, 551, '_thumbnail_id', '545'),
(2200, 551, 'seo_noindex', 'false'),
(2201, 551, 'seo_follow', 'false'),
(2192, 547, '_edit_lock', '1310635536:1'),
(2190, 547, 'seo_follow', 'false'),
(2189, 547, 'image', ''),
(2198, 551, 'image', ''),
(2199, 551, '_edit_last', '1'),
(2121, 519, '_thumbnail_id', '520'),
(2128, 522, '_edit_lock', '1310573931:1'),
(2127, 522, '_edit_last', '1'),
(2124, 519, 'image', ''),
(2125, 519, 'seo_follow', 'false'),
(2126, 519, 'seo_noindex', 'false'),
(2129, 523, '_wp_attached_file', '2011/07/2.jpg'),
(2130, 523, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"611";s:6:"height";s:3:"430";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:13:"2011/07/2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:3:{s:4:"file";s:13:"2-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:13:"2-300x211.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"211";}s:14:"mini-thumbnail";a:3:{s:4:"file";s:11:"2-45x31.jpg";s:5:"width";s:2:"45";s:6:"height";s:2:"31";}s:16:"medium-thumbnail";a:3:{s:4:"file";s:11:"2-95x66.jpg";s:5:"width";s:2:"95";s:6:"height";s:2:"66";}}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:"";}}'),
(2131, 522, '_thumbnail_id', '523'),
(2255, 564, '_edit_last', '1'),
(2134, 522, 'image', ''),
(2135, 522, 'seo_follow', 'false'),
(2136, 522, 'seo_noindex', 'false'),
(2256, 564, '_edit_lock', '1310635919:1'),
(2254, 564, 'seo_follow', 'false'),
(2248, 562, 'seo_noindex', 'false'),
(2243, 562, 'image', ''),
(2263, 566, '_thumbnail_id', '523'),
(2224, 556, 'seo_follow', 'false'),
(2223, 556, 'seo_noindex', 'false'),
(2233, 559, 'seo_noindex', 'false'),
(2227, 558, '_edit_lock', '1310635895:1'),
(2210, 553, 'seo_noindex', 'false'),
(2209, 553, 'seo_follow', 'false'),
(2197, 551, '_edit_lock', '1310635719:1'),
(2191, 547, 'seo_noindex', 'false'),
(2291, 570, '_menu_item_object_id', '53'),
(2292, 570, '_menu_item_object', 'tcp_product_category'),
(2293, 570, '_menu_item_target', ''),
(2294, 570, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2295, 570, '_menu_item_xfn', ''),
(2296, 570, '_menu_item_url', ''),
(2298, 571, '_menu_item_type', 'taxonomy'),
(2299, 571, '_menu_item_menu_item_parent', '569'),
(2300, 571, '_menu_item_object_id', '52'),
(2301, 571, '_menu_item_object', 'tcp_product_category'),
(2302, 571, '_menu_item_target', ''),
(2303, 571, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2304, 571, '_menu_item_xfn', ''),
(2305, 571, '_menu_item_url', ''),
(2307, 572, '_menu_item_type', 'taxonomy'),
(2308, 572, '_menu_item_menu_item_parent', '569'),
(2309, 572, '_menu_item_object_id', '49'),
(2310, 572, '_menu_item_object', 'tcp_product_category'),
(2311, 572, '_menu_item_target', ''),
(2312, 572, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2313, 572, '_menu_item_xfn', ''),
(2314, 572, '_menu_item_url', ''),
(2316, 573, '_menu_item_type', 'taxonomy'),
(2317, 573, '_menu_item_menu_item_parent', '569'),
(2318, 573, '_menu_item_object_id', '50'),
(2319, 573, '_menu_item_object', 'tcp_product_category'),
(2320, 573, '_menu_item_target', ''),
(2321, 573, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2322, 573, '_menu_item_xfn', ''),
(2323, 573, '_menu_item_url', ''),
(2325, 574, '_menu_item_type', 'taxonomy'),
(2326, 574, '_menu_item_menu_item_parent', '569'),
(2327, 574, '_menu_item_object_id', '51'),
(2328, 574, '_menu_item_object', 'tcp_product_category'),
(2329, 574, '_menu_item_target', ''),
(2330, 574, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2331, 574, '_menu_item_xfn', ''),
(2332, 574, '_menu_item_url', ''),
(2334, 575, '_menu_item_type', 'taxonomy'),
(2335, 575, '_menu_item_menu_item_parent', '569'),
(2336, 575, '_menu_item_object_id', '55'),
(2337, 575, '_menu_item_object', 'tcp_product_category'),
(2338, 575, '_menu_item_target', ''),
(2339, 575, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2340, 575, '_menu_item_xfn', ''),
(2341, 575, '_menu_item_url', ''),
(2343, 576, '_menu_item_type', 'taxonomy'),
(2344, 576, '_menu_item_menu_item_parent', '569'),
(2345, 576, '_menu_item_object_id', '56'),
(2346, 576, '_menu_item_object', 'tcp_product_category'),
(2347, 576, '_menu_item_target', ''),
(2348, 576, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2349, 576, '_menu_item_xfn', ''),
(2350, 576, '_menu_item_url', ''),
(2352, 577, '_menu_item_type', 'taxonomy'),
(2353, 577, '_menu_item_menu_item_parent', '569'),
(2354, 577, '_menu_item_object_id', '54'),
(2355, 577, '_menu_item_object', 'tcp_product_category'),
(2356, 577, '_menu_item_target', ''),
(2357, 577, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2358, 577, '_menu_item_xfn', ''),
(2359, 577, '_menu_item_url', ''),
(2361, 578, '_menu_item_type', 'taxonomy'),
(2362, 578, '_menu_item_menu_item_parent', '568'),
(2363, 578, '_menu_item_object_id', '46'),
(2364, 578, '_menu_item_object', 'tcp_product_category'),
(2365, 578, '_menu_item_target', ''),
(2366, 578, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2367, 578, '_menu_item_xfn', ''),
(2368, 578, '_menu_item_url', ''),
(2370, 579, '_menu_item_type', 'taxonomy'),
(2371, 579, '_menu_item_menu_item_parent', '568'),
(2372, 579, '_menu_item_object_id', '47'),
(2373, 579, '_menu_item_object', 'tcp_product_category'),
(2374, 579, '_menu_item_target', ''),
(2375, 579, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2376, 579, '_menu_item_xfn', ''),
(2377, 579, '_menu_item_url', ''),
(2379, 580, '_menu_item_type', 'taxonomy'),
(2380, 580, '_menu_item_menu_item_parent', '568'),
(2381, 580, '_menu_item_object_id', '48'),
(2382, 580, '_menu_item_object', 'tcp_product_category'),
(2383, 580, '_menu_item_target', ''),
(2384, 580, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2385, 580, '_menu_item_xfn', ''),
(2386, 580, '_menu_item_url', '');
-- --------------------------------------------------------
--
-- 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=581 ;
--
-- 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!', '', 'trash', 'open', 'open', '', 'hola-mundo', '', '', '2011-07-05 09:17:59', '2011-07-05 09:17:59', '', 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),
(520, 1, '2011-07-12 19:38:18', '2011-07-12 17:38:18', '', '1', '', 'inherit', 'closed', 'open', '', '1-3', '', '', '2011-07-12 19:38:18', '2011-07-12 17:38:18', '', 519, 'http://localhost/originalhouse/wp-content/uploads/2011/07/1.jpg', 0, 'attachment', 'image/jpeg', 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', '', 0, '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', '', 0, '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', '', 0, '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', '', 0, '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),
(540, 1, '2011-07-13 13:46:19', '2011-07-13 11:46:19', '[jQuery Slider]\r\n[mp3j track="intro.mp3" caption="" autoplay="y" loop="n" ind="n" vol="60"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-31', '', '', '2011-07-13 13:46:19', '2011-07-13 11:46:19', '', 44, 'http://localhost/originalhouse/?p=540', 0, 'revision', '', 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),
(310, 1, '2011-07-06 16:49:40', '2011-07-06 16:49:40', '', 'IMO-35-57', '', 'inherit', 'closed', 'open', '', 'imo-35-57', '', '', '2011-07-06 16:49:40', '2011-07-06 16:49:40', '', 241, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-35-57.jpg', 0, 'attachment', 'image/jpeg', 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),
(311, 1, '2011-07-06 16:49:41', '2011-07-06 16:49:41', '', 'IMO-35-81', '', 'inherit', 'closed', 'open', '', 'imo-35-81', '', '', '2011-07-06 16:49:41', '2011-07-06 16:49:41', '', 242, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-35-81.jpg', 0, 'attachment', 'image/jpeg', 0),
(308, 1, '2011-07-06 16:49:38', '2011-07-06 16:49:38', '', 'DUG-741-NEGRO', '', 'inherit', 'closed', 'open', '', 'dug-741-negro', '', '', '2011-07-06 16:49:38', '2011-07-06 16:49:38', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/dug-741-negro.jpg', 0, 'attachment', 'image/jpeg', 0),
(309, 1, '2011-07-06 16:49:39', '2011-07-06 16:49:39', '', 'DUG-W-743', '', 'inherit', 'closed', 'open', '', 'dug-w-743', '', '', '2011-07-06 16:49:39', '2011-07-06 16:49:39', '', 238, 'http://localhost/originalhouse/wp-content/uploads/2011/07/dug-w-743.jpg', 0, 'attachment', 'image/jpeg', 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', '', 0, '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', '', 0, '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', '', 0, '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', '', 0, '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', '', 0, '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', '', 0, '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', '', 0, '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', '[mp3j track="intro.mp3" caption="" autoplay="y" loop="n" ind="n" vol="60"]', 'Inicio', '', 'publish', 'open', 'open', '', 'inicio', '', '', '2011-07-13 18:16:50', '2011-07-13 16:16:50', '', 0, 'http://localhost/originalhouse/?page_id=44', 0, 'page', '', 0),
(531, 1, '2011-07-13 13:13:22', '2011-07-13 11:13:22', '', 'intro', '', 'inherit', 'closed', 'open', '', 'intro', '', '', '2011-07-13 13:13:22', '2011-07-13 11:13:22', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/intro.mp3', 0, 'attachment', 'audio/mpeg', 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),
(397, 1, '2011-07-06 19:32:32', '2011-07-06 19:32:32', ' ', '', '', 'publish', 'closed', 'open', '', '397', '', '', '2011-07-06 19:38:17', '2011-07-06 19:38:17', '', 0, 'http://localhost/originalhouse/?p=397', 5, 'nav_menu_item', '', 0),
(61, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', '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.\r\n\r\nConsideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, huimos de la venta fría por Internet y por eso hemos hecho de esta web un catálogo con más de 3.000 referencias. Por la gran rotación y exclusividad de nuestros artículos puede que de alguno  de ellos no quedasen existencias.\r\n\r\nHemos 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.\r\n\r\nTener una casa de ensueño no tiene por qué ser caro y además podrás financiar tus compras a 6 meses sin intereses.\r\n<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\r\n\r\n', 'La tienda', '', 'publish', 'open', 'closed', '', 'la-tienda', '', '', '2011-07-11 17:15:13', '2011-07-11 17:15:13', '', 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),
(456, 1, '2011-07-11 17:14:52', '2011-07-11 17:14:52', '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.\r\n\r\nConsideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, huimos de la venta fría por Internet y por eso hemos hecho de esta web un catálogo con más de 3.000 referencias. Por la gran rotación y exclusividad de nuestros artículos puede que de alguno  de ellos no quedasen existencias.\r\n\r\nHemos 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.\r\n\r\nTener una casa de ensueño no tiene por qué ser caro y además podrás financiar tus compras a 6 meses sin intereses.\r\n<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\r\n\r\n', 'La tienda', '', 'inherit', 'closed', 'open', '', '61-revision-20', '', '', '2011-07-11 17:14:52', '2011-07-11 17:14:52', '', 61, 'http://localhost/originalhouse/?p=456', 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),
(394, 1, '2011-07-06 19:32:32', '2011-07-06 19:32:32', '[catablog template="gallery"]', '', '', 'publish', 'closed', 'open', '', '394', '', '', '2011-07-06 19:38:17', '2011-07-06 19:38:17', '', 0, 'http://localhost/originalhouse/?p=394', 2, 'nav_menu_item', '', 0),
(395, 1, '2011-07-06 19:32:32', '2011-07-06 19:32:32', '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: originalhouse@originalhouse.info\r\n\r\n \r\n\r\n \r\n\r\n ', '', '', 'publish', 'closed', 'open', '', '395', '', '', '2011-07-06 19:38:17', '2011-07-06 19:38:17', '', 0, 'http://localhost/originalhouse/?p=395', 3, 'nav_menu_item', '', 0),
(396, 1, '2011-07-06 19:32:32', '2011-07-06 19:32:32', ' ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\r\n REFORMA DE INTERIORES.\r\n TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\r\n ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\r\n ROTACIÓN CONSTANTE DE ARTÍCULOS.\r\n FINANCIACIÓN A 6 MESES SIN INTERESES.\r\n ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.\r\n', '', '', 'publish', 'closed', 'open', '', '396', '', '', '2011-07-06 19:38:17', '2011-07-06 19:38:17', '', 0, 'http://localhost/originalhouse/?p=396', 4, 'nav_menu_item', '', 0),
(70, 1, '2011-07-11 17:07:21', '2011-07-11 17:07:21', '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.\n\nConsideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, huimos de la venta fría por Internet y por eso hemos hecho de esta web un catálogo con más de 3.000 referencias. Por la gran rotación y exclusividad de nuestros artículos puede que de alguno  de ellos no quedasen existencias.\n\nHemos 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.\n\nTener una casa de ensueño no tiene por qué ser caro y además podrás financiar tus compras a 6 meses sin intereses.\n<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\n<h1 style="text-align: center;">BIENVENIDOS</h1>\n&nbsp;', 'La tienda', '', 'inherit', 'open', 'open', '', '61-autosave', '', '', '2011-07-11 17:07:21', '2011-07-11 17:07:21', '', 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),
(421, 1, '2011-07-06 19:44:07', '2011-07-06 19:44:07', '', 'Cartelera', '', 'inherit', 'closed', 'open', '', '415-revision-2', '', '', '2011-07-06 19:44:07', '2011-07-06 19:44:07', '', 415, 'http://localhost/originalhouse/?p=421', 0, 'revision', '', 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),
(426, 1, '2011-07-07 12:10:34', '2011-07-07 12:10:34', '', 'logo-rojo', '', 'inherit', 'closed', 'open', '', 'logo-rojo-2', '', '', '2011-07-07 12:10:34', '2011-07-07 12:10:34', '', 61, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo1.gif', 0, 'attachment', 'image/gif', 0),
(114, 1, '2011-07-04 12:07:47', '2011-07-04 12:07:47', '', 'fondonuevaweb', '', 'inherit', 'closed', 'open', '', 'fondonuevaweb', '', '', '2011-07-04 12:07:47', '2011-07-04 12:07:47', '', 25, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondonuevaweb.jpg', 0, 'attachment', 'image/jpeg', 0),
(113, 1, '2011-07-04 11:45:38', '2011-07-04 11:45:38', '', 'Logo Original House (Rojo)', '', 'inherit', 'closed', 'open', '', 'logo-rojo', '', '', '2011-07-04 11:45:38', '2011-07-04 11:45:38', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif', 0, 'attachment', 'image/gif', 0),
(393, 1, '2011-07-06 19:32:32', '2011-07-06 19:32:32', '[tubepress]', '', '', 'publish', 'closed', 'open', '', '393', '', '', '2011-07-06 19:38:17', '2011-07-06 19:38:17', '', 0, 'http://localhost/originalhouse/?p=393', 1, 'nav_menu_item', '', 0),
(517, 1, '2011-07-11 17:34:17', '2011-07-11 17:34:17', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-23', '', '', '2011-07-11 17:34:17', '2011-07-11 17:34:17', '', 88, 'http://localhost/originalhouse/?p=517', 0, 'revision', '', 0),
(516, 1, '2011-07-12 13:22:29', '2011-07-12 11:22:29', '', 'Dormitorio', '', 'publish', 'closed', 'open', '', 'dormitorio', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 0, 'http://localhost/originalhouse/?p=516', 15, 'nav_menu_item', '', 0),
(387, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '387', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=387', 9, 'nav_menu_item', '', 0),
(380, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '380', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 26, 'http://localhost/originalhouse/?p=380', 17, 'nav_menu_item', '', 0),
(124, 1, '2011-07-04 14:11:45', '2011-07-04 14:11:45', '<table border="0" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<div>\r\n<div><code>[</code><code>tubepress</code><code>]</code></div>\r\n</div></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision-2', '', '', '2011-07-04 14:11:45', '2011-07-04 14:11:45', '', 121, 'http://localhost/originalhouse/?p=124', 0, 'revision', '', 0),
(385, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '385', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 17, 'http://localhost/originalhouse/?p=385', 4, 'nav_menu_item', '', 0),
(386, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '386', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 17, 'http://localhost/originalhouse/?p=386', 6, 'nav_menu_item', '', 0),
(381, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '381', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 26, 'http://localhost/originalhouse/?p=381', 18, 'nav_menu_item', '', 0),
(382, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '382', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=382', 7, 'nav_menu_item', '', 0),
(384, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '384', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 17, 'http://localhost/originalhouse/?p=384', 5, 'nav_menu_item', '', 0),
(126, 1, '2011-07-04 14:15:23', '2011-07-04 14:15:23', '[tubepress]', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-autosave', '', '', '2011-07-04 14:15:23', '2011-07-04 14:15:23', '', 121, 'http://localhost/originalhouse/?p=126', 0, 'revision', '', 0),
(127, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[productspage]', 'Products Page', '', 'trash', 'closed', 'closed', '', 'products-page', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 0, 'http://localhost/originalhouse/?page_id=127', 0, 'page', '', 0),
(128, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[shoppingcart]', 'Checkout', '', 'trash', 'closed', 'closed', '', 'checkout', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 127, 'http://localhost/originalhouse/?page_id=128', 0, 'page', '', 0),
(129, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[transactionresults]', 'Transaction Results', '', 'trash', 'closed', 'closed', '', 'transaction-results', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 127, 'http://localhost/originalhouse/?page_id=129', 0, 'page', '', 0),
(388, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '388', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=388', 11, 'nav_menu_item', '', 0),
(389, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '389', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 12, 'http://localhost/originalhouse/?p=389', 14, 'nav_menu_item', '', 0),
(390, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '390', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=390', 13, 'nav_menu_item', '', 0),
(375, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', '', 'Armarios & Cajoneras', '', 'publish', 'closed', 'open', '', 'armarios-cajoneras', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 12, 'http://localhost/originalhouse/?p=375', 19, 'nav_menu_item', '', 0),
(376, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '376', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 12, 'http://localhost/originalhouse/?p=376', 20, '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>', 'Proyectos', '', 'publish', 'closed', 'closed', '', 'proyectos', '', '', '2011-07-11 16:32:20', '2011-07-11 16:32:20', '', 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-07-07 12:05:25', '2011-07-07 12:05:25', '<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-07-07 12:05:25', '2011-07-07 12:05:25', '', 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/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]', 'Contacto', '', 'publish', 'closed', 'closed', '', 'contacto', '', '', '2011-07-12 13:28:00', '2011-07-12 11:28:00', '', 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),
(449, 1, '2011-07-11 16:32:31', '2011-07-11 16:32:31', '<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<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\r\n<p style="text-align: center;"></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La tienda', '', 'inherit', 'closed', 'open', '', '61-revision-18', '', '', '2011-07-11 16:32:31', '2011-07-11 16:32:31', '', 61, 'http://localhost/originalhouse/?p=449', 0, 'revision', '', 0),
(374, 1, '2011-07-06 19:29:51', '2011-07-06 19:29:51', ' ', '', '', 'publish', 'closed', 'open', '', '374', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=374', 10, 'nav_menu_item', '', 0),
(91, 1, '2011-07-12 13:29:03', '2011-07-12 11:29:03', 'C/ Rodríguez San Pedro, 40\n28015 - Madrid\nMetro: Arguelles\nBus: 2, 16, 21, 61, 202\nParking frente a la tienda\n\nTfno: 91 543 30 96\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\n\nAbierto de lunes a viernes\nde 10:30h a 14:00h y de 17:30h a 21:00h.\nSábados de 11:00h a 14:00h y\nde 18:00h a 20:30h.\nEn julio y agosto, sábados\npor la tarde cerrado.\n[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-autosave', '', '', '2011-07-12 13:29:03', '2011-07-12 11:29:03', '', 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);
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
(96, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '', 'Catálogo', '', 'publish', 'closed', 'open', '', 'catalogo', '', '', '2011-07-07 12:04:09', '2011-07-07 12:04:09', '', 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),
(423, 1, '2011-07-06 19:43:28', '2011-07-06 19:43:28', '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;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-5', '', '', '2011-07-06 19:43:28', '2011-07-06 19:43:28', '', 88, 'http://localhost/originalhouse/?p=423', 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),
(377, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '377', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=377', 12, 'nav_menu_item', '', 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),
(391, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '391', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 12, 'http://localhost/originalhouse/?p=391', 8, 'nav_menu_item', '', 0),
(392, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '392', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=392', 35, 'nav_menu_item', '', 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),
(379, 1, '2011-07-06 19:29:52', '2011-07-06 19:29:52', ' ', '', '', 'publish', 'closed', 'open', '', '379', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 26, 'http://localhost/originalhouse/?p=379', 16, 'nav_menu_item', '', 0),
(121, 1, '2011-07-04 14:11:45', '2011-07-04 14:11:45', '[tubepress]', 'Vídeos', '', 'publish', 'closed', 'open', '', 'videos', '', '', '2011-07-04 14:14:21', '2011-07-04 14:14:21', '', 0, 'http://localhost/originalhouse/?page_id=121', 0, 'page', '', 0),
(122, 1, '2011-07-04 14:11:41', '2011-07-04 14:11:41', '', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision', '', '', '2011-07-04 14:11:41', '2011-07-04 14:11:41', '', 121, 'http://localhost/originalhouse/?p=122', 0, 'revision', '', 0),
(125, 1, '2011-07-04 14:14:17', '2011-07-04 14:14:17', '[tubepress]', 'Vídeos', '', 'inherit', 'closed', 'open', '', '121-revision-3', '', '', '2011-07-04 14:14:17', '2011-07-04 14:14:17', '', 121, 'http://localhost/originalhouse/?p=125', 0, 'revision', '', 0),
(130, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[userlog]', 'Your Account', '', 'trash', 'closed', 'closed', '', 'your-account', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 127, 'http://localhost/originalhouse/?page_id=130', 0, 'page', '', 0),
(209, 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!', '', 'inherit', 'closed', 'open', '', '1-revision', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 1, 'http://localhost/originalhouse/?p=209', 0, 'revision', '', 0),
(133, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_shopping_cart]', 'Shopping cart', '', 'trash', 'closed', 'open', '', 'shopping-cart', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 0, 'http://localhost/originalhouse/?page_id=133', 0, 'page', '', 0),
(134, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_checkout]', 'Checkout', '', 'trash', 'closed', 'open', '', 'checkout', '', '', '2011-07-06 19:43:06', '2011-07-06 19:43:06', '', 133, 'http://localhost/originalhouse/?page_id=134', 0, 'page', '', 0),
(501, 1, '2011-07-12 10:19:47', '2011-07-12 10:19:47', '', '9etnico', '', 'inherit', 'closed', 'open', '', '9etnico', '', '', '2011-07-12 10:19:47', '2011-07-12 10:19:47', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/9etnico.jpg', 0, 'attachment', 'image/jpeg', 0),
(136, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_shopping_cart]', 'Shopping cart', '', 'inherit', 'closed', 'open', '', '133-revision', '', '', '2011-07-04 17:27:11', '2011-07-04 17:27:11', '', 133, 'http://localhost/originalhouse/?p=136', 0, 'revision', '', 0),
(137, 1, '2011-07-04 17:27:11', '2011-07-04 17:27:11', '[tcp_checkout]', 'Checkout', '', 'inherit', 'closed', 'open', '', '134-revision', '', '', '2011-07-04 17:27:11', '2011-07-04 17:27:11', '', 134, 'http://localhost/originalhouse/?p=137', 0, 'revision', '', 0),
(371, 1, '2011-07-06 19:29:51', '2011-07-06 19:29:51', ' ', '', '', 'publish', 'closed', 'open', '', '371', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 0, 'http://localhost/originalhouse/?p=371', 21, 'nav_menu_item', '', 0),
(303, 1, '2011-07-06 16:49:34', '2011-07-06 16:49:34', '', 'CAC-599-003649', '', 'inherit', 'closed', 'open', '', 'cac-599-003649', '', '', '2011-07-06 16:49:34', '2011-07-06 16:49:34', '', 232, 'http://localhost/originalhouse/wp-content/uploads/2011/07/cac-599-003649.jpg', 0, 'attachment', 'image/jpeg', 0),
(300, 1, '2011-07-06 16:49:32', '2011-07-06 16:49:32', '', 'ARI-102247', '', 'inherit', 'closed', 'open', '', 'ari-102247', '', '', '2011-07-06 16:49:32', '2011-07-06 16:49:32', '', 229, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ari-102247.jpg', 0, 'attachment', 'image/jpeg', 0),
(301, 1, '2011-07-06 16:49:32', '2011-07-06 16:49:32', '', 'ARI-102284', '', 'inherit', 'closed', 'open', '', 'ari-102284', '', '', '2011-07-06 16:49:32', '2011-07-06 16:49:32', '', 230, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ari-102284.jpg', 0, 'attachment', 'image/jpeg', 0),
(519, 1, '2011-07-12 19:38:30', '2011-07-12 17:38:30', '', '1', '', 'publish', 'closed', 'open', '', '1', '', '', '2011-07-13 18:18:55', '2011-07-13 16:18:55', '', 0, 'http://localhost/originalhouse/?p=519', 0, 'post', '', 0),
(220, 1, '2011-07-05 18:38:01', '2011-07-05 18:38:01', 'asdasdasd', 'dasdasdas', '', 'inherit', 'closed', 'open', '', '218-autosave', '', '', '2011-07-05 18:38:01', '2011-07-05 18:38:01', '', 218, 'http://localhost/originalhouse/?p=220', 0, 'revision', '', 0),
(312, 1, '2011-07-06 16:49:42', '2011-07-06 16:49:42', '', 'IMO-35-113', '', 'inherit', 'closed', 'open', '', 'imo-35-113', '', '', '2011-07-06 16:49:42', '2011-07-06 16:49:42', '', 239, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-35-113.jpg', 0, 'attachment', 'image/jpeg', 0),
(222, 1, '2011-07-05 18:38:01', '2011-07-05 18:38:01', 'asdasdasd', 'dasdasdas', '', 'inherit', 'closed', 'open', '', '', '', '', '2011-07-05 18:38:01', '2011-07-05 18:38:01', '', 221, '', 0, 'revision', '', 0),
(223, 1, '2011-07-05 18:42:02', '2011-07-05 18:42:02', 'asdasdasd', 'ACRO-30A', '', 'inherit', 'closed', 'open', '', '221-autosave', '', '', '2011-07-05 18:42:02', '2011-07-05 18:42:02', '', 228, 'http://localhost/originalhouse/?p=223', 0, 'revision', '', 0),
(302, 1, '2011-07-06 16:49:33', '2011-07-06 16:49:33', '', 'ARI-102287', '', 'inherit', 'closed', 'open', '', 'ari-102287', '', '', '2011-07-06 16:49:33', '2011-07-06 16:49:33', '', 231, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ari-102287.jpg', 0, 'attachment', 'image/jpeg', 0),
(544, 1, '2011-07-14 11:01:38', '2011-07-14 09:01:38', '', '3', '', 'publish', 'closed', 'open', '', '3', '', '', '2011-07-14 11:02:23', '2011-07-14 09:02:23', '', 0, 'http://localhost/originalhouse/?p=544', 0, 'post', '', 0),
(307, 1, '2011-07-06 16:49:37', '2011-07-06 16:49:37', '', 'DUG-741', '', 'inherit', 'closed', 'open', '', 'dug-741', '', '', '2011-07-06 16:49:37', '2011-07-06 16:49:37', '', 236, 'http://localhost/originalhouse/wp-content/uploads/2011/07/dug-741.jpg', 0, 'attachment', 'image/jpeg', 0),
(227, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x130x45 cm', 'ACRO 66ML', '', 'publish', 'closed', 'closed', '', 'acro-66ml', '', '', '2011-07-07 10:00:56', '2011-07-07 10:00:56', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(228, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x150x45 cm', 'ACRO-30A', '', 'publish', 'closed', 'open', '', 'ACRO-30A', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 228, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(229, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '82x123x40 cm', 'ARI 102247', '', 'publish', 'closed', 'closed', '', 'ari-102247', '', '', '2011-07-07 09:33:21', '2011-07-07 09:33:21', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(230, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x146x35 cm', 'ARI 102284', '', 'publish', 'closed', 'open', '', 'ARI 102284', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 230, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(231, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '89x140x35 cm', 'ARI 102287', '', 'publish', 'closed', 'open', '', 'ARI 102287', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 231, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(232, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x165X50 cm', 'CAC 599-003649', '', 'publish', 'closed', 'open', '', 'CAC 599-003649', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 232, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(233, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x170x50 cm', 'CAC 599-004463', '', 'publish', 'closed', 'open', '', 'CAC 599-004463', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 233, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(234, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x180x40 cm', 'CAC 599-004565', '', 'publish', 'closed', 'closed', '', 'cac-599-004565', '', '', '2011-07-07 09:33:56', '2011-07-07 09:33:56', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(235, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '78x178x49 cm', 'DUG 661', '', 'publish', 'closed', 'open', '', 'DUG 661', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 235, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(236, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '78x190x50 cm', 'DUG 741', '', 'publish', 'closed', 'open', '', 'dug-741', '', '', '2011-07-06 17:57:39', '2011-07-06 17:57:39', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(237, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '78x190x50 cm', 'DUG 741 NEGRO', '', 'publish', 'closed', 'closed', '', 'dug-741-negro', '', '', '2011-07-06 17:58:19', '2011-07-06 17:58:19', '', 236, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(238, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '78x160x50 cm', 'DUG W 743', '', 'publish', 'closed', 'open', '', 'DUG W 743', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 238, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(239, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '88x140x45 cm', 'IMO 35-113', '', 'publish', 'closed', 'open', '', 'IMO 35-113', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 239, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(240, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '110x150x45 cm', 'IMO 35-126', '', 'publish', 'closed', 'open', '', 'IMO 35-126', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 240, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(241, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '110x160x43 cm', 'IMO 35-57', '', 'publish', 'closed', 'open', '', 'IMO 35-57', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 241, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(242, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x160x45 cm', 'IMO 35-81', '', 'publish', 'closed', 'open', '', 'IMO 35-81', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 242, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(243, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '95x145x45 cm', 'IMO 75-12', '', 'publish', 'closed', 'open', '', 'IMO 75-12', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 243, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(244, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '95x127x35 cm', 'IMO 75-25', '', 'publish', 'closed', 'open', '', 'IMO 75-25', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 244, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(245, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x180x45 cm', 'IMO 75-26', '', 'publish', 'closed', 'closed', '', 'imo-75-26', '', '', '2011-07-06 18:05:42', '2011-07-06 18:05:42', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(246, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '115x165x45 cm', 'IMO 75-39', '', 'publish', 'closed', 'open', '', 'IMO 75-39', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 246, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(247, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x120x40 cm', 'IMO 75-46', '', 'publish', 'closed', 'open', '', 'IMO 75-46', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 247, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(248, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x150x45 cm', 'IXI 16265', '', 'publish', 'closed', 'open', '', 'IXI 16265', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 248, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(249, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '86x160x40 cm', 'IXI 7600400', '', 'publish', 'closed', 'open', '', 'IXI 7600400', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 249, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(250, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '116x160x40 cm', 'IXI 7600500', '', 'publish', 'closed', 'open', '', 'IXI 7600500', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 250, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(251, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x120x40 cm', 'IXI 7600600', '', 'publish', 'closed', 'open', '', 'IXI 7600600', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 251, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(252, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x180x40 cm', 'KUBIK 1400', '', 'publish', 'closed', 'open', '', 'KUBIK 1400', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 252, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(253, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '100x180x42 cm', 'MIR-10700', '', 'publish', 'closed', 'open', '', 'MIR-10700', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 253, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(254, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x160x40 cm', 'MOY 145062J', '', 'publish', 'closed', 'open', '', 'MOY 145062J', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 254, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(255, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x170x40 cm', 'MOY 30950', '', 'publish', 'closed', 'open', '', 'MOY 30950', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 255, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(256, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x160x40 cm', 'MOY-145062', '', 'publish', 'closed', 'open', '', 'MOY-145062', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 256, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(257, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x150x40 cm', 'MOY-145071', '', 'publish', 'closed', 'open', '', 'MOY-145071', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 257, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(258, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '115x140x40 cm', 'MOY-14601', '', 'publish', 'closed', 'open', '', 'MOY-14601', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 258, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(259, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '75x182x45 cm', 'MOY-14608', '', 'publish', 'closed', 'open', '', 'MOY-14608', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 259, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(260, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x135x40 cm', 'MOY-30137', '', 'publish', 'closed', 'open', '', 'MOY-30137', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 260, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(261, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x160x40 cm', 'MOY-301528', '', 'publish', 'closed', 'open', '', 'MOY-301528', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 261, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(262, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x135x40 cm', 'MOY-301529', '', 'publish', 'closed', 'open', '', 'MOY-301529', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 262, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(263, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '88x160x40 cm', 'MOY-30212', '', 'publish', 'closed', 'open', '', 'MOY-30212', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 263, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(264, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x120x45 cm', 'MOY-30298', '', 'publish', 'closed', 'open', '', 'MOY-30298', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 264, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(265, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x180x45 cm', 'MOY-30313', '', 'publish', 'closed', 'open', '', 'MOY-30313', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 265, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(266, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '86x160x40 cm', 'MOY-30541', '', 'publish', 'closed', 'open', '', 'MOY-30541', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 266, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(502, 1, '2011-07-12 10:20:34', '2011-07-12 10:20:34', '', '8cosmopolita', '', 'inherit', 'closed', 'open', '', '8cosmopolita', '', '', '2011-07-12 10:20:34', '2011-07-12 10:20:34', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/8cosmopolita.jpg', 0, 'attachment', 'image/jpeg', 0),
(304, 1, '2011-07-06 16:49:35', '2011-07-06 16:49:35', '', 'CAC-599-004463', '', 'inherit', 'closed', 'open', '', 'cac-599-004463', '', '', '2011-07-06 16:49:35', '2011-07-06 16:49:35', '', 233, 'http://localhost/originalhouse/wp-content/uploads/2011/07/cac-599-004463.jpg', 0, 'attachment', 'image/jpeg', 0),
(305, 1, '2011-07-06 16:49:36', '2011-07-06 16:49:36', '', 'CAC-599-004565', '', 'inherit', 'closed', 'open', '', 'cac-599-004565', '', '', '2011-07-06 16:49:36', '2011-07-06 16:49:36', '', 234, 'http://localhost/originalhouse/wp-content/uploads/2011/07/cac-599-004565.jpg', 0, 'attachment', 'image/jpeg', 0),
(273, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '65x150x45 cm', 'OM 728', '', 'publish', 'closed', 'open', '', 'OM 728', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 273, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(272, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x170x40 cm', 'OM 706', '', 'publish', 'closed', 'open', '', 'OM 706', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 272, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(271, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x180x45 cm', 'OM 666', '', 'publish', 'closed', 'open', '', 'OM 666', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 271, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(270, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '95x180x45 cm', 'OM 627', '', 'publish', 'closed', 'open', '', 'OM 627', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 270, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(269, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '95x170x40 cm', 'OM 555', '', 'publish', 'closed', 'open', '', 'OM 555', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 269, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(306, 1, '2011-07-06 16:49:37', '2011-07-06 16:49:37', '', 'DUG-661', '', 'inherit', 'closed', 'open', '', 'dug-661', '', '', '2011-07-06 16:49:37', '2011-07-06 16:49:37', '', 235, 'http://localhost/originalhouse/wp-content/uploads/2011/07/dug-661.jpg', 0, 'attachment', 'image/jpeg', 0),
(299, 1, '2011-07-06 16:49:31', '2011-07-06 16:49:31', '', 'ACRO-66ML', '', 'inherit', 'closed', 'open', '', 'acro-66ml', '', '', '2011-07-06 16:49:31', '2011-07-06 16:49:31', '', 227, 'http://localhost/originalhouse/wp-content/uploads/2011/07/acro-66ml.jpg', 0, 'attachment', 'image/jpeg', 0),
(268, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x160x45 cm', 'MOY-30940', '', 'publish', 'closed', 'open', '', 'MOY-30940', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 268, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(267, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '116X160X40 cm', 'MOY-30550', '', 'publish', 'closed', 'open', '', 'MOY-30550', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 267, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(298, 1, '2011-07-06 16:49:30', '2011-07-06 16:49:30', '', 'ACRO-30A', '', 'inherit', 'closed', 'open', '', 'acro-30a-2', '', '', '2011-07-06 16:49:30', '2011-07-06 16:49:30', '', 228, 'http://localhost/originalhouse/wp-content/uploads/2011/07/acro-30a.jpg', 0, 'attachment', 'image/jpeg', 0),
(274, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x175x45 cm', 'OM-1150', '', 'publish', 'closed', 'open', '', 'OM-1150', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 274, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(275, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '75x150x45 cm', 'OM-1151', '', 'publish', 'closed', 'open', '', 'OM-1151', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 275, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(276, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '75x120x45 cm', 'OM-1161', '', 'publish', 'closed', 'open', '', 'OM-1161', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 276, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(277, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '70x140x40 cm', 'OM-1167', '', 'publish', 'closed', 'open', '', 'OM-1167', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 277, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(278, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x180x45 cm', 'OM-1172', '', 'publish', 'closed', 'open', '', 'OM-1172', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 278, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(279, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x200x40 cm', 'OM-732', '', 'publish', 'closed', 'open', '', 'OM-732', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 279, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(280, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x170x45 cm', 'OM-740', '', 'publish', 'closed', 'open', '', 'OM-740', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 280, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(281, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x180x50 cm', 'SOC-10077', '', 'publish', 'closed', 'open', '', 'SOC-10077', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 281, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(282, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x160x45 cm', 'SOC-10093', '', 'publish', 'closed', 'open', '', 'SOC-10093', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 282, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(283, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '90x130x40 cm', 'SP-30214', '', 'publish', 'closed', 'open', '', 'SP-30214', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 283, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(284, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '87x150x40 cm', 'SP-31440', '', 'publish', 'closed', 'open', '', 'SP-31440', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 284, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(285, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '85x150x40 cm', 'SP-31577', '', 'publish', 'closed', 'open', '', 'SP-31577', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 285, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(286, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '82x205x55 cm', 'VA-3127', '', 'publish', 'closed', 'open', '', 'VA-3127', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 286, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(287, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x170x40 cm', 'VA-8302', '', 'publish', 'closed', 'open', '', 'VA-8302', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 287, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(288, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x170x40 cm', 'VA-8316', '', 'publish', 'closed', 'open', '', 'VA-8316', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 288, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(289, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x120x38 cm', 'VIC-16224', '', 'publish', 'closed', 'open', '', 'VIC-16224', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 289, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(290, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '80x120x38 cm', 'VIC-15671', '', 'publish', 'closed', 'open', '', 'VIC-15671', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 290, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(291, 1, '2011-07-06 17:09:59', '2011-07-06 17:09:59', '78x130x40 cm', 'VIC-16205', '', 'publish', 'closed', 'open', '', 'VIC-16205', '', '', '2011-07-06 17:09:59', '2011-07-06 17:09:59', '', 291, 'http://localhost/originalhouse/?post_type=tcp_product&#038;p=214', 0, 'tcp_product', '', 0),
(313, 1, '2011-07-06 16:49:43', '2011-07-06 16:49:43', '', 'IMO-35-126', '', 'inherit', 'closed', 'open', '', 'imo-35-126', '', '', '2011-07-06 16:49:43', '2011-07-06 16:49:43', '', 240, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-35-126.jpg', 0, 'attachment', 'image/jpeg', 0),
(314, 1, '2011-07-06 16:49:43', '2011-07-06 16:49:43', '', 'IMO-75-12', '', 'inherit', 'closed', 'open', '', 'imo-75-12', '', '', '2011-07-06 16:49:43', '2011-07-06 16:49:43', '', 243, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-75-12.jpg', 0, 'attachment', 'image/jpeg', 0),
(294, 1, '2011-07-05 09:51:21', '2011-07-05 09:51:21', '82x123x40 cm', 'PRUEBA', '', 'trash', 'closed', 'closed', '', 'prueba', '', '', '2011-07-06 17:43:04', '2011-07-06 17:43:04', '', 0, 'http://localhost/originalhouse/?tcp_product=prueba', 0, 'tcp_product', '', 0),
(315, 1, '2011-07-06 16:49:44', '2011-07-06 16:49:44', '', 'IMO-75-25', '', 'inherit', 'closed', 'open', '', 'imo-75-25', '', '', '2011-07-06 16:49:44', '2011-07-06 16:49:44', '', 244, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-75-25.jpg', 0, 'attachment', 'image/jpeg', 0),
(316, 1, '2011-07-06 16:49:45', '2011-07-06 16:49:45', '', 'IMO-75-26', '', 'inherit', 'closed', 'open', '', 'imo-75-26', '', '', '2011-07-06 16:49:45', '2011-07-06 16:49:45', '', 245, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-75-26.jpg', 0, 'attachment', 'image/jpeg', 0),
(317, 1, '2011-07-06 16:49:46', '2011-07-06 16:49:46', '', 'IMO-75-39', '', 'inherit', 'closed', 'open', '', 'imo-75-39', '', '', '2011-07-06 16:49:46', '2011-07-06 16:49:46', '', 246, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-75-39.jpg', 0, 'attachment', 'image/jpeg', 0),
(318, 1, '2011-07-06 16:49:47', '2011-07-06 16:49:47', '', 'IMO-75-46', '', 'inherit', 'closed', 'open', '', 'imo-75-46', '', '', '2011-07-06 16:49:47', '2011-07-06 16:49:47', '', 247, 'http://localhost/originalhouse/wp-content/uploads/2011/07/imo-75-46.jpg', 0, 'attachment', 'image/jpeg', 0),
(319, 1, '2011-07-06 16:49:48', '2011-07-06 16:49:48', '', 'IXI-16265', '', 'inherit', 'closed', 'open', '', 'ixi-16265', '', '', '2011-07-06 16:49:48', '2011-07-06 16:49:48', '', 248, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ixi-16265.jpg', 0, 'attachment', 'image/jpeg', 0),
(320, 1, '2011-07-06 16:49:48', '2011-07-06 16:49:48', '', 'IXI-7600400', '', 'inherit', 'closed', 'open', '', 'ixi-7600400', '', '', '2011-07-06 16:49:48', '2011-07-06 16:49:48', '', 249, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ixi-7600400.jpg', 0, 'attachment', 'image/jpeg', 0),
(321, 1, '2011-07-06 16:49:49', '2011-07-06 16:49:49', '', 'IXI-7600500', '', 'inherit', 'closed', 'open', '', 'ixi-7600500', '', '', '2011-07-06 16:49:49', '2011-07-06 16:49:49', '', 250, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ixi-7600500.jpg', 0, 'attachment', 'image/jpeg', 0),
(322, 1, '2011-07-06 16:49:50', '2011-07-06 16:49:50', '', 'IXI-7600600', '', 'inherit', 'closed', 'open', '', 'ixi-7600600', '', '', '2011-07-06 16:49:50', '2011-07-06 16:49:50', '', 251, 'http://localhost/originalhouse/wp-content/uploads/2011/07/ixi-7600600.jpg', 0, 'attachment', 'image/jpeg', 0),
(323, 1, '2011-07-06 16:49:51', '2011-07-06 16:49:51', '', 'KUBIK-1400', '', 'inherit', 'closed', 'open', '', 'kubik-1400', '', '', '2011-07-06 16:49:51', '2011-07-06 16:49:51', '', 252, 'http://localhost/originalhouse/wp-content/uploads/2011/07/kubik-1400.jpg', 0, 'attachment', 'image/jpeg', 0),
(324, 1, '2011-07-06 16:49:52', '2011-07-06 16:49:52', '', 'MIR-10700', '', 'inherit', 'closed', 'open', '', 'mir-10700-2', '', '', '2011-07-06 16:49:52', '2011-07-06 16:49:52', '', 253, 'http://localhost/originalhouse/wp-content/uploads/2011/07/mir-10700.jpg', 0, 'attachment', 'image/jpeg', 0),
(325, 1, '2011-07-06 16:49:53', '2011-07-06 16:49:53', '', 'MOY-14601', '', 'inherit', 'closed', 'open', '', 'moy-14601-2', '', '', '2011-07-06 16:49:53', '2011-07-06 16:49:53', '', 258, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-14601.jpg', 0, 'attachment', 'image/jpeg', 0),
(326, 1, '2011-07-06 16:49:54', '2011-07-06 16:49:54', '', 'MOY-14608', '', 'inherit', 'closed', 'open', '', 'moy-14608-2', '', '', '2011-07-06 16:49:54', '2011-07-06 16:49:54', '', 259, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-14608.jpg', 0, 'attachment', 'image/jpeg', 0),
(327, 1, '2011-07-06 16:49:55', '2011-07-06 16:49:55', '', 'MOY-30137', '', 'inherit', 'closed', 'open', '', 'moy-30137-2', '', '', '2011-07-06 16:49:55', '2011-07-06 16:49:55', '', 260, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30137.jpg', 0, 'attachment', 'image/jpeg', 0),
(328, 1, '2011-07-06 16:49:56', '2011-07-06 16:49:56', '', 'MOY-30212', '', 'inherit', 'closed', 'open', '', 'moy-30212-2', '', '', '2011-07-06 16:49:56', '2011-07-06 16:49:56', '', 263, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30212.jpg', 0, 'attachment', 'image/jpeg', 0),
(329, 1, '2011-07-06 16:49:57', '2011-07-06 16:49:57', '', 'MOY-30298', '', 'inherit', 'closed', 'open', '', 'moy-30298-2', '', '', '2011-07-06 16:49:57', '2011-07-06 16:49:57', '', 264, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30298.jpg', 0, 'attachment', 'image/jpeg', 0),
(330, 1, '2011-07-06 16:49:58', '2011-07-06 16:49:58', '', 'MOY-30313', '', 'inherit', 'closed', 'open', '', 'moy-30313-2', '', '', '2011-07-06 16:49:58', '2011-07-06 16:49:58', '', 265, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30313.jpg', 0, 'attachment', 'image/jpeg', 0),
(331, 1, '2011-07-06 16:49:59', '2011-07-06 16:49:59', '', 'MOY-30541', '', 'inherit', 'closed', 'open', '', 'moy-30541-2', '', '', '2011-07-06 16:49:59', '2011-07-06 16:49:59', '', 266, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30541.jpg', 0, 'attachment', 'image/jpeg', 0),
(332, 1, '2011-07-06 16:50:00', '2011-07-06 16:50:00', '', 'MOY-30550', '', 'inherit', 'closed', 'open', '', 'moy-30550-2', '', '', '2011-07-06 16:50:00', '2011-07-06 16:50:00', '', 267, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30550.jpg', 0, 'attachment', 'image/jpeg', 0),
(333, 1, '2011-07-06 16:50:01', '2011-07-06 16:50:01', '', 'MOY-30940', '', 'inherit', 'closed', 'open', '', 'moy-30940-2', '', '', '2011-07-06 16:50:01', '2011-07-06 16:50:01', '', 268, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30940.jpg', 0, 'attachment', 'image/jpeg', 0),
(334, 1, '2011-07-06 16:50:02', '2011-07-06 16:50:02', '', 'MOY-30950', '', 'inherit', 'closed', 'open', '', 'moy-30950', '', '', '2011-07-06 16:50:02', '2011-07-06 16:50:02', '', 255, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-30950.jpg', 0, 'attachment', 'image/jpeg', 0),
(335, 1, '2011-07-06 16:50:03', '2011-07-06 16:50:03', '', 'MOY-145062', '', 'inherit', 'closed', 'open', '', 'moy-145062-2', '', '', '2011-07-06 16:50:03', '2011-07-06 16:50:03', '', 256, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-145062.jpg', 0, 'attachment', 'image/jpeg', 0),
(336, 1, '2011-07-06 16:50:04', '2011-07-06 16:50:04', '', 'MOY-145062J', '', 'inherit', 'closed', 'open', '', 'moy-145062j', '', '', '2011-07-06 16:50:04', '2011-07-06 16:50:04', '', 254, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-145062j.jpg', 0, 'attachment', 'image/jpeg', 0),
(337, 1, '2011-07-06 16:50:05', '2011-07-06 16:50:05', '', 'MOY-145071', '', 'inherit', 'closed', 'open', '', 'moy-145071-2', '', '', '2011-07-06 16:50:05', '2011-07-06 16:50:05', '', 257, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-145071.jpg', 0, 'attachment', 'image/jpeg', 0),
(338, 1, '2011-07-06 16:50:06', '2011-07-06 16:50:06', '', 'MOY-301528', '', 'inherit', 'closed', 'open', '', 'moy-301528-2', '', '', '2011-07-06 16:50:06', '2011-07-06 16:50:06', '', 261, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-301528.jpg', 0, 'attachment', 'image/jpeg', 0),
(339, 1, '2011-07-06 16:50:07', '2011-07-06 16:50:07', '', 'MOY-301529', '', 'inherit', 'closed', 'open', '', 'moy-301529-2', '', '', '2011-07-06 16:50:07', '2011-07-06 16:50:07', '', 262, 'http://localhost/originalhouse/wp-content/uploads/2011/07/moy-301529.jpg', 0, 'attachment', 'image/jpeg', 0),
(340, 1, '2011-07-06 16:50:08', '2011-07-06 16:50:08', '', 'OM-555', '', 'inherit', 'closed', 'open', '', 'om-555', '', '', '2011-07-06 16:50:08', '2011-07-06 16:50:08', '', 269, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-555.jpg', 0, 'attachment', 'image/jpeg', 0),
(341, 1, '2011-07-06 16:50:09', '2011-07-06 16:50:09', '', 'OM-627', '', 'inherit', 'closed', 'open', '', 'om-627', '', '', '2011-07-06 16:50:09', '2011-07-06 16:50:09', '', 270, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-627.jpg', 0, 'attachment', 'image/jpeg', 0),
(342, 1, '2011-07-06 16:50:11', '2011-07-06 16:50:11', '', 'OM-666', '', 'inherit', 'closed', 'open', '', 'om-666', '', '', '2011-07-06 16:50:11', '2011-07-06 16:50:11', '', 271, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-666.jpg', 0, 'attachment', 'image/jpeg', 0),
(343, 1, '2011-07-06 16:50:12', '2011-07-06 16:50:12', '', 'OM-706', '', 'inherit', 'closed', 'open', '', 'om-706', '', '', '2011-07-06 16:50:12', '2011-07-06 16:50:12', '', 272, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-706.jpg', 0, 'attachment', 'image/jpeg', 0),
(344, 1, '2011-07-06 16:50:13', '2011-07-06 16:50:13', '', 'OM-728', '', 'inherit', 'closed', 'open', '', 'om-728', '', '', '2011-07-06 16:50:13', '2011-07-06 16:50:13', '', 273, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-728.jpg', 0, 'attachment', 'image/jpeg', 0),
(345, 1, '2011-07-06 16:50:14', '2011-07-06 16:50:14', '', 'OM-732', '', 'inherit', 'closed', 'open', '', 'om-732-2', '', '', '2011-07-06 16:50:14', '2011-07-06 16:50:14', '', 279, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-732.jpg', 0, 'attachment', 'image/jpeg', 0),
(346, 1, '2011-07-06 16:50:15', '2011-07-06 16:50:15', '', 'OM-740', '', 'inherit', 'closed', 'open', '', 'om-740-2', '', '', '2011-07-06 16:50:15', '2011-07-06 16:50:15', '', 280, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-740.jpg', 0, 'attachment', 'image/jpeg', 0),
(347, 1, '2011-07-06 16:50:16', '2011-07-06 16:50:16', '', 'OM-1150', '', 'inherit', 'closed', 'open', '', 'om-1150-2', '', '', '2011-07-06 16:50:16', '2011-07-06 16:50:16', '', 274, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-1150.jpg', 0, 'attachment', 'image/jpeg', 0),
(348, 1, '2011-07-06 16:50:17', '2011-07-06 16:50:17', '', 'OM-1151', '', 'inherit', 'closed', 'open', '', 'om-1151-2', '', '', '2011-07-06 16:50:17', '2011-07-06 16:50:17', '', 275, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-1151.jpg', 0, 'attachment', 'image/jpeg', 0),
(349, 1, '2011-07-06 16:50:18', '2011-07-06 16:50:18', '', 'OM-1161', '', 'inherit', 'closed', 'open', '', 'om-1161-2', '', '', '2011-07-06 16:50:18', '2011-07-06 16:50:18', '', 276, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-1161.jpg', 0, 'attachment', 'image/jpeg', 0),
(350, 1, '2011-07-06 16:50:19', '2011-07-06 16:50:19', '', 'OM-1167', '', 'inherit', 'closed', 'open', '', 'om-1167-2', '', '', '2011-07-06 16:50:19', '2011-07-06 16:50:19', '', 277, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-1167.jpg', 0, 'attachment', 'image/jpeg', 0),
(351, 1, '2011-07-06 16:50:20', '2011-07-06 16:50:20', '', 'OM-1172', '', 'inherit', 'closed', 'open', '', 'om-1172-2', '', '', '2011-07-06 16:50:20', '2011-07-06 16:50:20', '', 278, 'http://localhost/originalhouse/wp-content/uploads/2011/07/om-1172.jpg', 0, 'attachment', 'image/jpeg', 0),
(352, 1, '2011-07-06 16:50:21', '2011-07-06 16:50:21', '', 'SOC-10077', '', 'inherit', 'closed', 'open', '', 'soc-10077-2', '', '', '2011-07-06 16:50:21', '2011-07-06 16:50:21', '', 281, 'http://localhost/originalhouse/wp-content/uploads/2011/07/soc-10077.jpg', 0, 'attachment', 'image/jpeg', 0),
(353, 1, '2011-07-06 16:50:22', '2011-07-06 16:50:22', '', 'SOC-10093', '', 'inherit', 'closed', 'open', '', 'soc-10093-2', '', '', '2011-07-06 16:50:22', '2011-07-06 16:50:22', '', 282, 'http://localhost/originalhouse/wp-content/uploads/2011/07/soc-10093.jpg', 0, 'attachment', 'image/jpeg', 0),
(354, 1, '2011-07-06 16:50:23', '2011-07-06 16:50:23', '', 'SP-30214', '', 'inherit', 'closed', 'open', '', 'sp-30214-2', '', '', '2011-07-06 16:50:23', '2011-07-06 16:50:23', '', 283, 'http://localhost/originalhouse/wp-content/uploads/2011/07/sp-30214.jpg', 0, 'attachment', 'image/jpeg', 0),
(355, 1, '2011-07-06 16:50:24', '2011-07-06 16:50:24', '', 'SP-31440', '', 'inherit', 'closed', 'open', '', 'sp-31440-2', '', '', '2011-07-06 16:50:24', '2011-07-06 16:50:24', '', 284, 'http://localhost/originalhouse/wp-content/uploads/2011/07/sp-31440.jpg', 0, 'attachment', 'image/jpeg', 0),
(356, 1, '2011-07-06 16:50:25', '2011-07-06 16:50:25', '', 'SP-31577', '', 'inherit', 'closed', 'open', '', 'sp-31577-2', '', '', '2011-07-06 16:50:25', '2011-07-06 16:50:25', '', 285, 'http://localhost/originalhouse/wp-content/uploads/2011/07/sp-31577.jpg', 0, 'attachment', 'image/jpeg', 0),
(357, 1, '2011-07-06 16:50:26', '2011-07-06 16:50:26', '', 'VA-3127', '', 'inherit', 'closed', 'open', '', 'va-3127-2', '', '', '2011-07-06 16:50:26', '2011-07-06 16:50:26', '', 286, 'http://localhost/originalhouse/wp-content/uploads/2011/07/va-3127.jpg', 0, 'attachment', 'image/jpeg', 0),
(358, 1, '2011-07-06 16:50:27', '2011-07-06 16:50:27', '', 'VA-8302', '', 'inherit', 'closed', 'open', '', 'va-8302-2', '', '', '2011-07-06 16:50:27', '2011-07-06 16:50:27', '', 287, 'http://localhost/originalhouse/wp-content/uploads/2011/07/va-8302.jpg', 0, 'attachment', 'image/jpeg', 0),
(359, 1, '2011-07-06 16:50:28', '2011-07-06 16:50:28', '', 'VA-8316', '', 'inherit', 'closed', 'open', '', 'va-8316-2', '', '', '2011-07-06 16:50:28', '2011-07-06 16:50:28', '', 288, 'http://localhost/originalhouse/wp-content/uploads/2011/07/va-8316.jpg', 0, 'attachment', 'image/jpeg', 0),
(360, 1, '2011-07-06 16:50:29', '2011-07-06 16:50:29', '', 'VIC-15671', '', 'inherit', 'closed', 'open', '', 'vic-15671-2', '', '', '2011-07-06 16:50:29', '2011-07-06 16:50:29', '', 290, 'http://localhost/originalhouse/wp-content/uploads/2011/07/vic-15671.jpg', 0, 'attachment', 'image/jpeg', 0),
(361, 1, '2011-07-06 16:50:30', '2011-07-06 16:50:30', '', 'VIC-16205', '', 'inherit', 'closed', 'open', '', 'vic-16205-2', '', '', '2011-07-06 16:50:30', '2011-07-06 16:50:30', '', 291, 'http://localhost/originalhouse/wp-content/uploads/2011/07/vic-16205.jpg', 0, 'attachment', 'image/jpeg', 0),
(362, 1, '2011-07-06 16:50:31', '2011-07-06 16:50:31', '', 'VIC-16224', '', 'inherit', 'closed', 'open', '', 'vic-16224-2', '', '', '2011-07-06 16:50:31', '2011-07-06 16:50:31', '', 289, 'http://localhost/originalhouse/wp-content/uploads/2011/07/vic-16224.jpg', 0, 'attachment', 'image/jpeg', 0),
(415, 1, '2011-07-06 19:44:07', '2011-07-06 19:44:07', '', 'Cartelera', '', 'trash', 'closed', 'open', '', 'cartelera', '', '', '2011-07-12 13:12:42', '2011-07-12 11:12:42', '', 0, 'http://localhost/originalhouse/?page_id=415', 0, 'page', '', 0),
(363, 1, '2011-07-12 17:17:58', '2011-07-12 15:17:58', '85x130x45 cm', 'ACRO 66ML', '', 'inherit', 'closed', 'open', '', '227-autosave', '', '', '2011-07-12 17:17:58', '2011-07-12 15:17:58', '', 227, 'http://localhost/originalhouse/?p=363', 0, 'revision', '', 0),
(364, 1, '2011-07-06 17:04:39', '2011-07-06 17:04:39', '', 'ACRO-66ML', '', 'inherit', 'closed', 'open', '', 'acro-66ml-2', '', '', '2011-07-06 17:04:39', '2011-07-06 17:04:39', '', 227, 'http://localhost/originalhouse/wp-content/uploads/2011/07/acro-66ml1.jpg', 0, 'attachment', 'image/jpeg', 0),
(366, 1, '2011-07-06 17:09:41', '2011-07-06 17:09:41', '90x150x45 cm', 'ACRO-30A', '', 'inherit', 'closed', 'open', '', '228-autosave', '', '', '2011-07-06 17:09:41', '2011-07-06 17:09:41', '', 228, 'http://localhost/originalhouse/?p=366', 0, 'revision', '', 0),
(367, 1, '2011-07-06 17:20:13', '2011-07-06 17:20:13', '82x123x40 cm', 'PRUEBA', '', 'inherit', 'closed', 'open', '', '294-autosave', '', '', '2011-07-06 17:20:13', '2011-07-06 17:20:13', '', 294, 'http://localhost/originalhouse/?p=367', 0, 'revision', '', 0),
(368, 1, '2011-07-06 17:59:22', '2011-07-06 17:59:22', '78x190x50 cm', 'DUG 741 NEGRO', '', 'inherit', 'closed', 'open', '', '237-autosave', '', '', '2011-07-06 17:59:22', '2011-07-06 17:59:22', '', 237, 'http://localhost/originalhouse/?p=368', 0, 'revision', '', 0),
(369, 1, '2011-07-06 18:06:44', '2011-07-06 18:06:44', '80x180x45 cm', 'IMO 75-26', '', 'inherit', 'closed', 'open', '', '245-autosave', '', '', '2011-07-06 18:06:44', '2011-07-06 18:06:44', '', 245, 'http://localhost/originalhouse/?p=369', 0, 'revision', '', 0),
(448, 1, '2011-07-11 16:35:13', '2011-07-11 16:35:13', '', 'Muebles', '', 'publish', 'closed', 'open', '', 'muebles', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 0, 'http://localhost/originalhouse/?p=448', 2, 'nav_menu_item', '', 0);
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
(399, 1, '2011-07-06 19:41:48', '2011-07-06 19:41:48', ' ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\r\n REFORMA DE INTERIORES.\r\n TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\r\n ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\r\n ROTACIÓN CONSTANTE DE ARTÍCULOS.\r\n FINANCIACIÓN A 6 MESES SIN INTERESES.\r\n ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.\r\n', '', '', 'publish', 'closed', 'open', '', '399', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=399', 37, 'nav_menu_item', '', 0),
(400, 1, '2011-07-06 19:41:49', '2011-07-06 19:41:49', '[tubepress]', '', '', 'publish', 'closed', 'open', '', '400', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=400', 39, 'nav_menu_item', '', 0),
(401, 1, '2011-06-30 12:29:16', '2011-06-30 12:29:16', '<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', '', 'inherit', 'closed', 'open', '', '61-revision-13', '', '', '2011-06-30 12:29:16', '2011-06-30 12:29:16', '', 61, 'http://localhost/originalhouse/?p=401', 0, 'revision', '', 0),
(402, 1, '2011-06-29 20:00:14', '2011-06-29 20:00:14', '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', '', 'inherit', 'closed', 'open', '', '88-revision-3', '', '', '2011-06-29 20:00:14', '2011-06-29 20:00:14', '', 88, 'http://localhost/originalhouse/?p=402', 0, 'revision', '', 0),
(403, 1, '2011-06-29 19:55:41', '2011-06-29 19:55:41', '<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-3', '', '', '2011-06-29 19:55:41', '2011-06-29 19:55:41', '', 82, 'http://localhost/originalhouse/?p=403', 0, 'revision', '', 0),
(404, 1, '2011-07-06 19:42:47', '0000-00-00 00:00:00', '\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 decoración más personal.\r\n 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.\r\n Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.\r\n 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.\r\n Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a\r\n\r\n&nbsp;\r\n\r\n\r\nBIENVENIDOS\r\n&nbsp;', '', '', 'draft', 'closed', 'open', '', '', '', '', '2011-07-06 19:42:47', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?p=404', 1, 'nav_menu_item', '', 0),
(405, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[productspage]', 'Products Page', '', 'inherit', 'closed', 'open', '', '127-revision', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?p=405', 0, 'revision', '', 0),
(406, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[shoppingcart]', 'Checkout', '', 'inherit', 'closed', 'open', '', '128-revision', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 128, 'http://localhost/originalhouse/?p=406', 0, 'revision', '', 0),
(407, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[transactionresults]', 'Transaction Results', '', 'inherit', 'closed', 'open', '', '129-revision', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 129, 'http://localhost/originalhouse/?p=407', 0, 'revision', '', 0),
(408, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[userlog]', 'Your Account', '', 'inherit', 'closed', 'open', '', '130-revision', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 130, 'http://localhost/originalhouse/?p=408', 0, 'revision', '', 0),
(409, 1, '2011-07-04 17:27:54', '2011-07-04 17:27:54', '[tcp_shopping_cart]', 'Shopping cart', '', 'inherit', 'closed', 'open', '', '133-revision-2', '', '', '2011-07-04 17:27:54', '2011-07-04 17:27:54', '', 133, 'http://localhost/originalhouse/?p=409', 0, 'revision', '', 0),
(410, 1, '2011-07-04 17:27:54', '2011-07-04 17:27:54', '[tcp_checkout]', 'Checkout', '', 'inherit', 'closed', 'open', '', '134-revision-2', '', '', '2011-07-04 17:27:54', '2011-07-04 17:27:54', '', 134, 'http://localhost/originalhouse/?p=410', 0, 'revision', '', 0),
(411, 1, '2011-06-29 16:34:05', '2011-06-29 16:34:05', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-13', '', '', '2011-06-29 16:34:05', '2011-06-29 16:34:05', '', 44, 'http://localhost/originalhouse/?p=411', 0, 'revision', '', 0),
(412, 1, '2011-07-06 19:42:07', '2011-07-06 19:42:07', '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', '', 'inherit', 'closed', 'open', '', '88-revision-4', '', '', '2011-07-06 19:42:07', '2011-07-06 19:42:07', '', 88, 'http://localhost/originalhouse/?p=412', 0, 'revision', '', 0),
(413, 1, '2011-07-06 19:43:57', '2011-07-06 19:43:57', '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: originalhouse@originalhouse.info\r\n\r\n \r\n\r\n \r\n\r\n ', '', '', 'publish', 'closed', 'open', '', '413', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=413', 44, 'nav_menu_item', '', 0),
(414, 1, '2011-07-06 19:43:57', '2011-07-06 19:43:57', ' 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.\r\n 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.\r\n Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.\r\n 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.\r\n Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a\r\n\r\n \r\n\r\n\r\nBIENVENIDOS\r\n ', '', '', 'publish', 'closed', 'open', '', '414', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=414', 41, 'nav_menu_item', '', 0),
(416, 1, '2011-07-06 19:44:06', '2011-07-06 19:44:06', '', 'Cartelera', '', 'inherit', 'closed', 'open', '', '415-revision', '', '', '2011-07-06 19:44:06', '2011-07-06 19:44:06', '', 415, 'http://localhost/originalhouse/?p=416', 0, 'revision', '', 0),
(515, 1, '2011-07-12 13:21:59', '2011-07-12 11:21:59', '', 'Mesas', '', 'publish', 'closed', 'open', '', 'mesas', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 0, 'http://localhost/originalhouse/?p=515', 3, 'nav_menu_item', '', 0),
(418, 1, '2011-07-07 09:34:24', '2011-07-07 09:34:24', '82x123x40 cm', 'ARI 102247', '', 'inherit', 'closed', 'open', '', '229-autosave', '', '', '2011-07-07 09:34:24', '2011-07-07 09:34:24', '', 229, 'http://localhost/originalhouse/?p=418', 0, 'revision', '', 0),
(419, 1, '2011-07-07 09:34:59', '2011-07-07 09:34:59', '80x180x40 cm', 'CAC 599-004565', '', 'inherit', 'closed', 'open', '', '234-autosave', '', '', '2011-07-07 09:34:59', '2011-07-07 09:34:59', '', 234, 'http://localhost/originalhouse/?p=419', 0, 'revision', '', 0),
(420, 1, '2011-07-06 19:41:59', '2011-07-06 19:41:59', '<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;', 'Acerca de', '', 'inherit', 'closed', 'open', '', '61-revision-14', '', '', '2011-07-06 19:41:59', '2011-07-06 19:41:59', '', 61, 'http://localhost/originalhouse/?p=420', 0, 'revision', '', 0),
(422, 1, '2011-06-29 20:13:18', '2011-06-29 20:13:18', '[catablog template="gallery"]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-4', '', '', '2011-06-29 20:13:18', '2011-06-29 20:13:18', '', 96, 'http://localhost/originalhouse/?p=422', 0, 'revision', '', 0),
(424, 1, '2011-07-06 19:42:21', '2011-07-06 19:42:21', '<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-4', '', '', '2011-07-06 19:42:21', '2011-07-06 19:42:21', '', 82, 'http://localhost/originalhouse/?p=424', 0, 'revision', '', 0),
(425, 1, '2011-07-07 11:46:43', '2011-07-07 11:46:43', '<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;"></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;', 'Acerca de', '', 'inherit', 'closed', 'open', '', '61-revision-15', '', '', '2011-07-07 11:46:43', '2011-07-07 11:46:43', '', 61, 'http://localhost/originalhouse/?p=425', 0, 'revision', '', 0),
(427, 1, '2011-07-07 12:11:25', '2011-07-07 12:11:25', '', 'logo-rojo', '', 'inherit', 'closed', 'open', '', 'logo-rojo-3', '', '', '2011-07-07 12:11:25', '2011-07-07 12:11:25', '', 61, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png', 0, 'attachment', 'image/png', 0),
(428, 1, '2011-07-07 12:08:17', '2011-07-07 12:08:17', '<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;"><img class="aligncenter size-medium wp-image-113" title="Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.gif" alt="" width="300" height="76" /></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'Acerca de', '', 'inherit', 'closed', 'open', '', '61-revision-16', '', '', '2011-07-07 12:08:17', '2011-07-07 12:08:17', '', 61, 'http://localhost/originalhouse/?p=428', 0, 'revision', '', 0),
(450, 1, '2011-07-11 17:09:25', '2011-07-11 17:09:25', ' ', '', '', 'publish', 'closed', 'open', '', '450', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=450', 36, 'nav_menu_item', '', 0),
(429, 1, '2011-07-06 19:43:15', '2011-07-06 19:43:15', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-14', '', '', '2011-07-06 19:43:15', '2011-07-06 19:43:15', '', 44, 'http://localhost/originalhouse/?p=429', 0, 'revision', '', 0),
(430, 1, '2011-07-07 12:23:31', '2011-07-07 12:23:31', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-15', '', '', '2011-07-07 12:23:31', '2011-07-07 12:23:31', '', 44, 'http://localhost/originalhouse/?p=430', 0, 'revision', '', 0),
(432, 1, '2011-07-07 12:23:57', '2011-07-07 12:23:57', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-16', '', '', '2011-07-07 12:23:57', '2011-07-07 12:23:57', '', 44, 'http://localhost/originalhouse/?p=432', 0, 'revision', '', 0),
(433, 1, '2011-07-07 12:42:21', '2011-07-07 12:42:21', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-17', '', '', '2011-07-07 12:42:21', '2011-07-07 12:42:21', '', 44, 'http://localhost/originalhouse/?p=433', 0, 'revision', '', 0),
(434, 1, '2011-07-07 12:43:36', '2011-07-07 12:43:36', '', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-18', '', '', '2011-07-07 12:43:36', '2011-07-07 12:43:36', '', 44, 'http://localhost/originalhouse/?p=434', 0, 'revision', '', 0),
(435, 1, '2011-07-07 12:48:36', '2011-07-07 12:48:36', '[jQuery Slider]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-19', '', '', '2011-07-07 12:48:36', '2011-07-07 12:48:36', '', 44, 'http://localhost/originalhouse/?p=435', 0, 'revision', '', 0),
(436, 1, '2011-07-13 12:40:54', '2011-07-13 10:40:54', '[jQuery Slider]\n\n[audio]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-autosave', '', '', '2011-07-13 12:40:54', '2011-07-13 10:40:54', '', 44, 'http://localhost/originalhouse/?p=436', 0, 'revision', '', 0),
(499, 1, '2011-07-12 10:19:02', '2011-07-12 10:19:02', '', '11exotico', '', 'inherit', 'closed', 'open', '', '11exotico', '', '', '2011-07-12 10:19:02', '2011-07-12 10:19:02', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/11exotico.jpg', 0, 'attachment', 'image/jpeg', 0),
(545, 1, '2011-07-14 11:01:30', '2011-07-14 09:01:30', '', '3', '', 'inherit', 'closed', 'open', '', '3', '', '', '2011-07-14 11:01:30', '2011-07-14 09:01:30', '', 544, 'http://localhost/originalhouse/wp-content/uploads/2011/07/3.jpg', 0, 'attachment', 'image/jpeg', 0),
(498, 1, '2011-07-12 10:18:34', '2011-07-12 10:18:34', '', '12exterior', '', 'inherit', 'closed', 'open', '', '12exterior', '', '', '2011-07-12 10:18:34', '2011-07-12 10:18:34', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/12exterior.jpg', 0, 'attachment', 'image/jpeg', 0),
(542, 1, '2011-07-12 19:48:10', '2011-07-12 17:48:10', '', '2', '', 'inherit', 'closed', 'open', '', '522-revision-3', '', '', '2011-07-12 19:48:10', '2011-07-12 17:48:10', '', 522, 'http://localhost/originalhouse/?p=542', 0, 'revision', '', 0),
(543, 1, '2011-07-13 18:18:44', '2011-07-13 16:18:44', '', '1', '', 'inherit', 'closed', 'open', '', '519-revision-3', '', '', '2011-07-13 18:18:44', '2011-07-13 16:18:44', '', 519, 'http://localhost/originalhouse/?p=543', 0, 'revision', '', 0),
(500, 1, '2011-07-12 10:19:26', '2011-07-12 10:19:26', '', '10vanguardista', '', 'inherit', 'closed', 'open', '', '10vanguardista', '', '', '2011-07-12 10:19:26', '2011-07-12 10:19:26', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/10vanguardista.jpg', 0, 'attachment', 'image/jpeg', 0),
(444, 1, '2011-07-07 12:04:22', '2011-07-07 12:04:22', '<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-5', '', '', '2011-07-07 12:04:22', '2011-07-07 12:04:22', '', 82, 'http://localhost/originalhouse/?p=444', 0, 'revision', '', 0),
(445, 1, '2011-07-07 12:11:38', '2011-07-07 12:11:38', '<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<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\r\n<p style="text-align: center;"></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'Acerca de', '', 'inherit', 'closed', 'open', '', '61-revision-17', '', '', '2011-07-07 12:11:38', '2011-07-07 12:11:38', '', 61, 'http://localhost/originalhouse/?p=445', 0, 'revision', '', 0),
(446, 1, '2011-07-11 16:34:08', '2011-07-11 16:34:08', '', 'Acerca de', '', 'publish', 'closed', 'open', '', 'acerca-de', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=446', 40, 'nav_menu_item', '', 0),
(447, 1, '2011-07-11 16:34:07', '2011-07-11 16:34:07', '', 'Catálogo', '', 'publish', 'closed', 'open', '', 'catalogo', '', '', '2011-07-14 12:00:07', '2011-07-14 10:00:07', '', 0, 'http://localhost/originalhouse/?p=447', 1, 'nav_menu_item', '', 0),
(451, 1, '2011-07-07 12:04:18', '2011-07-07 12:04:18', '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;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-6', '', '', '2011-07-07 12:04:18', '2011-07-07 12:04:18', '', 88, 'http://localhost/originalhouse/?p=451', 0, 'revision', '', 0),
(452, 1, '2011-07-11 17:10:43', '2011-07-11 17:10:43', 'C/ RODRIGUEZ SAN PEDRO, 40\r\n28015 - MADRID\r\nMETRO:ARGUELLES\r\nBUS: 2, 16, 21, 61, 202\r\n\r\nPARKING FRENTE A LA TIENDA\r\nTFNO: 91 543 30 96\r\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-7', '', '', '2011-07-11 17:10:43', '2011-07-11 17:10:43', '', 88, 'http://localhost/originalhouse/?p=452', 0, 'revision', '', 0),
(453, 1, '2011-07-11 17:11:35', '2011-07-11 17:11:35', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-8', '', '', '2011-07-11 17:11:35', '2011-07-11 17:11:35', '', 88, 'http://localhost/originalhouse/?p=453', 0, 'revision', '', 0),
(454, 1, '2011-07-11 17:13:28', '2011-07-11 17:13:28', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n\r\nAbierto de lunes a viernes de 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y de 18:00h a 20:30h.\r\nEn julio y agosto, sábados por la tarde cerrado.', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-9', '', '', '2011-07-11 17:13:28', '2011-07-11 17:13:28', '', 88, 'http://localhost/originalhouse/?p=454', 0, 'revision', '', 0),
(455, 1, '2011-07-11 17:08:19', '2011-07-11 17:08:19', '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.\r\n\r\nConsideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, huimos de la venta fría por Internet y por eso hemos hecho de esta web un catálogo con más de 3.000 referencias. Por la gran rotación y exclusividad de nuestros artículos puede que de alguno  de ellos no quedasen existencias.\r\n\r\nHemos 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.\r\n\r\nTener una casa de ensueño no tiene por qué ser caro y además podrás financiar tus compras a 6 meses sin intereses.\r\n<div><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.png"><img class="aligncenter size-medium wp-image-427" title="logo-rojo" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo-300x76.png" alt="" width="300" height="76" /></a></div>\r\n<p style="text-align: center; font-size: 25px;">BIENVENIDOS</p>\r\n', 'La tienda', '', 'inherit', 'closed', 'open', '', '61-revision-19', '', '', '2011-07-11 17:08:19', '2011-07-11 17:08:19', '', 61, 'http://localhost/originalhouse/?p=455', 0, 'revision', '', 0),
(457, 1, '2011-07-11 17:13:50', '2011-07-11 17:13:50', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n\r\nAbierto de lunes a viernes \r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y \r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados \r\npor la tarde cerrado.', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-10', '', '', '2011-07-11 17:13:50', '2011-07-11 17:13:50', '', 88, 'http://localhost/originalhouse/?p=457', 0, 'revision', '', 0),
(458, 1, '2011-07-11 17:16:02', '2011-07-11 17:16:02', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-11', '', '', '2011-07-11 17:16:02', '2011-07-11 17:16:02', '', 88, 'http://localhost/originalhouse/?p=458', 0, 'revision', '', 0),
(459, 1, '2011-07-11 17:18:12', '2011-07-11 17:18:12', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-12', '', '', '2011-07-11 17:18:12', '2011-07-11 17:18:12', '', 88, 'http://localhost/originalhouse/?p=459', 0, 'revision', '', 0),
(460, 1, '2011-07-11 17:20:44', '2011-07-11 17:20:44', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-13', '', '', '2011-07-11 17:20:44', '2011-07-11 17:20:44', '', 88, 'http://localhost/originalhouse/?p=460', 0, 'revision', '', 0),
(461, 1, '2011-07-11 17:24:27', '2011-07-11 17:24:27', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="map8" z="5" address="Tokyo, Japan" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-14', '', '', '2011-07-11 17:24:27', '2011-07-11 17:24:27', '', 88, 'http://localhost/originalhouse/?p=461', 0, 'revision', '', 0),
(462, 1, '2011-07-11 17:24:55', '2011-07-11 17:24:55', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="map8" z="5" address=" Rodríguez San Pedro, 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-15', '', '', '2011-07-11 17:24:55', '2011-07-11 17:24:55', '', 88, 'http://localhost/originalhouse/?p=462', 0, 'revision', '', 0),
(463, 1, '2011-07-11 17:25:03', '2011-07-11 17:25:03', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="5" address=" Rodríguez San Pedro, 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-16', '', '', '2011-07-11 17:25:03', '2011-07-11 17:25:03', '', 88, 'http://localhost/originalhouse/?p=463', 0, 'revision', '', 0),
(464, 1, '2011-07-11 17:25:19', '2011-07-11 17:25:19', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="5" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-17', '', '', '2011-07-11 17:25:19', '2011-07-11 17:25:19', '', 88, 'http://localhost/originalhouse/?p=464', 0, 'revision', '', 0),
(518, 1, '2011-07-12 19:36:56', '2011-07-12 17:36:56', '', 'favicon', '', 'inherit', 'closed', 'open', '', 'favicon', '', '', '2011-07-12 19:36:56', '2011-07-12 17:36:56', '', 24, 'http://localhost/originalhouse/wp-content/uploads/2011/06/favicon.ico', 0, 'attachment', 'image/x-icon', 0),
(465, 1, '2011-07-11 17:25:44', '2011-07-11 17:25:44', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="10" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-18', '', '', '2011-07-11 17:25:44', '2011-07-11 17:25:44', '', 88, 'http://localhost/originalhouse/?p=465', 0, 'revision', '', 0),
(466, 1, '2011-07-11 17:25:54', '2011-07-11 17:25:54', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="15" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-19', '', '', '2011-07-11 17:25:54', '2011-07-11 17:25:54', '', 88, 'http://localhost/originalhouse/?p=466', 0, 'revision', '', 0),
(467, 1, '2011-07-11 17:26:08', '2011-07-11 17:26:08', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-20', '', '', '2011-07-11 17:26:08', '2011-07-11 17:26:08', '', 88, 'http://localhost/originalhouse/?p=467', 0, 'revision', '', 0),
(468, 1, '2011-07-11 17:33:05', '2011-07-11 17:33:05', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes" infowindow="<strong>Original House</strong>"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-21', '', '', '2011-07-11 17:33:05', '2011-07-11 17:33:05', '', 88, 'http://localhost/originalhouse/?p=468', 0, 'revision', '', 0),
(470, 1, '2011-07-12 09:04:48', '2011-07-12 09:04:48', ' ', '', '', 'publish', 'closed', 'open', '', '470', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=470', 42, 'nav_menu_item', '', 0),
(469, 1, '2011-07-11 17:33:54', '2011-07-11 17:33:54', 'C/ Rodríguez San Pedro, 40\r\n28015 - Madrid\r\nMetro: Arguelles\r\nBus: 2, 16, 21, 61, 202\r\nParking frente a la tienda\r\n\r\nTfno: 91 543 30 96\r\nE-mail: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\nAbierto de lunes a viernes\r\nde 10:30h a 14:00h y de 17:30h a 21:00h.\r\nSábados de 11:00h a 14:00h y\r\nde 18:00h a 20:30h.\r\nEn julio y agosto, sábados\r\npor la tarde cerrado.\r\n\r\n<span style="font-family: Consolas, Monaco, monospace;"><span class="Apple-style-span" style="font-size: 12px; line-height: 18px; white-space: pre;">[map id="mapa" z="16" address="Rodríguez San Pedro 40, madrid, españa" marker="yes" infowindow="<strong>Original House</strong><br/>C/ Rodríguez San Pedro, 40 - 28015, Madrid<br/>Tfno: 91 543 30 96"]\r\n</span></span>\r\n\r\n&nbsp;', 'Contacto', '', 'inherit', 'closed', 'open', '', '88-revision-22', '', '', '2011-07-11 17:33:54', '2011-07-11 17:33:54', '', 88, 'http://localhost/originalhouse/?p=469', 0, 'revision', '', 0),
(471, 1, '2011-07-12 09:04:48', '2011-07-12 09:04:48', ' ', '', '', 'publish', 'closed', 'open', '', '471', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=471', 43, 'nav_menu_item', '', 0),
(503, 1, '2011-07-12 10:20:51', '2011-07-12 10:20:51', '', '7eclectico', '', 'inherit', 'closed', 'open', '', '7eclectico', '', '', '2011-07-12 10:20:51', '2011-07-12 10:20:51', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/7eclectico.jpg', 0, 'attachment', 'image/jpeg', 0),
(504, 1, '2011-07-12 10:21:40', '2011-07-12 10:21:40', '', '6colonial', '', 'inherit', 'closed', 'open', '', '6colonial', '', '', '2011-07-12 10:21:40', '2011-07-12 10:21:40', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/6colonial.jpg', 0, 'attachment', 'image/jpeg', 0),
(505, 1, '2011-07-12 10:22:18', '2011-07-12 10:22:18', '', '5lounge', '', 'inherit', 'closed', 'open', '', '5lounge', '', '', '2011-07-12 10:22:18', '2011-07-12 10:22:18', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/5lounge.jpg', 0, 'attachment', 'image/jpeg', 0),
(508, 1, '2011-07-12 10:23:34', '2011-07-12 10:23:34', '', '3vintage', '', 'inherit', 'closed', 'open', '', '3vintage', '', '', '2011-07-12 10:23:34', '2011-07-12 10:23:34', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/3vintage.jpg', 0, 'attachment', 'image/jpeg', 0),
(507, 1, '2011-07-12 10:22:52', '2011-07-12 10:22:52', '', '4contemporaneo', '', 'inherit', 'closed', 'open', '', '4contemporaneo', '', '', '2011-07-12 10:22:52', '2011-07-12 10:22:52', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/4contemporaneo.jpg', 0, 'attachment', 'image/jpeg', 0),
(554, 1, '2011-07-14 11:28:49', '2011-07-14 09:28:49', '', '2', '', 'inherit', 'closed', 'open', '', '553-revision', '', '', '2011-07-14 11:28:49', '2011-07-14 09:28:49', '', 553, 'http://localhost/originalhouse/?p=554', 0, 'revision', '', 0),
(509, 1, '2011-07-12 10:23:45', '2011-07-12 10:23:45', '', '2airezen', '', 'inherit', 'closed', 'open', '', '2airezen', '', '', '2011-07-12 10:23:45', '2011-07-12 10:23:45', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/2airezen.jpg', 0, 'attachment', 'image/jpeg', 0),
(552, 1, '2011-07-14 11:28:27', '2011-07-14 09:28:27', '', '3', '', 'inherit', 'closed', 'open', '', '551-revision', '', '', '2011-07-14 11:28:27', '2011-07-14 09:28:27', '', 551, 'http://localhost/originalhouse/?p=552', 0, 'revision', '', 0),
(553, 1, '2011-07-14 11:28:49', '2011-07-14 09:28:49', '', '6', '', 'publish', 'closed', 'open', '', '2-2', '', '', '2011-07-14 11:28:59', '2011-07-14 09:28:59', '', 0, 'http://localhost/originalhouse/?p=553', 0, 'post', '', 0),
(510, 1, '2011-07-12 10:23:57', '2011-07-12 10:23:57', '', '1presentacion', '', 'inherit', 'closed', 'open', '', '1presentacion', '', '', '2011-07-12 10:23:57', '2011-07-12 10:23:57', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/1presentacion.jpg', 0, 'attachment', 'image/jpeg', 0),
(555, 1, '2011-07-14 11:28:53', '2011-07-14 09:28:53', '', '2', '', 'inherit', 'closed', 'open', '', '553-revision-2', '', '', '2011-07-14 11:28:53', '2011-07-14 09:28:53', '', 553, 'http://localhost/originalhouse/?p=555', 0, 'revision', '', 0),
(556, 1, '2011-07-14 11:29:15', '2011-07-14 09:29:15', '', '7', '', 'publish', 'closed', 'open', '', '7', '', '', '2011-07-14 11:29:20', '2011-07-14 09:29:20', '', 0, 'http://localhost/originalhouse/?p=556', 0, 'post', '', 0),
(557, 1, '2011-07-14 11:29:15', '2011-07-14 09:29:15', '', '6', '', 'inherit', 'closed', 'open', '', '556-revision', '', '', '2011-07-14 11:29:15', '2011-07-14 09:29:15', '', 556, 'http://localhost/originalhouse/?p=557', 0, 'revision', '', 0),
(488, 1, '2011-07-12 09:54:30', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2011-07-12 09:54:30', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=slide&p=488', 0, 'slide', '', 0),
(551, 1, '2011-07-14 11:28:27', '2011-07-14 09:28:27', '', '5', '', 'publish', 'closed', 'open', '', '5', '', '', '2011-07-14 11:28:36', '2011-07-14 09:28:36', '', 0, 'http://localhost/originalhouse/?p=551', 0, 'post', '', 0),
(550, 1, '2011-07-14 11:01:38', '2011-07-14 09:01:38', '', '3', '', 'inherit', 'closed', 'open', '', '544-revision-2', '', '', '2011-07-14 11:01:38', '2011-07-14 09:01:38', '', 544, 'http://localhost/originalhouse/?p=550', 0, 'revision', '', 0),
(549, 1, '2011-07-14 11:01:57', '2011-07-14 09:01:57', '', '4', '', 'inherit', 'closed', 'open', '', '547-revision-2', '', '', '2011-07-14 11:01:57', '2011-07-14 09:01:57', '', 547, 'http://localhost/originalhouse/?p=549', 0, 'revision', '', 0),
(548, 1, '2011-07-14 11:01:42', '2011-07-14 09:01:42', '', 'Borrador automático', '', 'inherit', 'closed', 'open', '', '547-revision', '', '', '2011-07-14 11:01:42', '2011-07-14 09:01:42', '', 547, 'http://localhost/originalhouse/?p=548', 0, 'revision', '', 0),
(547, 1, '2011-07-14 11:01:57', '2011-07-14 09:01:57', '', '4', '', 'publish', 'closed', 'open', '', '4', '', '', '2011-07-14 11:02:11', '2011-07-14 09:02:11', '', 0, 'http://localhost/originalhouse/?p=547', 0, 'post', '', 0),
(512, 1, '2011-07-12 12:51:42', '2011-07-12 10:51:42', '', 'Logo Original House (rojo con efecto)', '', 'inherit', 'closed', 'open', '', 'logo-rojo-4', '', '', '2011-07-12 12:51:42', '2011-07-12 10:51:42', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo2.gif', 0, 'attachment', 'image/gif', 0),
(546, 1, '2011-07-14 11:01:10', '2011-07-14 09:01:10', '', 'Borrador automático', '', 'inherit', 'closed', 'open', '', '544-revision', '', '', '2011-07-14 11:01:10', '2011-07-14 09:01:10', '', 544, 'http://localhost/originalhouse/?p=546', 0, 'revision', '', 0),
(513, 1, '2011-07-07 12:03:41', '2011-07-07 12:03:41', '', 'Cartelera', '', 'inherit', 'closed', 'open', '', '415-revision-3', '', '', '2011-07-07 12:03:41', '2011-07-07 12:03:41', '', 415, 'http://localhost/originalhouse/?p=513', 0, 'revision', '', 0),
(514, 1, '2011-07-12 13:13:13', '2011-07-12 11:13:13', ' ', '', '', 'publish', 'closed', 'open', '', '514', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 0, 'http://localhost/originalhouse/?p=514', 38, 'nav_menu_item', '', 0),
(521, 1, '2011-07-12 19:38:11', '2011-07-12 17:38:11', '', '1', '', 'inherit', 'closed', 'open', '', '519-revision', '', '', '2011-07-12 19:38:11', '2011-07-12 17:38:11', '', 519, 'http://localhost/originalhouse/?p=521', 0, 'revision', '', 0),
(522, 1, '2011-07-12 19:47:41', '2011-07-12 17:47:41', '', '2', '', 'publish', 'closed', 'open', '', '2', '', '', '2011-07-13 18:18:51', '2011-07-13 16:18:51', '', 0, 'http://localhost/originalhouse/?p=522', 0, 'post', '', 0),
(523, 1, '2011-07-12 19:47:31', '2011-07-12 17:47:31', '', '2', '', 'inherit', 'closed', 'open', '', '2-3', '', '', '2011-07-12 19:47:31', '2011-07-12 17:47:31', '', 522, 'http://localhost/originalhouse/wp-content/uploads/2011/07/2.jpg', 0, 'attachment', 'image/jpeg', 0),
(524, 1, '2011-07-12 19:47:25', '2011-07-12 17:47:25', '', '2', '', 'inherit', 'closed', 'open', '', '522-revision', '', '', '2011-07-12 19:47:25', '2011-07-12 17:47:25', '', 522, 'http://localhost/originalhouse/?p=524', 0, 'revision', '', 0),
(525, 1, '2011-07-12 19:47:41', '2011-07-12 17:47:41', '', '2', '', 'inherit', 'closed', 'open', '', '522-revision-2', '', '', '2011-07-12 19:47:41', '2011-07-12 17:47:41', '', 522, 'http://localhost/originalhouse/?p=525', 0, 'revision', '', 0),
(526, 1, '2011-07-07 12:49:10', '2011-07-07 12:49:10', '[jQuery Slider]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-20', '', '', '2011-07-07 12:49:10', '2011-07-07 12:49:10', '', 44, 'http://localhost/originalhouse/?p=526', 0, 'revision', '', 0),
(528, 1, '2011-07-13 11:21:51', '2011-07-13 09:21:51', '[jQuery Slider]\r\n\r\n[audio]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-21', '', '', '2011-07-13 11:21:51', '2011-07-13 09:21:51', '', 44, 'http://localhost/originalhouse/?p=528', 0, 'revision', '', 0),
(529, 1, '2011-07-13 12:46:57', '2011-07-13 10:46:57', '[jQuery Slider]\r\n\r\n[mp3j track="intro.mp3"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-22', '', '', '2011-07-13 12:46:57', '2011-07-13 10:46:57', '', 44, 'http://localhost/originalhouse/?p=529', 0, 'revision', '', 0),
(530, 1, '2011-07-13 12:47:54', '2011-07-13 10:47:54', '[jQuery Slider]\r\n\r\n[mp3j track="intro.mp3" autoplay="y" loop="n" vol="80"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-23', '', '', '2011-07-13 12:47:54', '2011-07-13 10:47:54', '', 44, 'http://localhost/originalhouse/?p=530', 0, 'revision', '', 0),
(532, 1, '2011-07-13 13:20:33', '2011-07-13 11:20:33', '', 'intro', '', 'inherit', 'closed', 'open', '', 'intro-2', '', '', '2011-07-13 13:20:33', '2011-07-13 11:20:33', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/07/intro.ogg', 0, 'attachment', 'audio/ogg', 0),
(533, 1, '2011-07-13 12:50:33', '2011-07-13 10:50:33', '[jQuery Slider]\r\n[mp3j track="intro.mp3" autoplay="y" loop="n" vol="80"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-24', '', '', '2011-07-13 12:50:33', '2011-07-13 10:50:33', '', 44, 'http://localhost/originalhouse/?p=533', 0, 'revision', '', 0),
(536, 1, '2011-07-13 13:42:57', '2011-07-13 11:42:57', '[jQuery Slider]\r\n[mp3j track="intro.mp3" autoplay="y" loop="n" vol="70"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-27', '', '', '2011-07-13 13:42:57', '2011-07-13 11:42:57', '', 44, 'http://192.168.0.2/originalhouse/?p=536', 0, 'revision', '', 0),
(534, 1, '2011-07-13 13:31:47', '2011-07-13 11:31:47', '[jQuery Slider]\r\n[mp3-jplayer tracks="intro.mp3" autoplay="y" loop="n" vol="80"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-25', '', '', '2011-07-13 13:31:47', '2011-07-13 11:31:47', '', 44, 'http://192.168.0.2/originalhouse/?p=534', 0, 'revision', '', 0),
(535, 1, '2011-07-13 13:42:44', '2011-07-13 11:42:44', '[jQuery Slider]\r\n[mp3-jplayer tracks="intro.mp3" autoplay="y" loop="n" vol="70"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-26', '', '', '2011-07-13 13:42:44', '2011-07-13 11:42:44', '', 44, 'http://192.168.0.2/originalhouse/?p=535', 0, 'revision', '', 0),
(537, 1, '2011-07-13 13:43:23', '2011-07-13 11:43:23', '[jQuery Slider]\r\n[mp3j track="intro.mp3" autoplay="y" loop="n" vol="60"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-28', '', '', '2011-07-13 13:43:23', '2011-07-13 11:43:23', '', 44, 'http://192.168.0.2/originalhouse/?p=537', 0, 'revision', '', 0),
(538, 1, '2011-07-13 13:45:32', '2011-07-13 11:45:32', '[jQuery Slider]\r\n[mp3j track="intro.mp3" caption="" autoplay="y" loop="n" vol="60"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-29', '', '', '2011-07-13 13:45:32', '2011-07-13 11:45:32', '', 44, 'http://192.168.0.2/originalhouse/?p=538', 0, 'revision', '', 0),
(539, 1, '2011-07-13 13:46:01', '2011-07-13 11:46:01', '[jQuery Slider]\r\n[mp3j track="intro.mp3" caption="" autoplay="y" loop="n" vol="60"]', 'Inicio', '', 'inherit', 'closed', 'open', '', '44-revision-30', '', '', '2011-07-13 13:46:01', '2011-07-13 11:46:01', '', 44, 'http://192.168.0.2/originalhouse/?p=539', 0, 'revision', '', 0),
(541, 1, '2011-07-12 19:38:30', '2011-07-12 17:38:30', '', '1', '', 'inherit', 'closed', 'open', '', '519-revision-2', '', '', '2011-07-12 19:38:30', '2011-07-12 17:38:30', '', 519, 'http://localhost/originalhouse/?p=541', 0, 'revision', '', 0),
(558, 1, '2011-07-14 11:29:41', '2011-07-14 09:29:41', '', '9', '', 'publish', 'closed', 'open', '', '9', '', '', '2011-07-14 11:31:35', '2011-07-14 09:31:35', '', 0, 'http://localhost/originalhouse/?p=558', 0, 'post', '', 0),
(559, 1, '2011-07-14 11:30:45', '2011-07-14 09:30:45', '', '8', '', 'publish', 'closed', 'open', '', '8', '', '', '2011-07-14 11:30:55', '2011-07-14 09:30:55', '', 0, 'http://localhost/originalhouse/?p=559', 0, 'post', '', 0);
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
(560, 1, '2011-07-14 11:30:45', '2011-07-14 09:30:45', '', '7', '', 'inherit', 'closed', 'open', '', '559-revision', '', '', '2011-07-14 11:30:45', '2011-07-14 09:30:45', '', 559, 'http://localhost/originalhouse/?p=560', 0, 'revision', '', 0),
(561, 1, '2011-07-14 11:29:41', '2011-07-14 09:29:41', '', '7', '', 'inherit', 'closed', 'open', '', '558-revision', '', '', '2011-07-14 11:29:41', '2011-07-14 09:29:41', '', 558, 'http://localhost/originalhouse/?p=561', 0, 'revision', '', 0),
(562, 1, '2011-07-14 11:31:39', '2011-07-14 09:31:39', '', '10', '', 'publish', 'closed', 'open', '', '10', '', '', '2011-07-14 11:31:48', '2011-07-14 09:31:48', '', 0, 'http://localhost/originalhouse/?p=562', 0, 'post', '', 0),
(563, 1, '2011-07-14 11:31:39', '2011-07-14 09:31:39', '', '8', '', 'inherit', 'closed', 'open', '', '562-revision', '', '', '2011-07-14 11:31:39', '2011-07-14 09:31:39', '', 562, 'http://localhost/originalhouse/?p=563', 0, 'revision', '', 0),
(564, 1, '2011-07-14 11:31:52', '2011-07-14 09:31:52', '', '11', '', 'publish', 'closed', 'open', '', '11', '', '', '2011-07-14 11:31:58', '2011-07-14 09:31:58', '', 0, 'http://localhost/originalhouse/?p=564', 0, 'post', '', 0),
(565, 1, '2011-07-14 11:31:52', '2011-07-14 09:31:52', '', '10', '', 'inherit', 'closed', 'open', '', '564-revision', '', '', '2011-07-14 11:31:52', '2011-07-14 09:31:52', '', 564, 'http://localhost/originalhouse/?p=565', 0, 'revision', '', 0),
(566, 1, '2011-07-14 11:32:02', '2011-07-14 09:32:02', '', '12', '', 'publish', 'closed', 'open', '', '12', '', '', '2011-07-14 11:32:09', '2011-07-14 09:32:09', '', 0, 'http://localhost/originalhouse/?p=566', 0, 'post', '', 0),
(567, 1, '2011-07-14 11:32:02', '2011-07-14 09:32:02', '', '11', '', 'inherit', 'closed', 'open', '', '566-revision', '', '', '2011-07-14 11:32:02', '2011-07-14 09:32:02', '', 566, 'http://localhost/originalhouse/?p=567', 0, 'revision', '', 0),
(568, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 'Iluminación', '', 'publish', 'closed', 'open', '', 'iluminacion', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 0, 'http://localhost/originalhouse/?p=568', 22, 'nav_menu_item', '', 0),
(569, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 'Decoración', '', 'publish', 'closed', 'open', '', 'decoracion', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 0, 'http://localhost/originalhouse/?p=569', 26, 'nav_menu_item', '', 0),
(570, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '570', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=570', 27, 'nav_menu_item', '', 0),
(571, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '571', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=571', 28, 'nav_menu_item', '', 0),
(572, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '572', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=572', 29, 'nav_menu_item', '', 0),
(573, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '573', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=573', 30, 'nav_menu_item', '', 0),
(574, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '574', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=574', 31, 'nav_menu_item', '', 0),
(575, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '575', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=575', 32, 'nav_menu_item', '', 0),
(576, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 'Regalos & Varios', '', 'publish', 'closed', 'open', '', 'regalos-varios', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 15, 'http://localhost/originalhouse/?p=576', 33, 'nav_menu_item', '', 0),
(577, 1, '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 'Velas & Aromaterapia', '', 'publish', 'closed', 'open', '', 'velas-aromaterapia', '', '', '2011-07-14 12:00:09', '2011-07-14 10:00:09', '', 15, 'http://localhost/originalhouse/?p=577', 34, 'nav_menu_item', '', 0),
(578, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '578', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 14, 'http://localhost/originalhouse/?p=578', 23, 'nav_menu_item', '', 0),
(579, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '579', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 14, 'http://localhost/originalhouse/?p=579', 24, 'nav_menu_item', '', 0),
(580, 1, '2011-07-14 12:00:08', '2011-07-14 10:00:08', ' ', '', '', 'publish', 'closed', 'open', '', '580', '', '', '2011-07-14 12:00:08', '2011-07-14 10:00:08', '', 14, 'http://localhost/originalhouse/?p=580', 25, 'nav_menu_item', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_addresses`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_addresses` (
`address_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint(20) unsigned NOT NULL,
`default_shipping` char(1) NOT NULL COMMENT 'Y->yes',
`default_billing` char(1) NOT NULL COMMENT 'Y->yes',
`name` varchar(250) NOT NULL,
`firstname` varchar(50) NOT NULL,
`lastname` varchar(100) NOT NULL,
`company` varchar(50) NOT NULL,
`street` varchar(100) NOT NULL,
`city` varchar(100) NOT NULL,
`city_id` char(4) NOT NULL DEFAULT '',
`region` varchar(100) NOT NULL,
`region_id` char(2) NOT NULL DEFAULT '',
`postcode` char(6) NOT NULL,
`country_id` char(2) NOT NULL,
`telephone_1` varchar(50) NOT NULL,
`telephone_2` varchar(50) NOT NULL,
`fax` varchar(50) NOT NULL,
`email` varchar(255) NOT NULL,
PRIMARY KEY (`address_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Addresses' AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_addresses`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_countries`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_countries` (
`iso` char(2) NOT NULL,
`name` varchar(50) NOT NULL,
`en` varchar(50) NOT NULL,
`es` varchar(50) NOT NULL,
`de` varchar(50) NOT NULL,
`fr` varchar(50) NOT NULL,
`iso3` char(3) NOT NULL,
`code` int(4) NOT NULL,
`ue` int(1) NOT NULL,
`nue` int(1) NOT NULL,
`re` int(1) NOT NULL,
PRIMARY KEY (`iso`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_countries`
--
INSERT INTO `wp_tcp_countries` (`iso`, `name`, `en`, `es`, `de`, `fr`, `iso3`, `code`, `ue`, `nue`, `re`) VALUES
('AD', 'ANDORRA', 'ANDORRA', 'ANDORRA', 'ANDORRA', 'ANDORRE', 'AND', 20, 0, 0, 1),
('AE', 'UNITED ARAB EMIRATES', 'UNITED ARAB EMIRATES', 'EMIRATOS ÁRABES UNIDOS', 'VEREINIGTE ARABISCHE EMIRATE', 'ÉMIRATS ARABES UNIS', 'ARE', 784, 0, 0, 0),
('AF', 'AFGHANISTAN', 'AFGHANISTAN', 'AFGHANISTÁN', 'Afghanistan', 'Afghanistan', 'AFG', 4, 0, 0, 0),
('AG', 'ANTIGUA AND BARBUDA', 'ANTIGUA AND BARBUDA', 'ANTIGUA Y BARBUDA', 'ANTIGUA UND BARBUDA', 'ANTIGUA ET BARBUDA', 'ATG', 28, 0, 0, 0),
('AI', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'ANGUILLA', 'AIA', 660, 0, 0, 0),
('AL', 'ALBANIA', 'ALBANIA', 'ALBANIA', 'ALBANIEN', 'ALBANIE', 'ALB', 8, 0, 0, 1),
('AM', 'ARMENIA', 'ARMENIA', 'ARMENIA', 'ARMENIEN', 'ARMÉNIE', 'ARM', 51, 0, 0, 0),
('AN', 'NETHERLANDS ANTILLES', 'NETHERLANDS ANTILLES', 'ANTILLAS HOLANDESAS', 'NIEDERLÄNDISCHE ANTILLEN', 'ANTILLES NÉERLANDAISES', 'ANT', 530, 1, 0, 1),
('AO', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'ANGOLA', 'AGO', 24, 0, 0, 0),
('AQ', 'ANTARCTICA', 'ANTARCTICA', 'ANTÁRTIDA', 'ANTARKTIS', 'ANTARCTIQUE', '', 0, 0, 0, 0),
('AR', 'ARGENTINA', 'ARGENTINA', 'ARGENTINA', 'ARGENTINIEN', 'ARGENTINE', 'ARG', 32, 0, 0, 0),
('AS', 'AMERICAN SAMOA', 'AMERICAN SAMOA', 'SAMOA AMERICANA', 'AMERIKANISCHE SAMOA', 'SAMOA AMÉRICAINES', 'ASM', 16, 0, 0, 0),
('AT', 'AUSTRIA', 'AUSTRIA', 'AUSTRIA', 'ÖSTERREICH', 'AUTRICHE', 'AUT', 40, 1, 0, 1),
('AU', 'AUSTRALIA', 'AUSTRALIA', 'AUSTRALIA', 'AUSTRALIEN', 'AUSTRALIE', 'AUS', 36, 0, 0, 0),
('AW', 'ARUBA', 'ARUBA', 'ARUBA', 'ARUBA', 'ARUBA', 'ABW', 533, 0, 0, 0),
('AZ', 'AZERBAIJAN', 'AZERBAIJAN', 'AZERBAIYÁN', 'ASERBAIDSCHAN', 'AZERBAÏDJAN', 'AZE', 31, 0, 0, 0),
('BA', 'BOSNIA AND HERZEGOVINA', 'BOSNIA AND HERZEGOVINA', 'BOSNIA Y HERZEGOVINA', 'BOSNIEN UND HERZEGOWINA', 'BOSNIE-HERZÉGOVINE', 'BIH', 70, 0, 0, 1),
('BB', 'BARBADOS', 'BARBADOS', 'BARBADOS', 'BARBADOS', 'BARBADE', 'BRB', 52, 0, 0, 0),
('BD', 'BANGLADESH', 'BANGLADESH', 'BANGLADESH', 'BANGLADESCH', 'BANGLADESH', 'BGD', 50, 0, 0, 0),
('BE', 'BELGIUM', 'BELGIUM', 'BÉLGICA', 'BELGIEN', 'BELGIQUE', 'BEL', 56, 1, 0, 1),
('BF', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BURKINA FASO', 'BFA', 854, 0, 0, 0),
('BG', 'BULGARIA', 'BULGARIA', 'BULGARIA', 'BULGARIEN', 'BULGARIE', 'BGR', 100, 1, 0, 1),
('BH', 'BAHRAIN', 'BAHRAIN', 'BAHRÉIN', 'BAHRAIN', 'BAHREÏN', 'BHR', 48, 0, 0, 0),
('BI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BURUNDI', 'BDI', 108, 0, 0, 0),
('BJ', 'BENIN', 'BENIN', 'BENIN', 'BENIN', 'BÉNIN', 'BEN', 204, 0, 0, 0),
('BM', 'BERMUDA', 'BERMUDA', 'BERMUDAS', 'BERMUDA', 'BERMUDES', 'BMU', 60, 0, 0, 0),
('BN', 'BRUNEI DARUSSALAM', 'BRUNEI DARUSSALAM', 'BRUNÉI', 'BRUNEI', 'BRUNÉI DARUSSALAM', 'BRN', 96, 0, 0, 0),
('BO', 'BOLIVIA', 'BOLIVIA', 'BOLIVIA', 'BOLIVIEN', 'BOLIVIE', 'BOL', 68, 0, 0, 0),
('BR', 'BRAZIL', 'BRAZIL', 'BRASIL', 'BRASILIEN', 'BRÉSIL', 'BRA', 76, 0, 0, 0),
('BS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BAHAMAS', 'BHS', 44, 0, 0, 0),
('BT', 'BHUTAN', 'BHUTAN', 'BHUTÁN', 'BHUTAN', 'BHOUTAN', 'BTN', 64, 0, 0, 0),
('BV', 'BOUVET ISLAND', 'BOUVET ISLAND', 'ISLA BOUVET', 'BOUVET INSEL', 'BOUVET, ÎLE', '', 0, 0, 0, 0),
('BW', 'BOTSWANA', 'BOTSWANA', 'BOTSUANA', 'BOTSWANA', 'BOTSWANA', 'BWA', 72, 0, 0, 0),
('BY', 'BELARUS', 'BELARUS', 'BIELORRUSIA', 'WEIßRUSSLAND', 'BÉLARUS', 'BLR', 112, 0, 0, 0),
('BZ', 'BELIZE', 'BELIZE', 'BELICE', 'BELIZE', 'BELIZE', 'BLZ', 84, 0, 0, 0),
('CA', 'CANADA', 'CANADA', 'CANADÁ', 'KANADA', 'CANADA', 'CAN', 124, 0, 0, 0),
('CC', 'COCOS (KEELING) ISLANDS', 'COCOS (KEELING) ISLANDS', 'ISLAS COCOS', 'KOKOSINSELN', 'COCOS (KEELING); ÎLES', 'CCK', 166, 0, 0, 0),
('CD', 'CONGO, THE DEMOCRATIC REPUBLIC OF THE', 'CONGO, THE DEMOCRATIC REPUBLIC OF THE', 'REPÚBLICA DEMOCRÁTICA DEL CONGO', 'KONGO (DEM. REP.)', 'CONGO, LA RÉPUBLIQUE DÉMOCRATIQUE DU', 'COD', 180, 0, 0, 0),
('CF', 'CENTRAL AFRICAN REPUBLIC', 'CENTRAL AFRICAN REPUBLIC', 'REPÚBLICA CENTROAFRICANA', 'ZENTRALAFRIKANISCHE REPUBLIK', 'CENTRAFRICAINE, RÉPUBLIQUE', 'CAF', 140, 0, 0, 0),
('CG', 'CONGO', 'CONGO', 'CONGO', 'KONGO', 'CONGO', 'COG', 178, 0, 0, 0),
('CH', 'SWITZERLAND', 'SWITZERLAND', 'SUIZA', 'SCHWEIZ', 'SUISSE', 'CHE', 756, 0, 1, 0),
('CI', 'COTE D`IVOIRE', 'COTE D`IVOIRE', 'COSTA DE MARFIL', 'ELFENBEINKÜSTE', 'COTE D`IVOIRE', 'CIV', 384, 0, 0, 0),
('CK', 'COOK ISLANDS', 'COOK ISLANDS', 'ISLAS COOK', 'COOKINSELN', 'COOK, ÎLES', 'COK', 184, 0, 0, 0),
('CL', 'CHILE', 'CHILE', 'CHILE', 'CHILE', 'CHILI', 'CHL', 152, 0, 0, 0),
('CM', 'CAMEROON', 'CAMEROON', 'CAMERÚN', 'KAMERUN', 'CAMEROUN', 'CMR', 120, 0, 0, 0),
('CN', 'CHINA', 'CHINA', 'CHINA', 'CHINA', 'CHINE', 'CHN', 156, 0, 0, 0),
('CO', 'COLOMBIA', 'COLOMBIA', 'COLOMBIA', 'KOLUMBIEN', 'COLOMBIE', 'COL', 170, 0, 0, 0),
('CR', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'COSTA RICA', 'CRI', 188, 0, 0, 0),
('CS', 'SERBIA AND MONTENEGRO', 'SERBIA AND MONTENEGRO', 'SERBIA Y MONTENEGRO', 'SERBIEN UND MONTENEGRO', 'SERBIE-ET-MONTÉNEGRO', '', 0, 0, 0, 1),
('CU', 'CUBA', 'CUBA', 'CUBA', 'KUBA', 'CUBA', 'CUB', 192, 0, 0, 0),
('CV', 'CAPE VERDE', 'CAPE VERDE', 'CABO VERDE', 'KAP VERDE', 'CAP-VERT', 'CPV', 132, 0, 0, 0),
('CX', 'CHRISTMAS ISLAND', 'CHRISTMAS ISLAND', 'ISLA DE NAVIDAD', 'CHRISTMAS INSEL', 'CHRISTMAS, ÎLE', 'CXR', 162, 0, 0, 0),
('CY', 'CYPRUS', 'CYPRUS', 'CHIPRE', 'ZYPERN', 'CHYPRE', 'CYP', 196, 0, 0, 0),
('CZ', 'CZECH REPUBLIC', 'CZECH REPUBLIC', 'REPÚBLICA CHECA', 'TSCHECHISCHE REPUBLIK', 'TCHÍšQUE, RÉPUBLIQUE', 'CZE', 203, 0, 0, 1),
('DE', 'GERMANY', 'GERMANY', 'ALEMANIA', 'DEUTSCHLAND', 'ALLEMAGNE', 'DEU', 276, 1, 0, 1),
('DJ', 'DJIBOUTI', 'DJIBOUTI', 'YIBUTI', 'DJIBOUTI', 'DJIBOUTI', 'DJI', 262, 0, 0, 0),
('DK', 'DENMARK', 'DENMARK', 'DINAMARCA', 'DÄNEMARK', 'DANEMARK', 'DNK', 208, 1, 0, 1),
('DM', 'DOMINICA', 'DOMINICA', 'DOMINICA', 'DOMINICA', 'DOMINIQUE', 'DMA', 212, 0, 0, 0),
('DO', 'DOMINICAN REPUBLIC', 'DOMINICAN REPUBLIC', 'REPÚBLICA DOMINICANA', 'DOMINIKANISCHE REPUBLIK', 'DOMINICAINE, RÉPUBLIQUE', 'DOM', 214, 0, 0, 0),
('EC', 'ECUADOR', 'ECUADOR', 'ECUADOR', 'ECUADOR', 'ÉQUATEUR', 'ECU', 218, 0, 0, 0),
('EE', 'ESTONIA', 'ESTONIA', 'ESTONIA', 'ESTLAND', 'ESTONIE', 'EST', 233, 0, 0, 0),
('EG', 'EGYPT', 'EGYPT', 'EGIPTO', 'ÄGYPTEN', 'ÉGYPTE', 'EGY', 818, 0, 0, 0),
('EH', 'WESTERN SAHARA', 'WESTERN SAHARA', 'SAHARA OCCIDENTAL', 'WESTSAHARA', 'SAHARA OCCIDENTAL', 'ESH', 732, 0, 0, 0),
('ER', 'ERITREA', 'ERITREA', 'ERITREA', 'ERITREA', 'ÉRYTHRÉE', 'ERI', 232, 0, 0, 0),
('ES', 'SPAIN', 'SPAIN', 'ESPAÑA', 'SPANIEN', 'ESPAGNE', 'ESP', 724, 1, 0, 1),
('ET', 'ETHIOPIA', 'ETHIOPIA', 'ETIOPÍA', 'ÄTHIOPIEN', 'ÉTHIOPIE', 'ETH', 231, 0, 0, 0),
('FI', 'FINLAND', 'FINLAND', 'FINLANDIA', 'FINNLAND', 'FINLANDE', 'FIN', 246, 0, 1, 0),
('FJ', 'FIJI', 'FIJI', 'FIYI', 'FIDSCHI', 'FIDJI', 'FJI', 242, 0, 0, 0),
('FK', 'FALKLAND ISLANDS (MALVINAS)', 'FALKLAND ISLANDS (MALVINAS)', 'ISLAS MALVINAS', 'FALKLANDINSELN', 'FALKLAND, ÎLES (MALVINAS)', 'FLK', 238, 0, 0, 0),
('FM', 'MICRONESIA, FEDERATED STATES OF', 'MICRONESIA, FEDERATED STATES OF', 'MICRONESIA', 'MIKRONESIEN', 'MICRONÉSIE, ÉTATS FÉDÉRÉS DE', 'FSM', 583, 0, 0, 0),
('FO', 'FAROE ISLANDS', 'FAROE ISLANDS', 'ISLAS FEROE', 'FÄRÖER-INSELN', 'FÉROÉ, ÎLES', 'FRO', 234, 0, 0, 0),
('FR', 'FRANCE', 'FRANCE', 'FRANCIA', 'FRANKREICH', 'FRANCE', 'FRA', 250, 1, 0, 1),
('GA', 'GABON', 'GABON', 'GABÓN', 'GABUN', 'GABON', 'GAB', 266, 0, 0, 0),
('GB', 'UNITED KINGDOM', 'UNITED KINGDOM', 'REINO UNIDO', 'GROßBRITANNIEN', 'ROYAUME-UNI', 'GBR', 826, 1, 0, 1),
('GD', 'GRENADA', 'GRENADA', 'GRANADA', 'GRENADA', 'GRENADE', 'GRD', 308, 0, 0, 0),
('GE', 'GEORGIA', 'GEORGIA', 'GEORGIA', 'GEORGIEN', 'GÉORGIE', 'GEO', 268, 0, 0, 0),
('GF', 'FRENCH GUIANA', 'FRENCH GUIANA', 'GUAYANA FRANCESA', 'FRANZÖSISCH GUYANA', 'GUYANE FRANͧAISE', 'GUF', 254, 0, 0, 0),
('GH', 'GHANA', 'GHANA', 'GHANA', 'GHANA', 'GHANA', 'GHA', 288, 0, 0, 0),
('GI', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIBRALTAR', 'GIB', 292, 1, 0, 1),
('GL', 'GREENLAND', 'GREENLAND', 'GROENLANDIA', 'GRÖNLAND', 'GROENLAND', 'GRL', 304, 0, 0, 0),
('GM', 'GAMBIA', 'GAMBIA', 'GAMBIA', 'GAMBIA', 'GAMBIE', 'GMB', 270, 0, 0, 0),
('GN', 'GUINEA', 'GUINEA', 'GUINEA', 'GUINEA', 'GUINÉE', 'GIN', 324, 0, 0, 0),
('GP', 'GUADELOUPE', 'GUADELOUPE', 'GUADALUPE', 'GUADELOUPE', 'GUADELOUPE', 'GLP', 312, 0, 0, 0),
('GQ', 'EQUATORIAL GUINEA', 'EQUATORIAL GUINEA', 'GUINEA ECUATORIAL', 'ÄQUATORIAL-GUINEA', 'GUINÉE ÉQUATORIALE', 'GNQ', 226, 0, 0, 0),
('GR', 'GREECE', 'GREECE', 'GRECIA', 'GRIECHENLAND', 'GRÍšCE', 'GRC', 300, 1, 0, 1),
('GS', 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', 'SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS', 'ISLAS GEORGIAS DEL SUR Y SANDWICH DEL SUR', 'SÜDGEORGIEN UND DIE SÜDLICHEN SANDWICHINSELN', 'GÉORGIE DU SUD ET LES ÎLES SANDWICH DU SUD', 'SGS', 239, 0, 0, 0),
('GT', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GUATEMALA', 'GTM', 320, 0, 0, 0),
('GU', 'GUAM', 'GUAM', 'GUAM', 'GUAM', 'GUAM', 'GUM', 316, 0, 0, 0),
('GW', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINEA-BISSAU', 'GUINÉE-BISSAU', 'GNB', 624, 0, 0, 0),
('GY', 'GUYANA', 'GUYANA', 'GUYANA', 'GUYANA', 'GUYANA', 'GUY', 328, 0, 0, 0),
('HK', 'HONG KONG', 'HONG KONG', 'HONG KONG', 'HONGKONG', 'HONG-KONG', 'HKG', 344, 0, 0, 0),
('HM', 'HEARD ISLAND AND MCDONALD ISLANDS', 'HEARD ISLAND AND MCDONALD ISLANDS', 'ISLAS HEARD Y MCDONALD', 'HEARD- UND MCDONALD-INSELN', 'HEARD, ÎLE ET MCDONALD, ÎLES', '334', 0, 0, 0, 0),
('HN', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HONDURAS', 'HND', 340, 0, 0, 0),
('HR', 'CROATIA', 'CROATIA', 'CROACIA', 'KROATIEN', 'CROATIE', 'HRV', 191, 1, 0, 1),
('HT', 'HAITI', 'HAITI', 'HAITÍ', 'HAITI', 'HAÏTI', 'HTI', 332, 0, 0, 0),
('HU', 'HUNGARY', 'HUNGARY', 'HUNGRÍA', 'UNGARN', 'HONGRIE', 'HUN', 348, 1, 0, 1),
('ID', 'INDONESIA', 'INDONESIA', 'INDONESIA', 'INDONESIEN', 'INDONÉSIE', 'IDN', 360, 0, 0, 0),
('IE', 'IRELAND', 'IRELAND', 'IRLANDA', 'IRLAND', 'IRLANDE', 'IRL', 372, 1, 0, 1),
('IL', 'ISRAEL', 'ISRAEL', 'ISRAEL', 'ISRAEL', 'ISRAËL', 'ISR', 376, 0, 0, 0),
('IN', 'INDIA', 'INDIA', 'INDIA', 'INDIEN', 'INDE', 'IND', 356, 0, 0, 0),
('IO', 'BRITISH INDIAN OCEAN TERRITORY', 'BRITISH INDIAN OCEAN TERRITORY', 'TERRITORIO BRITÁNICO DEL OCÉANO ÍNDICO', 'BRITISCHE HOHEITSGEBIETE', 'TERRITOIRE BRITANNIQUE DE L`OCÉAN INDIEN', 'IOT', 86, 0, 0, 0),
('IQ', 'IRAQ', 'IRAQ', 'IRAQ', 'IRAK', 'IRAQ', 'IRQ', 368, 0, 0, 0),
('IR', 'IRAN, ISLAMIC REPUBLIC OF', 'IRAN, ISLAMIC REPUBLIC OF', 'IRÁN', 'IRAN', 'IRAN, RÉPUBLIQUE ISLAMIQUE D`', 'IRN', 364, 0, 0, 0),
('IS', 'ICELAND', 'ICELAND', 'ISLANDIA', 'ISLAND', 'ISLANDE', 'ISL', 352, 0, 0, 0),
('IT', 'ITALY', 'ITALY', 'ITALIA', 'ITALIEN', 'ITALIE', 'ITA', 380, 1, 0, 1),
('JM', 'JAMAICA', 'JAMAICA', 'JAMAICA', 'JAMAIKA', 'JAMAÏQUE', 'JAM', 388, 0, 0, 0),
('JO', 'JORDAN', 'JORDAN', 'JORDANIA', 'JORDANIEN', 'JORDANIE', 'JOR', 400, 0, 0, 0),
('JP', 'JAPAN', 'JAPAN', 'JAPÓN', 'JAPAN', 'JAPON', 'JPN', 392, 0, 0, 0),
('KE', 'KENYA', 'KENYA', 'KENIA', 'KENIA', 'KENYA', 'KEN', 404, 0, 0, 0),
('KG', 'KYRGYZSTAN', 'KYRGYZSTAN', 'KIRGUISTÁN', 'KIRGISISTAN', 'KIRGHIZISTAN', 'KGZ', 417, 0, 0, 0),
('KH', 'CAMBODIA', 'CAMBODIA', 'CAMBOYA', 'KAMBODSCHA', 'CAMBODGE', 'KHM', 116, 0, 0, 0),
('KI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIRIBATI', 'KIR', 296, 0, 0, 0),
('KM', 'COMOROS', 'COMOROS', 'COMORAS', 'KOMOREN', 'COMORES', 'COM', 174, 0, 0, 0),
('KN', 'SAINT KITTS AND NEVIS', 'SAINT KITTS AND NEVIS', 'SAN CRISTÓBAL Y NEVIS', 'SAINT KITTS UND NEVIS', 'SAINT-KITTS-ET-NEVIS', 'KNA', 659, 0, 0, 0),
('KP', 'KOREA, DEMOCRATIC PEOPLE`S REPUBLIC OF', 'KOREA, DEMOCRATIC PEOPLE`S REPUBLIC OF', 'COREA DEL NORTE', 'NORDKOREA', 'CORÉE, RÉPUBLIQUE POPULAIRE DÉMOCRATIQUE ', 'PRK', 408, 0, 0, 0),
('KR', 'KOREA, REPUBLIC OF', 'KOREA, REPUBLIC OF', 'COREA DEL SUR', 'SÜDKOREA', 'CORÉE, RÉPUBLIQUE DE', 'KOR', 410, 0, 0, 0),
('KW', 'KUWAIT', 'KUWAIT', 'KUWAIT', 'KUWAIT', 'KOWEIT', 'KWT', 414, 0, 0, 0),
('KY', 'CAYMAN ISLANDS', 'CAYMAN ISLANDS', 'ISLAS CAIMÁN', 'CAYMAN-INSELN', 'CAÏMANES, ÎLES', 'CYM', 136, 0, 0, 0),
('KZ', 'KAZAKHSTAN', 'KAZAKHSTAN', 'KAZAJSTÁN', 'KASACHSTAN', 'KAZAKHSTAN', 'KAZ', 398, 0, 0, 0),
('LA', 'LAO PEOPLE`S DEMOCRATIC REPUBLIC', 'LAO PEOPLE`S DEMOCRATIC REPUBLIC', 'LAOS', 'LAOS', 'LAO, RÉPUBLIQUE DÉMOCRATIQUE POPULAIRE', 'LAO', 418, 0, 0, 0),
('LB', 'LEBANON', 'LEBANON', 'LÍBANO', 'LIBANON', 'LIBAN', 'LBN', 422, 0, 0, 0),
('LC', 'SAINT LUCIA', 'SAINT LUCIA', 'SANTA LUCÍA', 'SAINT LUCIA', 'SAINTE-LUCIE', 'LCA', 662, 0, 0, 0),
('LI', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIECHTENSTEIN', 'LIE', 438, 1, 0, 1),
('LK', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'SRI LANKA', 'LKA', 144, 0, 0, 0),
('LR', 'LIBERIA', 'LIBERIA', 'LIBERIA', 'LIBERIA', 'LIBÉRIA', 'LBR', 430, 0, 0, 0),
('LS', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LESOTHO', 'LSO', 426, 0, 0, 0),
('LT', 'LITHUANIA', 'LITHUANIA', 'LITUANIA', 'LITAUEN', 'LITUANIE', 'LTU', 440, 1, 0, 1),
('LU', 'LUXEMBOURG', 'LUXEMBOURG', 'LUXEMBURGO', 'LUXEMBURG', 'LUXEMBOURG', 'LUX', 442, 1, 0, 1),
('LV', 'LATVIA', 'LATVIA', 'LETONIA', 'LETTLAND', 'LETTONIE', 'LVA', 428, 1, 0, 1),
('LY', 'LIBYAN ARAB JAMAHIRIYA', 'LIBYAN ARAB JAMAHIRIYA', 'LIBIA', 'LIBYEN', 'LIBYE', 'LBY', 434, 0, 0, 0),
('MA', 'MOROCCO', 'MOROCCO', 'MARRUECOS', 'MAROKKO', 'MAROC', 'MAR', 504, 0, 0, 0),
('MC', 'MONACO', 'MONACO', 'MÓNACO', 'MONACO', 'MONACO', 'MCO', 492, 1, 0, 1),
('MD', 'MOLDOVA, REPUBLIC OF', 'MOLDOVA, REPUBLIC OF', 'MOLDAVIA', 'MOLDAWIEN', 'MOLDOVA, RÉPUBLIQUE DE', 'MDA', 498, 0, 0, 1),
('MG', 'MADAGASCAR', 'MADAGASCAR', 'MADAGASCAR', 'MADAGASKAR', 'MADAGASCAR', 'MDG', 450, 0, 0, 0),
('MH', 'MARSHALL ISLANDS', 'MARSHALL ISLANDS', 'ISLAS MARSHALL', 'MARSHALL-INSELN', 'MARSHALL, ÎLES', 'MHL', 584, 0, 0, 0),
('MK', 'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF', 'MACEDONIA, THE FORMER YUGOSLAV REPUBLIC OF', 'MACEDONIA', 'MAZEDONIEN', 'MACÉDOINE', 'MKD', 807, 0, 0, 1),
('ML', 'MALI', 'MALI', 'MALÍ', 'MALI', 'MALI', 'MLI', 466, 0, 0, 0),
('MM', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MYANMAR', 'MMR', 104, 0, 0, 0),
('MN', 'MONGOLIA', 'MONGOLIA', 'MONGOLIA', 'MONGOLEI', 'MONGOLIE', 'MNG', 496, 0, 0, 0),
('MO', 'MACAO', 'MACAO', 'MACAO', 'MACAO', 'MACAO', 'MAC', 446, 0, 0, 0),
('MP', 'NORTHERN MARIANA ISLANDS', 'NORTHERN MARIANA ISLANDS', 'ISLAS MARIANAS DEL NORTE', 'NÖRDLICHE MARIANEN', 'MARIANNES DU NORD, ÎLES', 'MNP', 580, 0, 0, 0),
('MQ', 'MARTINIQUE', 'MARTINIQUE', 'MARTINICA', 'MARTINIQUE', 'MARTINIQUE', 'MTQ', 474, 0, 0, 0),
('MR', 'MAURITANIA', 'MAURITANIA', 'MAURITANIA', 'MAURETANIEN', 'MAURITANIE', 'MRT', 478, 0, 0, 0),
('MS', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MONTSERRAT', 'MSR', 500, 0, 0, 0),
('MT', 'MALTA', 'MALTA', 'MALTA', 'MALTA', 'MALTE', 'MLT', 470, 0, 0, 1),
('MU', 'MAURITIUS', 'MAURITIUS', 'MAURICIO', 'MAURITIUS', 'MAURICE', 'MUS', 480, 0, 0, 0),
('MV', 'MALDIVES', 'MALDIVES', 'MALDIVAS', 'MALEDIVEN', 'MALDIVES', 'MDV', 462, 0, 0, 0),
('MW', 'MALAWI', 'MALAWI', 'MALAWI', 'MALAWI', 'MALAWI', 'MWI', 454, 0, 0, 0),
('MX', 'MEXICO', 'MEXICO', 'MÉXICO', 'MEXIKO', 'MEXIQUE', 'MEX', 484, 0, 0, 0),
('MY', 'MALAYSIA', 'MALAYSIA', 'MALASIA', 'MALAYSIA', 'MALAISIE', 'MYS', 458, 0, 0, 0),
('MZ', 'MOZAMBIQUE', 'MOZAMBIQUE', 'MOZAMBIQUE', 'MOSAMBIK', 'MOZAMBIQUE', 'MOZ', 508, 0, 0, 0),
('NA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIA', 'NAMIBIE', 'NAM', 516, 0, 0, 0),
('NC', 'NEW CALEDONIA', 'NEW CALEDONIA', 'NUEVA CALEDONIA', 'NEUKALEDONIEN', 'NOUVELLE-CALÉDONIE', 'NCL', 540, 0, 0, 0),
('NE', 'NIGER', 'NIGER', 'NÍGER', 'NIGER', 'NIGER', 'NER', 562, 0, 0, 0),
('NF', 'NORFOLK ISLAND', 'NORFOLK ISLAND', 'ISLA NORFOLK', 'NORFOLK ISLAND', 'NORFOK, ÎLE', 'NFK', 574, 0, 0, 1),
('NG', 'NIGERIA', 'NIGERIA', 'NIGERIA', 'NIGERIA', 'NIGÉRIA', 'NGA', 566, 0, 0, 0),
('NI', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NICARAGUA', 'NIC', 558, 0, 0, 0),
('NL', 'NETHERLANDS', 'NETHERLANDS', 'PAÍSES BAJOS', 'NIEDERLANDE', 'PAYS-BAS', 'NLD', 528, 1, 0, 1),
('NO', 'NORWAY', 'NORWAY', 'NORUEGA', 'NORWEGEN', 'NORVÍšGE', 'NOR', 578, 0, 1, 0),
('NP', 'NEPAL', 'NEPAL', 'NEPAL', 'NEPAL', 'NÉPAL', 'NPL', 524, 0, 0, 0),
('NR', 'NAURU', 'NAURU', 'NAURU', 'NAURU', 'NAURU', 'NRU', 520, 0, 0, 0),
('NU', 'NIUE', 'NIUE', 'NIUE', 'NIUE', 'NIUÉ', 'NIU', 570, 0, 0, 0),
('NZ', 'NEW ZEALAND', 'NEW ZEALAND', 'NUEVA ZELANDA', 'NEUSEELAND', 'NOUVELLE-ZÉLANDE', 'NZL', 554, 0, 0, 0),
('OM', 'OMAN', 'OMAN', 'OMÁN', 'OMAN', 'OMAN', 'OMN', 512, 0, 0, 0),
('PA', 'PANAMA', 'PANAMA', 'PANAMÁ', 'PANAMA', 'PANAMA', 'PAN', 591, 0, 0, 0),
('PE', 'PERU', 'PERU', 'PERÚ', 'PERU', 'PÉROU', 'PER', 604, 0, 0, 0),
('PF', 'FRENCH POLYNESIA', 'FRENCH POLYNESIA', 'POLINESIA FRANCESA', 'FRANZÖSISCH-POLYNESIEN', 'POLYNÉSIE FRANͧAISE', 'PYF', 258, 0, 0, 0),
('PG', 'PAPUA NEW GUINEA', 'PAPUA NEW GUINEA', 'PAPÚA NUEVA GUINEA', 'PAPUA-NEUGUINEA', 'PAPOUASIE-NOUVELLE-GUINÉE', 'PNG', 598, 0, 0, 0),
('PH', 'PHILIPPINES', 'PHILIPPINES', 'FILIPINAS', 'PHILIPPINEN', 'PHILIPPINES', 'PHL', 608, 0, 0, 0),
('PK', 'PAKISTAN', 'PAKISTAN', 'PAKISTÁN', 'PAKISTAN', 'PAKISTAN', 'PAK', 586, 0, 0, 0),
('PL', 'POLAND', 'POLAND', 'POLONIA', 'POLEN', 'POLOGNE', 'POL', 616, 1, 0, 1),
('PM', 'SAINT PIERRE AND MIQUELON', 'SAINT PIERRE AND MIQUELON', 'SAN PEDRO Y MIQUELÍN', 'SAINT PIERRE UND MIQUELON', 'SAINT-PIERRE-ET-MIQUELON', 'SPM', 666, 0, 0, 0),
('PN', 'PITCAIRN', 'PITCAIRN', 'ISLAS PITCAIRN', 'PITCAIRNINSELN', 'PITCAIRN', 'PCN', 612, 0, 0, 0),
('PR', 'PUERTO RICO', 'PUERTO RICO', 'PUERTO RICO', 'PUERTO RICO', 'PORTO RICO', 'PRI', 630, 0, 0, 0),
('PS', 'PALESTINIAN TERRITORY, OCCUPIED', 'PALESTINIAN TERRITORY, OCCUPIED', 'PALESTINA', 'PALÄSTINA', 'PALESTINIEN OCCUPÉ, TERRITOIRE', 'PSE', 275, 0, 0, 0),
('PT', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PORTUGAL', 'PRT', 620, 1, 0, 1),
('PW', 'PALAU', 'PALAU', 'PALAU', 'PALAU', 'PALAOS', 'PLW', 585, 0, 0, 0),
('PY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PARAGUAY', 'PRY', 600, 0, 0, 0),
('QA', 'QATAR', 'QATAR', 'QATAR', 'KATAR', 'QATAR', 'QAT', 634, 0, 0, 0),
('RE', 'REUNION', 'REUNION', 'REUNIÓN', 'REUNION', 'RÉUNION', 'REU', 638, 0, 0, 0),
('RO', 'ROMANIA', 'ROMANIA', 'RUMANIA', 'RUMÄNIEN', 'ROUMANIE', 'ROM', 642, 1, 0, 1),
('RU', 'RUSSIAN FEDERATION', 'RUSSIAN FEDERATION', 'RUSIA', 'RUSSLAND', 'RUSSIE, FÉDÉRATION DE', 'RUS', 643, 0, 0, 1),
('RW', 'RWANDA', 'RWANDA', 'RUANDA', 'RUANDA', 'RWANDA', 'RWA', 646, 0, 0, 0),
('SA', 'SAUDI ARABIA', 'SAUDI ARABIA', 'ARABIA SAUDÍ­', 'SAUDI-ARABIEN', 'ARABIE SAOUDITE', 'SAU', 682, 0, 0, 0),
('SB', 'SOLOMON ISLANDS', 'SOLOMON ISLANDS', 'ISLAS SALOMÓN', 'SALOMONEN', 'SALOMON, ÎLES', 'SLB', 90, 0, 0, 0),
('SC', 'SEYCHELLES', 'SEYCHELLES', 'SEYCHELLES', 'SEYCHELLEN', 'SEYCHELLES', 'SYC', 690, 0, 0, 0),
('SD', 'SUDAN', 'SUDAN', 'SUDÁN', 'SUDAN', 'SOUDAN', 'SDN', 736, 0, 0, 0),
('SE', 'SWEDEN', 'SWEDEN', 'SUECIA', 'SCHWEDEN', 'SUÍšDE', 'SWE', 752, 0, 1, 0),
('SG', 'SINGAPORE', 'SINGAPORE', 'SINGAPUR', 'SINGAPUR', 'SINGAPOUR', 'SGP', 702, 0, 0, 0),
('SH', 'SAINT HELENA', 'SAINT HELENA', 'SANTA HELENA', 'SANKT HELENA', 'SAINTE-HÉLÍšNE', 'SHN', 654, 0, 0, 0),
('SI', 'SLOVENIA', 'SLOVENIA', 'ESLOVENIA', 'SLOWENIEN', 'SLOVÉNIE', 'SVN', 705, 1, 0, 1),
('SJ', 'SVALBARD AND JAN MAYEN', 'SVALBARD AND JAN MAYEN', 'SVALBARD Y JAN MAYEN', 'SVALBARD UND JAN MAYEN', 'SVALBARD ET ÎLE JAN MAYEN', 'SJM', 744, 0, 0, 0),
('SK', 'SLOVAKIA', 'SLOVAKIA', 'ESLOVAQUIA', 'SLOWAKEI', 'SLOVAQUIE', 'SVK', 703, 1, 0, 1),
('SL', 'SIERRA LEONE', 'SIERRA LEONE', 'SIERRA LEONA', 'SIERRA LEONE', 'SIERRA LEONE', 'SLE', 694, 0, 0, 0),
('SM', 'SAN MARINO', 'SAN MARINO', 'SAN MARINO', 'SAN MARINO', 'SAINT-MARIN', 'SMR', 674, 0, 0, 0),
('SN', 'SENEGAL', 'SENEGAL', 'SENEGAL', 'SENEGAL', 'SÉNÉGAL', 'SEN', 686, 0, 0, 0),
('SO', 'SOMALIA', 'SOMALIA', 'SOMALIA', 'SOMALIA', 'SOMALIE', 'SOM', 706, 0, 0, 0),
('SR', 'SURINAME', 'SURINAME', 'SURINAM', 'SURINAM', 'SURINAME', 'SUR', 740, 0, 0, 0),
('ST', 'SAO TOME AND PRINCIPE', 'SAO TOME AND PRINCIPE', 'SANTO TOMÉ Y PRÍ­NCIPE', 'SÍ£O TOMÉ UND PRÍ­NCIPE', 'SAO TOMÉ-ET-PRINCIPE', 'STP', 678, 0, 0, 0),
('SV', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'EL SALVADOR', 'SLV', 222, 0, 0, 0),
('SY', 'SYRIAN ARAB REPUBLIC', 'SYRIAN ARAB REPUBLIC', 'SIRIA', 'SYRIEN', 'SYRIE', 'SYR', 760, 0, 0, 0),
('SZ', 'SWAZILAND', 'SWAZILAND', 'SUAZILANDIA', 'SWASILAND', 'SWAZILAND', 'SWZ', 748, 0, 1, 0),
('TC', 'TURKS AND CAICOS ISLANDS', 'TURKS AND CAICOS ISLANDS', 'ISLAS TURCAS Y CAICOS', 'TURKS- UND CAICOSINSELN', 'TURKS ET CAÏQUES, ÎLES', 'TCA', 796, 0, 0, 0),
('TD', 'CHAD', 'CHAD', 'CHAD', 'TSCHAD', 'TCHAD', 'TCD', 148, 0, 0, 0),
('TF', 'FRENCH SOUTHERN TERRITORIES', 'FRENCH SOUTHERN TERRITORIES', 'TERRITORIOS AUSTRALES FRANCESES', 'FRANZÖSISCHE SÜDGEBIETE', 'TERRES AUSTRALES FRANͧAISES', 'ATF', 260, 0, 0, 0),
('TG', 'TOGO', 'TOGO', 'TOGO', 'TOGO', 'TOGO', 'TGO', 768, 0, 0, 0),
('TH', 'THAILAND', 'THAILAND', 'TAILANDIA', 'THAILAND', 'THAÏLANDE', 'THA', 764, 0, 0, 0),
('TJ', 'TAJIKISTAN', 'TAJIKISTAN', 'TAYIKISTÁN', 'TADSCHIKISTAN', 'TADJIKISTAN', 'TJK', 762, 0, 0, 0),
('TK', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TOKELAU', 'TKL', 772, 0, 0, 0),
('TL', 'TIMOR-LESTE', 'TIMOR-LESTE', 'TIMOR ORIENTAL', 'OST-TIMOR', 'TIMOR-LESTE', 'TLS', 626, 0, 0, 0),
('TM', 'TURKMENISTAN', 'TURKMENISTAN', 'TURKMENISTÁN', 'TURKMENISTAN', 'TURKMÉNISTAN', 'TKM', 795, 0, 0, 0),
('TN', 'TUNISIA', 'TUNISIA', 'šNEZ', 'TUNESIEN', 'TUNISIE', 'TUN', 788, 0, 0, 0),
('TO', 'TONGA', 'TONGA', 'TONGA', 'TONGA', 'TONGA', 'TON', 776, 0, 0, 0),
('TR', 'TURKEY', 'TURKEY', 'TURQUÍA', 'TÜRKEI', 'TURQUIE', 'TUR', 792, 0, 0, 0),
('TT', 'TRINIDAD AND TOBAGO', 'TRINIDAD AND TOBAGO', 'TRINIDAD Y TOBAGO', 'TRINIDAD UND TOBAGO', 'TRINITÉ-ET-TOBAGO', 'TTO', 780, 0, 0, 0),
('TV', 'TUVALU', 'TUVALU', 'TUVALU', 'TUVALU', 'TUVALU', 'TUV', 798, 0, 0, 0),
('TW', 'TAIWAN, PROVINCE OF CHINA', 'TAIWAN, PROVINCE OF CHINA', 'TAIWÁN', 'TAIWAN', 'TAÏWAN, PROVINCE DE CHINA', 'TWN', 158, 0, 0, 0),
('TZ', 'TANZANIA, UNITED REPUBLIC OF', 'TANZANIA, UNITED REPUBLIC OF', 'TANZANIA', 'TANSANIA', 'TANZANIE, RÉPUBLIQUE-UNIE DE', 'TZA', 834, 0, 0, 0),
('UA', 'UKRAINE', 'UKRAINE', 'UCRANIA', 'UKRAINE', 'UKRAINE', 'UKR', 804, 0, 0, 1),
('UG', 'UGANDA', 'UGANDA', 'UGANDA', 'UGANDA', 'OUGANDA', 'UGA', 800, 0, 0, 0),
('UM', 'UNITED STATES MINOR OUTLYING ISLANDS', 'UNITED STATES MINOR OUTLYING ISLANDS', 'ISLAS ULTRAMARINAS DE ESTADOS UNIDOS', 'AMERIKANISCH-OZEANIEN', 'ÎLES MINEURES ÉLOIGNÉES DES ÉTATS-UN', 'UMI', 581, 0, 0, 0),
('US', 'UNITED STATES', 'UNITED STATES', 'ESTADOS UNIDOS', 'VEREINIGTE STAATEN VON AMERIKA', 'ÉTATS-UNIS', 'USA', 840, 0, 0, 0),
('UY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URUGUAY', 'URY', 858, 0, 0, 0),
('UZ', 'UZBEKISTAN', 'UZBEKISTAN', 'UZBEKISTÁN', 'USBEKISTAN', 'OUZBÉKISTAN', 'UZB', 860, 0, 0, 0),
('VA', 'HOLY SEE (VATICAN CITY STATE)', 'HOLY SEE (VATICAN CITY STATE)', 'CIUDAD DEL VATICANO', 'VATIKAN', 'SAINT-SIÍšGE (ÉTAT DE LA CITÉ DU VATICAN)', 'VAT', 336, 0, 0, 1),
('VC', 'SAINT VINCENT AND THE GRENADINES', 'SAINT VINCENT AND THE GRENADINES', 'SAN VICENTE Y LAS GRANADINAS', 'SAINT VINCENT UND DIE GRENADINEN', 'SAINT-VINCENT-ET-LES-GRENADINES', 'VCT', 670, 0, 0, 0),
('VE', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VENEZUELA', 'VEN', 862, 0, 0, 0),
('VG', 'VIRGIN ISLANDS, BRITISH', 'VIRGIN ISLANDS, BRITISH', 'ISLAS VÍ­RGENES BRITÁNICAS', 'BRITISCHE JUNGFERNINSELN', 'ÎLES VIERGES BRITANNIQUES', 'VGB', 92, 0, 0, 0),
('VI', 'VIRGIN ISLANDS, U.S.', 'VIRGIN ISLANDS, U.S.', 'ISLAS VÍ­RGENES DE LOS ESTADOS UNIDOS', 'AMERIKANISCHE JUNGFERNINSELN', 'ÎLES VIERGES DES ÉTATS-UNIS', 'VIR', 850, 0, 0, 0),
('VN', 'VIET NAM', 'VIET NAM', 'VIETNAM', 'VIETNAM', 'VIET NAM', 'VNM', 704, 0, 0, 0),
('VU', 'VANUATU', 'VANUATU', 'VANUATU', 'VANUATU', 'VANUATU', 'VUT', 548, 0, 0, 0),
('WF', 'WALLIS AND FUTUNA', 'WALLIS AND FUTUNA', 'WALLIS Y FUTUNA', 'WALLIS UND FUTUNA', 'WALLIS ET FUTUNA', 'WLF', 876, 0, 0, 0),
('WS', 'SAMOA', 'SAMOA', 'SAMOA', 'SAMOA', 'SAMOA', 'WSM', 882, 0, 0, 0),
('YE', 'YEMEN', 'YEMEN', 'YEMEN', 'JEMEN', 'YÉMEN', 'YEM', 887, 0, 0, 0),
('YT', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MAYOTTE', 'MYT', 175, 0, 0, 0),
('ZA', 'SOUTH AFRICA', 'SOUTH AFRICA', 'SUDÁFRICA', 'SÜDAFRIKA, REPUBLIK', 'AFRIQUE DU SUD', 'ZAF', 710, 0, 0, 0),
('ZM', 'ZAMBIA', 'ZAMBIA', 'ZAMBIA', 'SAMBIA', 'ZAMBIE', 'ZMB', 894, 0, 0, 0),
('ZW', 'ZIMBABWE', 'ZIMBABWE', 'ZIMBABUE', 'SIMBABWE', 'ZIMBABWE', 'ZWE', 716, 0, 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_currencies`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_currencies` (
`iso` char(3) NOT NULL,
`code` int(4) NOT NULL,
`decimal` int(1) NOT NULL,
`currency` varchar(50) NOT NULL,
`entities` varchar(100) NOT NULL,
PRIMARY KEY (`iso`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_currencies`
--
INSERT INTO `wp_tcp_currencies` (`iso`, `code`, `decimal`, `currency`, `entities`) VALUES
('AED', 784, 2, 'United Arab Emirates dirham', 'United Arab Emirates'),
('AFN', 971, 2, 'Afghan afghani', 'Afghanistan'),
('ALL', 8, 2, 'Albanian lek', 'Albania'),
('AMD', 51, 2, 'Armenian dram', 'Armenia'),
('ANG', 532, 2, 'Netherlands Antillean guilder', 'Netherlands Antilles'),
('AOA', 973, 2, 'Angolan kwanza', 'Angola'),
('ARS', 32, 2, 'Argentine peso', 'Argentina'),
('AUD', 36, 2, 'Australian dollar', 'Australia, Australian Antarctic Territory, Christmas Island, Cocos (Keeling) Islands, Heard and McDo'),
('AWG', 533, 2, 'Aruban guilder', 'Aruba'),
('AZN', 944, 2, 'Azerbaijani manat', 'Azerbaijan'),
('BAM', 977, 2, 'Bosnia and Herzegovina konvertibilna marka', 'Bosnia and Herzegovina'),
('BBD', 52, 2, 'Barbados dollar', 'Barbados'),
('BDT', 50, 2, 'Bangladeshi taka', 'Bangladesh'),
('BGN', 975, 2, 'Bulgarian lev', 'Bulgaria'),
('BHD', 48, 3, 'Bahraini dinar', 'Bahrain'),
('BIF', 108, 0, 'Burundian franc', 'Burundi'),
('BMD', 60, 2, 'Bermudian dollar (customarily known as Bermuda dol', 'Bermuda'),
('BND', 96, 2, 'Brunei dollar', 'Brunei, Singapore'),
('BOB', 68, 2, 'Boliviano', 'Bolivia'),
('BOV', 984, 2, 'Bolivian Mvdol (funds code)', 'Bolivia'),
('BRL', 986, 2, 'Brazilian real', 'Brazil'),
('BSD', 44, 2, 'Bahamian dollar', 'Bahamas'),
('BTN', 64, 2, 'Bhutanese ngultrum', 'Bhutan'),
('BWP', 72, 2, 'Botswana pula', 'Botswana'),
('BYR', 974, 0, 'Belarusian ruble', 'Belarus'),
('BZD', 84, 2, 'Belize dollar', 'Belize'),
('CAD', 124, 2, 'Canadian dollar', 'Canada'),
('CDF', 976, 2, 'Congolese franc', 'Democratic Republic of Congo'),
('CHE', 947, 2, 'WIR Bank (complementary currency)', 'Switzerland'),
('CHF', 756, 2, 'Swiss franc', 'Switzerland, Liechtenstein'),
('CHW', 948, 2, 'WIR Bank (complementary currency)', 'Switzerland'),
('CLF', 990, 0, 'Unidad de Fomento (funds code)', 'Chile'),
('CLP', 152, 0, 'Chilean peso', 'Chile'),
('CNY', 156, 1, 'Chinese yuan', 'China (Mainland)'),
('COP', 170, 0, 'Colombian peso', 'Colombia'),
('COU', 970, 2, 'Unidad de Valor Real', 'Colombia'),
('CRC', 188, 2, 'Costa Rican colon', 'Costa Rica'),
('CUC', 931, 2, 'Cuban convertible peso', 'Cuba'),
('CUP', 192, 2, 'Cuban peso', 'Cuba'),
('CVE', 132, 0, 'Cape Verde escudo', 'Cape Verde'),
('CZK', 203, 2, 'Czech koruna', 'Czech Republic'),
('DJF', 262, 0, 'Djiboutian franc', 'Djibouti'),
('DKK', 208, 2, 'Danish krone', 'Denmark, Faroe Islands, Greenland'),
('DOP', 214, 2, 'Dominican peso', 'Dominican Republic'),
('DZD', 12, 2, 'Algerian dinar', 'Algeria'),
('EEK', 233, 2, 'Estonian kroon', 'Estonia'),
('EGP', 818, 2, 'Egyptian pound', 'Egypt'),
('ERN', 232, 2, 'Eritrean nakfa', 'Eritrea'),
('ETB', 230, 2, 'Ethiopian birr', 'Ethiopia'),
('EUR', 978, 2, 'Euro', '16 European Union countries, Andorra, Kosovo, Monaco, Montenegro, San Marino, Vatican City; see euro'),
('FJD', 242, 2, 'Fiji dollar', 'Fiji'),
('FKP', 238, 2, 'Falkland Islands pound', 'Falkland Islands'),
('GBP', 826, 2, 'Pound sterling', 'United Kingdom, Crown Dependencies (the Isle of Man and the Channel Islands), certain British Overse'),
('GEL', 981, 2, 'Georgian lari', 'Georgia'),
('GHS', 936, 2, 'Ghanaian cedi', 'Ghana'),
('GIP', 292, 2, 'Gibraltar pound', 'Gibraltar'),
('GMD', 270, 2, 'Gambian dalasi', 'Gambia'),
('GNF', 324, 0, 'Guinean franc', 'Guinea'),
('GTQ', 320, 2, 'Guatemalan quetzal', 'Guatemala'),
('GYD', 328, 2, 'Guyanese dollar', 'Guyana'),
('HKD', 344, 2, 'Hong Kong dollar', 'Hong Kong Special Administrative Region'),
('HNL', 340, 2, 'Honduran lempira', 'Honduras'),
('HRK', 191, 2, 'Croatian kuna', 'Croatia'),
('HTG', 332, 2, 'Haitian gourde', 'Haiti'),
('HUF', 348, 2, 'Hungarian forint', 'Hungary'),
('IDR', 360, 0, 'Indonesian rupiah', 'Indonesia'),
('ILS', 376, 2, 'Israeli new sheqel', 'Israel'),
('INR', 356, 2, 'Indian rupee', 'Bhutan, India, Nepal'),
('IQD', 368, 0, 'Iraqi dinar', 'Iraq'),
('IRR', 364, 0, 'Iranian rial', 'Iran'),
('ISK', 352, 0, 'Icelandic króna', 'Iceland'),
('JMD', 388, 2, 'Jamaican dollar', 'Jamaica'),
('JOD', 400, 3, 'Jordanian dinar', 'Jordan'),
('JPY', 392, 0, 'Japanese yen', 'Japan'),
('KES', 404, 2, 'Kenyan shilling', 'Kenya'),
('KGS', 417, 2, 'Kyrgyzstani som', 'Kyrgyzstan'),
('KHR', 116, 0, 'Cambodian riel', 'Cambodia'),
('KMF', 174, 0, 'Comoro franc', 'Comoros'),
('KPW', 408, 0, 'North Korean won', 'North Korea'),
('KRW', 410, 0, 'South Korean won', 'South Korea'),
('KWD', 414, 3, 'Kuwaiti dinar', 'Kuwait'),
('KYD', 136, 2, 'Cayman Islands dollar', 'Cayman Islands'),
('KZT', 398, 2, 'Kazakhstani tenge', 'Kazakhstan'),
('LAK', 418, 0, 'Lao kip', 'Laos'),
('LBP', 422, 0, 'Lebanese pound', 'Lebanon'),
('LKR', 144, 2, 'Sri Lanka rupee', 'Sri Lanka'),
('LRD', 430, 2, 'Liberian dollar', 'Liberia'),
('LSL', 426, 2, 'Lesotho loti', 'Lesotho'),
('LTL', 440, 2, 'Lithuanian litas', 'Lithuania'),
('LVL', 428, 2, 'Latvian lats', 'Latvia'),
('LYD', 434, 3, 'Libyan dinar', 'Libya'),
('MAD', 504, 2, 'Moroccan dirham', 'Morocco, Western Sahara'),
('MDL', 498, 2, 'Moldovan leu', 'Moldova (except Transnistria)'),
('MGA', 969, 0, 'Malagasy ariary', 'Madagascar'),
('MKD', 807, 2, 'Macedonian denar', 'Republic of Macedonia'),
('MMK', 104, 0, 'Myanma kyat', 'Myanmar'),
('MNT', 496, 2, 'Mongolian tugrik', 'Mongolia'),
('MOP', 446, 1, 'Macanese pataca', 'Macau Special Administrative Region'),
('MRO', 478, 0, 'Mauritanian ouguiya', 'Mauritania'),
('MUR', 480, 2, 'Mauritian rupee', 'Mauritius'),
('MVR', 462, 2, 'Maldivian rufiyaa', 'Maldives'),
('MWK', 454, 2, 'Malawian kwacha', 'Malawi'),
('MXN', 484, 2, 'Mexican peso', 'Mexico'),
('MXV', 979, 2, 'Mexican Unidad de Inversion (UDI) (funds code)', 'Mexico'),
('MYR', 458, 2, 'Malaysian ringgit', 'Malaysia'),
('MZN', 943, 2, 'Mozambican metical', 'Mozambique'),
('NAD', 516, 2, 'Namibian dollar', 'Namibia'),
('NGN', 566, 2, 'Nigerian naira', 'Nigeria'),
('NIO', 558, 2, 'Cordoba oro', 'Nicaragua'),
('NOK', 578, 2, 'Norwegian krone', 'Norway, Bouvet Island, Queen Maud Land, Peter I Island'),
('NPR', 524, 2, 'Nepalese rupee', 'Nepal'),
('NZD', 554, 2, 'New Zealand dollar', 'Cook Islands, New Zealand, Niue, Pitcairn, Tokelau'),
('OMR', 512, 3, 'Omani rial', 'Oman'),
('PAB', 590, 2, 'Panamanian balboa', 'Panama'),
('PEN', 604, 2, 'Peruvian nuevo sol', 'Peru'),
('PGK', 598, 2, 'Papua New Guinean kina', 'Papua New Guinea'),
('PHP', 608, 2, 'Philippine peso', 'Philippines'),
('PKR', 586, 2, 'Pakistani rupee', 'Pakistan'),
('PLN', 985, 2, 'Polish złoty', 'Poland'),
('PYG', 600, 0, 'Paraguayan guaraní', 'Paraguay'),
('QAR', 634, 2, 'Qatari rial', 'Qatar'),
('RON', 946, 2, 'Romanian new leu', 'Romania'),
('RSD', 941, 2, 'Serbian dinar', 'Serbia'),
('RUB', 643, 2, 'Russian rouble', 'Russia, Abkhazia, South Ossetia'),
('RWF', 646, 0, 'Rwandan franc', 'Rwanda'),
('SAR', 682, 2, 'Saudi riyal', 'Saudi Arabia'),
('SBD', 90, 2, 'Solomon Islands dollar', 'Solomon Islands'),
('SCR', 690, 2, 'Seychelles rupee', 'Seychelles'),
('SDG', 938, 2, 'Sudanese pound', 'Sudan'),
('SEK', 752, 2, 'Swedish krona/kronor', 'Sweden'),
('SGD', 702, 2, 'Singapore dollar', 'Singapore, Brunei'),
('SHP', 654, 2, 'Saint Helena pound', 'Saint Helena'),
('SLL', 694, 0, 'Sierra Leonean leone', 'Sierra Leone'),
('SOS', 706, 2, 'Somali shilling', 'Somalia (except Somaliland)'),
('SRD', 968, 2, 'Surinamese dollar', 'Suriname'),
('STD', 678, 0, 'São Tomé and Príncipe dobra', 'São Tomé and Príncipe'),
('SYP', 760, 2, 'Syrian pound', 'Syria'),
('SZL', 748, 2, 'Lilangeni', 'Swaziland'),
('THB', 764, 2, 'Thai baht', 'Thailand'),
('TJS', 972, 2, 'Tajikistani somoni', 'Tajikistan'),
('TMT', 934, 2, 'Turkmenistani manat', 'Turkmenistan'),
('TND', 788, 3, 'Tunisian dinar', 'Tunisia'),
('TOP', 776, 2, 'Tongan paʻanga', 'Tonga'),
('TRY', 949, 2, 'Turkish lira', 'Turkey, Northern Cyprus'),
('TTD', 780, 2, 'Trinidad and Tobago dollar', 'Trinidad and Tobago'),
('TWD', 901, 1, 'New Taiwan dollar', 'Taiwan and other islands that are under the effective control of the Republic of China (ROC)'),
('TZS', 834, 2, 'Tanzanian shilling', 'Tanzania'),
('UAH', 980, 2, 'Ukrainian hryvnia', 'Ukraine'),
('UGX', 800, 0, 'Ugandan shilling', 'Uganda'),
('USD', 840, 2, 'United States dollar', 'American Samoa, British Indian Ocean Territory, Ecuador, El Salvador, Guam, Haiti, Marshall Islands,'),
('USN', 997, 2, 'United States dollar (next day) (funds code)', 'United States'),
('USS', 998, 2, 'United States dollar (same day) (funds code) (one ', 'United States'),
('UYU', 858, 2, 'Uruguayan peso', 'Uruguay'),
('UZS', 860, 2, 'Uzbekistan som', 'Uzbekistan'),
('VEF', 937, 2, 'Venezuelan bolívar fuerte', 'Venezuela'),
('VND', 704, 0, 'Vietnamese đồng', 'Vietnam'),
('VUV', 548, 0, 'Vanuatu vatu', 'Vanuatu'),
('WST', 882, 2, 'Samoan tala', 'Samoa'),
('XAF', 950, 0, 'CFA franc BEAC', 'Cameroon, Central African Republic, Republic of the Congo, Chad, Equatorial Guinea, Gabon'),
('XAG', 961, 0, 'Silver (one troy ounce)', ''),
('XAU', 959, 0, 'Gold (one troy ounce)', ''),
('XBA', 955, 0, 'European Composite Unit (EURCO) (bond market unit)', ''),
('XBB', 956, 0, 'European Monetary Unit (E.M.U.-6) (bond market uni', ''),
('XBC', 957, 0, 'European Unit of Account 9 (E.U.A.-9) (bond market', ''),
('XBD', 958, 0, 'European Unit of Account 17 (E.U.A.-17) (bond mark', ''),
('XCD', 951, 2, 'East Caribbean dollar', 'Anguilla, Antigua and Barbuda, Dominica, Grenada, Montserrat, Saint Kitts and Nevis, Saint Lucia, Sa'),
('XDR', 960, 0, 'Special Drawing Rights', 'International Monetary Fund'),
('XFU', 0, 0, 'UIC franc (special settlement currency)', 'International Union of Railways'),
('XOF', 952, 0, 'CFA Franc BCEAO', 'Benin, Burkina Faso, Côte d`Ivoire, Guinea-Bissau, Mali, Niger, Senegal, Togo'),
('XPD', 964, 0, 'Palladium (one troy ounce)', ''),
('XPF', 953, 0, 'CFP franc', 'French Polynesia, New Caledonia, Wallis and Futuna'),
('XPT', 962, 0, 'Platinum (one troy ounce)', ''),
('XTS', 963, 0, 'Code reserved for testing purposes', ''),
('XXX', 999, 0, 'No currency', ''),
('YER', 886, 0, 'Yemeni rial', 'Yemen'),
('ZAR', 710, 2, 'South African rand', 'South Africa'),
('ZMK', 894, 0, 'Zambian kwacha', 'Zambia'),
('ZWL', 932, 2, 'Zimbabwe dollar', 'Zimbabwe');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_offlines`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_offlines` (
`order_id` bigint(20) unsigned NOT NULL,
`card_number` varchar(20) NOT NULL,
`card_holder` varchar(150) NOT NULL,
`cvc` varchar(4) NOT NULL,
`expiration_month` int(11) NOT NULL,
`expiration_year` int(11) NOT NULL,
`card_type` varchar(20) NOT NULL,
`created_at` date NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_offlines`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders` (
`order_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`created_at` datetime NOT NULL,
`customer_id` bigint(20) unsigned NOT NULL,
`ip` varchar(20) NOT NULL,
`weight` int(11) NOT NULL DEFAULT '0',
`shipping_method` varchar(100) NOT NULL,
`status` varchar(50) NOT NULL,
`order_currency_code` char(3) NOT NULL,
`shipping_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`discount_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`payment_name` varchar(255) NOT NULL,
`payment_method` varchar(100) NOT NULL DEFAULT '',
`payment_amount` decimal(13,2) NOT NULL DEFAULT '0.00',
`comment` varchar(250) NOT NULL,
`comment_internal` varchar(250) NOT NULL DEFAULT '',
`code_tracking` varchar(50) NOT NULL,
`shipping_firstname` varchar(50) NOT NULL,
`shipping_lastname` varchar(100) NOT NULL,
`shipping_company` varchar(50) NOT NULL,
`shipping_street` varchar(100) NOT NULL,
`shipping_city` varchar(100) NOT NULL,
`shipping_city_id` char(4) NOT NULL DEFAULT '',
`shipping_region` varchar(100) NOT NULL,
`shipping_region_id` char(2) NOT NULL DEFAULT '',
`shipping_postcode` char(6) NOT NULL,
`shipping_country` varchar(50) NOT NULL,
`shipping_country_id` char(2) NOT NULL,
`shipping_telephone_1` varchar(50) NOT NULL,
`shipping_telephone_2` varchar(50) NOT NULL,
`shipping_fax` varchar(50) NOT NULL,
`shipping_email` varchar(255) NOT NULL,
`billing_firstname` varchar(50) NOT NULL,
`billing_lastname` varchar(100) NOT NULL,
`billing_company` varchar(50) NOT NULL,
`billing_street` varchar(100) NOT NULL,
`billing_city` varchar(100) NOT NULL DEFAULT '0',
`billing_city_id` char(4) NOT NULL DEFAULT '',
`billing_region` varchar(100) NOT NULL,
`billing_region_id` char(2) NOT NULL DEFAULT '',
`billing_postcode` char(6) NOT NULL,
`billing_country` varchar(50) NOT NULL,
`billing_country_id` char(2) NOT NULL,
`billing_telephone_1` varchar(50) NOT NULL,
`billing_telephone_2` varchar(50) NOT NULL,
`billing_fax` varchar(50) NOT NULL,
`billing_email` varchar(255) NOT NULL,
PRIMARY KEY (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders_costs`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders_costs` (
`order_cost_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) unsigned NOT NULL,
`description` varchar(255) NOT NULL,
`cost` decimal(13,2) NOT NULL DEFAULT '0.00',
`tax` float unsigned NOT NULL DEFAULT '0',
`cost_order` varchar(4) NOT NULL DEFAULT '',
PRIMARY KEY (`order_cost_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders_costs`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_orders_details`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_orders_details` (
`order_detail_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`order_id` bigint(20) unsigned NOT NULL,
`post_id` bigint(20) unsigned NOT NULL,
`option_1_id` bigint(20) unsigned NOT NULL,
`option_2_id` bigint(20) unsigned NOT NULL,
`weight` int(11) unsigned NOT NULL DEFAULT '0',
`is_downloadable` char(1) NOT NULL COMMENT 'Y->yes',
`sku` varchar(50) NOT NULL,
`name` varchar(100) NOT NULL,
`option_1_name` varchar(100) NOT NULL,
`option_2_name` varchar(100) NOT NULL,
`price` decimal(13,2) NOT NULL DEFAULT '0.00',
`original_price` decimal(13,2) NOT NULL DEFAULT '0.00',
`tax` double NOT NULL DEFAULT '0',
`qty_ordered` int(11) unsigned NOT NULL DEFAULT '0',
`max_downloads` int(4) NOT NULL DEFAULT '10',
`expires_at` date NOT NULL,
PRIMARY KEY (`order_detail_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_orders_details`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_rel_entities`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_rel_entities` (
`id_from` bigint(20) unsigned NOT NULL,
`id_to` bigint(20) unsigned NOT NULL,
`rel_type` varchar(20) NOT NULL,
`list_order` int(4) unsigned NOT NULL DEFAULT '0',
`units` int(4) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id_to`,`id_from`,`rel_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_tcp_rel_entities`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_taxes`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_taxes` (
`tax_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`desc` varchar(255) NOT NULL,
PRIMARY KEY (`tax_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_taxes`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_tcp_tax_rates`
--
CREATE TABLE IF NOT EXISTS `wp_tcp_tax_rates` (
`tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country_iso` char(3) NOT NULL,
`region_id` char(4) NOT NULL,
`region` varchar(100) NOT NULL,
`post_code` varchar(255) NOT NULL,
`tax_id` bigint(20) NOT NULL,
`rate` float NOT NULL,
`label` varchar(100) NOT NULL,
PRIMARY KEY (`tax_rate_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `wp_tcp_tax_rates`
--
INSERT INTO `wp_tcp_tax_rates` (`tax_rate_id`, `country_iso`, `region_id`, `region`, `post_code`, `tax_id`, `rate`, `label`) VALUES
(1, 'all', 'all', '', 'all', 0, 0, 'No tax');
-- --------------------------------------------------------
--
-- 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=57 ;
--
-- 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),
(8, 'Nuevo menú', 'nuevo-menu', 0),
(10, 'Menú vacío', 'menu-vacio', 0),
(40, 'Ofertas', 'ofertas', 0),
(12, 'Muebles', 'muebles', 0),
(13, 'Espejos', 'espejos', 0),
(14, 'Iluminación', 'iluminacion', 0),
(15, 'Decoración', 'decoracion', 0),
(16, 'Textil', 'textil', 0),
(17, 'Mesas', 'mesas', 0),
(18, 'Estanterías', 'estanterias', 0),
(19, 'Vitrinas', 'vitrinas', 0),
(20, 'Modulares', 'modulares', 0),
(21, 'Aparadores', 'aparadores', 0),
(22, 'Muebles TV', 'muebles-tv', 0),
(23, 'Consolas', 'consolas', 0),
(24, 'Sofás', 'sofas', 0),
(25, 'Sillas', 'sillas', 0),
(26, 'Dormitorio', 'dormitorio', 0),
(28, 'Armarios &amp; Cajoneras', 'armarios-cajoneras', 0),
(29, 'Auxiliar', 'auxiliar', 0),
(30, 'Cabeceros', 'cabeceros', 0),
(31, 'Cómodas', 'comodas', 0),
(32, 'Mesillas', 'mesillas', 0),
(33, 'Comedor', 'comedor', 0),
(34, 'Centro', 'centro', 0),
(35, 'Rincón', 'rincon', 0),
(39, 'Product Category', 'product-category', 0),
(41, 'Curiosidades', 'curiosidades', 0),
(42, 'Ideas y consejos', 'ideas-y-consejos', 0),
(43, 'Cartelera', 'cartelera', 0),
(47, 'Lámparas de sobremesa', 'lamparas-de-sobremesa', 0),
(46, 'Lámparas de pie', 'lamparas-de-pie', 0),
(48, 'Lámparas de techo', 'lamparas-de-techo', 0),
(49, 'Cuadros', 'cuadros', 0),
(50, 'Figuras', 'figuras', 0),
(51, 'Jarrones', 'jarrones', 0),
(52, 'Centros de mesa', 'centros-de-mesa', 0),
(53, 'Cajas', 'cajas', 0),
(54, 'Velas &amp; Aromaterapia', 'velas-aromaterapia', 0),
(55, 'Menaje', 'menaje', 0),
(56, 'Regalos &amp; Varios', 'regalos-varios', 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),
(116, 8, 0),
(115, 8, 0),
(90, 6, 0),
(119, 8, 0),
(81, 7, 0),
(110, 6, 0),
(111, 6, 0),
(117, 8, 0),
(211, 8, 0),
(120, 8, 0),
(76, 7, 0),
(69, 6, 0),
(60, 6, 0),
(22, 3, 0),
(21, 3, 0),
(20, 3, 0),
(123, 8, 0),
(227, 48, 0),
(514, 8, 0),
(218, 62, 0),
(219, 8, 0),
(221, 62, 0),
(519, 66, 0),
(228, 48, 0),
(229, 48, 0),
(230, 48, 0),
(231, 48, 0),
(232, 48, 0),
(233, 48, 0),
(234, 48, 0),
(235, 48, 0),
(236, 48, 0),
(237, 48, 0),
(238, 48, 0),
(239, 48, 0),
(240, 48, 0),
(241, 48, 0),
(242, 48, 0),
(243, 48, 0),
(244, 48, 0),
(245, 48, 0),
(246, 48, 0),
(247, 48, 0),
(248, 48, 0),
(249, 48, 0),
(250, 48, 0),
(251, 48, 0),
(252, 48, 0),
(253, 48, 0),
(254, 48, 0),
(255, 48, 0),
(256, 48, 0),
(257, 48, 0),
(258, 48, 0),
(259, 48, 0),
(260, 48, 0),
(261, 48, 0),
(262, 48, 0),
(263, 48, 0),
(264, 48, 0),
(265, 48, 0),
(266, 48, 0),
(267, 48, 0),
(268, 48, 0),
(269, 48, 0),
(270, 48, 0),
(271, 48, 0),
(272, 48, 0),
(273, 48, 0),
(274, 48, 0),
(275, 48, 0),
(276, 48, 0),
(277, 48, 0),
(278, 48, 0),
(279, 48, 0),
(280, 48, 0),
(281, 48, 0),
(282, 48, 0),
(283, 48, 0),
(284, 48, 0),
(285, 48, 0),
(287, 48, 0),
(286, 48, 0),
(294, 48, 0),
(288, 48, 0),
(289, 48, 0),
(290, 48, 0),
(291, 48, 0),
(371, 8, 0),
(450, 8, 0),
(374, 8, 0),
(375, 8, 0),
(376, 8, 0),
(377, 8, 0),
(519, 64, 0),
(379, 8, 0),
(380, 8, 0),
(381, 8, 0),
(382, 8, 0),
(516, 8, 0),
(384, 8, 0),
(385, 8, 0),
(386, 8, 0),
(387, 8, 0),
(388, 8, 0),
(389, 8, 0),
(390, 8, 0),
(391, 8, 0),
(392, 8, 0),
(393, 6, 0),
(394, 6, 0),
(395, 6, 0),
(396, 6, 0),
(397, 6, 0),
(448, 8, 0),
(399, 8, 0),
(400, 8, 0),
(414, 8, 0),
(413, 8, 0),
(515, 8, 0),
(447, 8, 0),
(446, 8, 0),
(470, 8, 0),
(471, 8, 0),
(522, 64, 0),
(522, 66, 0),
(522, 65, 0),
(519, 65, 0),
(551, 66, 0),
(544, 66, 0),
(547, 66, 0),
(547, 64, 0),
(547, 65, 0),
(544, 64, 0),
(544, 65, 0),
(551, 64, 0),
(551, 65, 0),
(553, 66, 0),
(553, 64, 0),
(553, 65, 0),
(556, 66, 0),
(556, 64, 0),
(556, 65, 0),
(558, 66, 0),
(558, 64, 0),
(558, 65, 0),
(559, 66, 0),
(559, 64, 0),
(559, 65, 0),
(562, 66, 0),
(562, 64, 0),
(562, 65, 0),
(564, 66, 0),
(564, 64, 0),
(564, 65, 0),
(566, 66, 0),
(566, 64, 0),
(566, 65, 0),
(568, 8, 0),
(578, 8, 0),
(579, 8, 0),
(580, 8, 0),
(569, 8, 0),
(570, 8, 0),
(571, 8, 0),
(572, 8, 0),
(573, 8, 0),
(574, 8, 0),
(575, 8, 0),
(576, 8, 0),
(577, 8, 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=80 ;
--
-- 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, 0),
(2, 2, 'link_category', '', 0, 7),
(3, 3, 'catablog-terms', '', 0, 3),
(6, 6, 'nav_menu', '', 0, 10),
(7, 7, 'nav_menu', '', 0, 2),
(8, 8, 'nav_menu', '', 0, 52),
(10, 10, 'nav_menu', '', 0, 0),
(64, 41, 'category', '', 0, 12),
(65, 42, 'category', '', 0, 12),
(66, 43, 'category', '', 0, 12),
(69, 46, 'tcp_product_category', '', 14, 0),
(70, 47, 'tcp_product_category', '', 14, 0),
(71, 48, 'tcp_product_category', '', 14, 0),
(72, 49, 'tcp_product_category', '', 15, 0),
(73, 50, 'tcp_product_category', '', 15, 0),
(74, 51, 'tcp_product_category', '', 15, 0),
(75, 52, 'tcp_product_category', '', 15, 0),
(76, 53, 'tcp_product_category', '', 15, 0),
(77, 54, 'tcp_product_category', '', 15, 0),
(78, 55, 'tcp_product_category', '', 15, 0),
(79, 56, 'tcp_product_category', '', 15, 0),
(63, 40, 'tcp_product_category', '', 0, 0),
(39, 12, 'tcp_product_category', '', 0, 0),
(40, 13, 'tcp_product_category', '', 0, 0),
(41, 14, 'tcp_product_category', '', 0, 0),
(42, 15, 'tcp_product_category', '', 0, 0),
(43, 16, 'tcp_product_category', '', 0, 0),
(44, 17, 'tcp_product_category', '', 12, 0),
(45, 18, 'tcp_product_category', '', 12, 0),
(46, 19, 'tcp_product_category', '', 12, 0),
(47, 20, 'tcp_product_category', '', 12, 0),
(48, 21, 'tcp_product_category', '', 12, 66),
(49, 22, 'tcp_product_category', '', 12, 0),
(50, 23, 'tcp_product_category', '', 12, 0),
(51, 24, 'tcp_product_category', '', 12, 0),
(52, 25, 'tcp_product_category', '', 12, 0),
(53, 26, 'tcp_product_category', '', 12, 0),
(54, 28, 'tcp_product_category', '', 12, 0),
(55, 29, 'tcp_product_category', '', 12, 0),
(56, 33, 'tcp_product_category', '', 17, 0),
(57, 34, 'tcp_product_category', '', 17, 0),
(58, 35, 'tcp_product_category', '', 17, 0),
(59, 30, 'tcp_product_category', '', 26, 0),
(60, 31, 'tcp_product_category', '', 26, 0),
(61, 32, 'tcp_product_category', '', 26, 0);
-- --------------------------------------------------------
--
-- 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=45 ;
--
-- 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', 'true'),
(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', '225'),
(17, 1, 'closedpostboxes_dashboard', 'a:1:{i:0;s:17:"tcp_orders_resume";}'),
(18, 1, 'metaboxhidden_dashboard', 'a:8:{i:0;s:25:"dashboard_recent_comments";i:1;s:17:"dashboard_plugins";i:2;s:17:"tcp_orders_resume";i:3;s:23:"thecartpress_rss_widget";i:4;s:21:"dashboard_quick_press";i:5;s:23:"dashboard_recent_drafts";i:6;s:17:"dashboard_primary";i:7;s:19:"dashboard_secondary";}'),
(19, 1, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:214:"dashboard_right_now,dashboard_recent_comments,dashboard_plugins,tcp_orders_resume,thecartpress_rss_widget,dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_incoming_links,dashboard_secondary";s:4:"side";s:0:"";s:7:"column3";s:0:"";s:7:"column4";s:0:"";}'),
(20, 1, 'screen_layout_dashboard', '2'),
(21, 1, 'wp_user-settings', 'm6=o&m7=c&m8=o&m9=o&m5=o&imgsize=full&m4=o&m11=o&hidetb=1&editor=tinymce&m12=o&m13=o&m10=o&m14=o&m2=o&align=none&urlbutton=none&m1=o'),
(22, 1, 'wp_user-settings-time', '1310635565'),
(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', '8'),
(26, 1, 'meta-box-order_wpsc-product', 'a:3:{s:4:"side";s:147:"submitdiv,wpsc_stock_control_forms,wpsc_product_categorydiv,wpsc-variationdiv,wpsc_price_control_forms,wpsc_product_taxes_forms,tagsdiv-product_tag";s:6:"normal";s:199:"wpsc_product_image_forms,wpsc_product_variation_forms,wpsc_product_external_link_forms,wpsc_additional_desc,wpsc_product_download_forms,wpsc_product_shipping_forms,wpsc_product_advanced_forms,slugdiv";s:8:"advanced";s:0:"";}'),
(27, 1, 'screen_layout_wpsc-product', '2'),
(28, 1, 'closedpostboxes_wpsc-product', 'a:6:{i:0;s:28:"wpsc_product_variation_forms";i:1;s:32:"wpsc_product_external_link_forms";i:2;s:20:"wpsc_additional_desc";i:3;s:27:"wpsc_product_download_forms";i:4;s:27:"wpsc_product_shipping_forms";i:5;s:27:"wpsc_product_advanced_forms";}'),
(29, 1, 'metaboxhidden_wpsc-product', 'a:1:{i:0;s:7:"slugdiv";}'),
(30, 1, 'meta-box-order_tcp_product', 'a:3:{s:4:"side";s:94:"submitdiv,postimagediv,tcp_product_categorydiv,tagsdiv-tcp_product_tag,tcp_product_supplierdiv";s:6:"normal";s:74:"tcp-product-custom-fields,postexcerpt,commentstatusdiv,commentsdiv,slugdiv";s:8:"advanced";s:0:"";}'),
(31, 1, 'screen_layout_tcp_product', '2'),
(32, 1, 'closedpostboxes_tcp_product', 'a:2:{i:0;s:9:"submitdiv";i:1;s:11:"postexcerpt";}'),
(33, 1, 'metaboxhidden_tcp_product', 'a:3:{i:0;s:23:"tagsdiv-tcp_product_tag";i:1;s:23:"tcp_product_supplierdiv";i:2;s:7:"slugdiv";}'),
(34, 1, 'edit_tcp_product_per_page', '100'),
(35, 1, 'meta-box-order_nav-menus', 'a:1:{s:4:"side";s:188:"nav-menu-theme-locations,add-custom-links,add-post,add-tcp_product_category,add-page,add-tcp_product,add-tcp_template,add-category,add-post_tag,add-tcp_product_tag,add-tcp_product_supplier";}'),
(36, 1, 'closedpostboxes_page', 'a:0:{}'),
(37, 1, 'metaboxhidden_page', 'a:7:{i:0;s:13:"woothemes-seo";i:1;s:10:"postcustom";i:2;s:16:"commentstatusdiv";i:3;s:11:"commentsdiv";i:4;s:7:"slugdiv";i:5;s:9:"authordiv";i:6;s:12:"revisionsdiv";}'),
(38, 1, 'plugins_last_view', 'all'),
(39, 1, 'closedpostboxes_slide', 'a:1:{i:0;s:10:"postcustom";}'),
(40, 1, 'metaboxhidden_slide', 'a:2:{i:0;s:7:"slugdiv";i:1;s:18:"woothemes-settings";}'),
(41, 1, 'meta-box-order_post', 'a:3:{s:4:"side";s:51:"submitdiv,postimagediv,categorydiv,tagsdiv-post_tag";s:6:"normal";s:129:"tcp-post-related-content,woothemes-seo,postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv,woothemes-settings";s:8:"advanced";s:0:"";}'),
(42, 1, 'screen_layout_post', '2'),
(43, 1, 'closedpostboxes_post', 'a:1:{i:0;s:18:"woothemes-settings";}'),
(44, 1, 'metaboxhidden_post', 'a:11:{i:0;s:16:"tagsdiv-post_tag";i:1;s:13:"woothemes-seo";i:2;s:11:"postexcerpt";i:3;s:13:"trackbacksdiv";i:4;s:10:"postcustom";i:5;s:16:"commentstatusdiv";i:6;s:7:"slugdiv";i:7;s:9:"authordiv";i:8;s:18:"woothemes-settings";i:9;s:11:"commentsdiv";i:10;s:12:"revisionsdiv";}');
-- --------------------------------------------------------
--
-- 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');