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-04 17:34:14 +00:00

2588 lines
550 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: 04-07-2011 a las 17:29:53
-- Versión del servidor: 5.1.53
-- Versión de PHP: 5.3.4
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Base de datos: `originalhouse`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_commentmeta`
--
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_commentmeta`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_comments`
--
CREATE TABLE IF NOT EXISTS `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT '0',
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT '',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`comment_ID`),
KEY `comment_approved` (`comment_approved`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
--
-- Volcar la base de datos para la tabla `wp_comments`
--
INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Sr WordPress', '', 'http://wordpress.org/', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Hola, esto es un comentario.<br /> Para borrar un comentario sólo tienes que entrar y ver los comentarios de la entrada. Entonces tendrás la opción de editar o borrar.', 0, '1', '', '', 0, 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_customback`
--
CREATE TABLE IF NOT EXISTS `wp_customback` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`postid` bigint(20) DEFAULT NULL,
`url` text,
`rep` varchar(5) DEFAULT 'none',
`color` varchar(25) DEFAULT NULL,
`css` text,
`displaytype` tinyint(1) DEFAULT '3',
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=13 ;
--
-- Volcar la base de datos para la tabla `wp_customback`
--
INSERT INTO `wp_customback` (`id`, `postid`, `url`, `rep`, `color`, `css`, `displaytype`) VALUES
(1, 48, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(2, 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 'none', '', '', 5),
(3, 58, '', 'none', '', '', 0),
(4, 57, '', 'none', '', '', 0),
(5, 65, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 'none', '', '', 0),
(6, 61, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 'none', '', '', 5),
(7, 83, '', 'none', '', '', 0),
(8, 82, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 'none', '', '', 5),
(9, 89, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(10, 88, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 'none', '', '', 5),
(11, 97, '', 'none', '', '', 0),
(12, 96, '', 'none', '', '', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_links`
--
CREATE TABLE IF NOT EXISTS `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
`link_rating` int(11) NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Volcar la base de datos para la tabla `wp_links`
--
INSERT INTO `wp_links` (`link_id`, `link_url`, `link_name`, `link_image`, `link_target`, `link_description`, `link_visible`, `link_owner`, `link_rating`, `link_updated`, `link_rel`, `link_notes`, `link_rss`) VALUES
(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'),
(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', '');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_options`
--
CREATE TABLE IF NOT EXISTS `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`blog_id` int(11) NOT NULL DEFAULT '0',
`option_name` varchar(64) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=577 ;
--
-- 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:7:{i:0;s:21:"catablog/catablog.php";i:1;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:2;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:3;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:4;s:23:"tubepress/tubepress.php";i:5;s:34:"wp-e-commerce/wp-shopping-cart.php";i:6;s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";}', 'yes'),
(37, 0, 'home', 'http://localhost/originalhouse', 'yes'),
(38, 0, 'category_base', '', 'yes'),
(39, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(40, 0, 'advanced_edit', '0', 'yes'),
(41, 0, 'comment_max_links', '2', 'yes'),
(42, 0, 'gmt_offset', '0', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', '', 'no'),
(45, 0, 'template', 'originalhouse', 'yes'),
(46, 0, 'stylesheet', 'originalhouse', 'yes'),
(47, 0, 'comment_whitelist', '1', 'yes'),
(48, 0, 'blacklist_keys', '', 'no'),
(49, 0, 'comment_registration', '', 'yes'),
(50, 0, 'rss_language', 'en', 'yes'),
(51, 0, 'html_type', 'text/html', 'yes'),
(52, 0, 'use_trackback', '0', 'yes'),
(53, 0, 'default_role', 'subscriber', 'yes'),
(54, 0, 'db_version', '17516', 'yes'),
(55, 0, 'uploads_use_yearmonth_folders', '1', 'yes'),
(56, 0, 'upload_path', '', 'yes'),
(57, 0, 'blog_public', '1', 'yes'),
(58, 0, 'default_link_category', '2', 'yes'),
(59, 0, 'show_on_front', 'page', 'yes'),
(60, 0, 'tag_base', '', 'yes'),
(61, 0, 'show_avatars', '0', 'yes'),
(62, 0, 'avatar_rating', 'G', 'yes'),
(63, 0, 'upload_url_path', '', 'yes'),
(64, 0, 'thumbnail_size_w', '150', 'yes'),
(65, 0, 'thumbnail_size_h', '150', 'yes'),
(66, 0, 'thumbnail_crop', '1', 'yes'),
(67, 0, 'medium_size_w', '300', 'yes'),
(68, 0, 'medium_size_h', '300', 'yes'),
(69, 0, 'avatar_default', 'mystery', 'yes'),
(70, 0, 'enable_app', '0', 'yes'),
(71, 0, 'enable_xmlrpc', '0', 'yes'),
(72, 0, 'large_size_w', '1024', 'yes'),
(73, 0, 'large_size_h', '1024', 'yes'),
(74, 0, 'image_default_link_type', 'file', 'yes'),
(75, 0, 'image_default_size', '', 'yes'),
(76, 0, 'image_default_align', '', 'yes'),
(77, 0, 'close_comments_for_old_posts', '', 'yes'),
(78, 0, 'close_comments_days_old', '14', 'yes'),
(79, 0, 'thread_comments', '1', 'yes'),
(80, 0, 'thread_comments_depth', '5', 'yes'),
(81, 0, 'page_comments', '', 'yes'),
(82, 0, 'comments_per_page', '50', 'yes'),
(83, 0, 'default_comments_page', 'newest', 'yes'),
(84, 0, 'comment_order', 'asc', 'yes'),
(85, 0, 'sticky_posts', 'a:0:{}', 'yes'),
(86, 0, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(87, 0, 'widget_text', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(88, 0, 'widget_rss', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(89, 0, 'timezone_string', '', 'yes'),
(90, 0, 'embed_autourls', '1', 'yes'),
(91, 0, 'embed_size_w', '', 'yes'),
(92, 0, 'embed_size_h', '600', 'yes'),
(93, 0, 'page_for_posts', '0', 'yes'),
(94, 0, 'page_on_front', '44', 'yes'),
(95, 0, 'default_post_format', '0', 'yes'),
(96, 0, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a: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;}}}', '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:1309803677;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:1309835568;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:1309878772;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:1309886477;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', '1309800078', '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'),
(451, 0, '_site_transient_timeout_theme_roots', '1309807147', 'yes'),
(452, 0, '_site_transient_theme_roots', 'a:2:{s:13:"originalhouse";s:7:"/themes";s:9:"twentyten";s:7:"/themes";}', 'yes'),
(266, 0, 'current_theme', 'Original House', 'yes'),
(117, 0, 'can_compress_scripts', '1', 'yes'),
(356, 0, '_transient_timeout_feed_8fa202021a0c51f109142bc571ee925a', '1309821724', 'no'),
(357, 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:96:"Results <b>1</b> - <b>10</b> of about <b>95</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:74:"WordPress Tutorial How to Make a Static Page Your Home 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:4:"link";a:1:{i:0;a:5:{s:4:"data";s:143:"http://www.jeronone.com/blog/web-development/wordpress1/wordpress-tutorial-how-to-make-a-static-page-your-home-page-hide-double-home-page-link/";s: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:"You can also create another page to use as your blog page, with a <em>link</em> to that page in your site navigation. Watch this tutorial to see how to do this. One problem you may run into when you make a static page your home page is that <b>...</b> As a newbie, i couldn&#39;t understand why my <em>original home</em> page wasn&#39;t showing up under select page as home page pull-down. So i creates a home page ending up with two. By setting second home page as a child page to Blog page, it vanished. <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:"Jero and One";s: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:"Sun, 26 Dec 2010 18:02:35 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: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: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: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: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: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: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:2:"95";s: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:"Mon, 04 Jul 2011 11:22:04 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=668cc54d60fb7d04:FF=0:TM=1309778524:LM=1309778524:S=t5cs5orkBbsu1GYV; expires=Wed, 03-Jul-2013 11:22:04 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', '1309886912', 'no'),
(123, 0, '_transient_plugin_slugs', 'a:9:{i:0;s:21:"catablog/catablog.php";i:1;s:43:"custom-post-background/custom-post-back.php";i:2;s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";i:3;s:51:"make-filename-lowercase/make-filename-lowercase.php";i:4;s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";i:5;s:20:"sticky_menu/init.php";i:6;s:23:"tubepress/tubepress.php";i:7;s:34:"wp-e-commerce/wp-shopping-cart.php";i:8;s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";}', 'no'),
(124, 0, 'recently_activated', 'a:4:{s:35:"thecartpress/TheCartPress.class.php";i:1309800474;s:31:"youtube-media/youtube-media.php";i:1309788594;s:47:"youtube-simplegallery/youtube_simplegallery.php";i:1309788204;s:43:"custom-post-background/custom-post-back.php";i:1309781286;}', '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'),
(351, 0, 'category_children', 'a:0:{}', 'yes'),
(359, 0, '_transient_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309778524', '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'),
(145, 0, '_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309317176', 'no'),
(146, 0, '_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2', '1309273976', 'no');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(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":1:{s:12:"last_checked";i:1309800418;}', 'yes'),
(358, 0, '_transient_timeout_feed_mod_8fa202021a0c51f109142bc571ee925a', '1309821724', 'no'),
(337, 0, '_site_transient_timeout_wporg_theme_feature_list', '1309388348', 'yes'),
(338, 0, '_site_transient_wporg_theme_feature_list', 'a:5:{s:6:"Colors";a:15:{i:0;s:5:"black";i:1;s:4:"blue";i:2;s:5:"brown";i:3;s:4:"gray";i:4;s:5:"green";i:5;s:6:"orange";i:6;s:4:"pink";i:7;s:6:"purple";i:8;s:3:"red";i:9;s:6:"silver";i:10;s:3:"tan";i:11;s:5:"white";i:12;s:6:"yellow";i:13;s:4:"dark";i:14;s:5:"light";}s:7:"Columns";a:6:{i:0;s:10:"one-column";i:1;s:11:"two-columns";i:2;s:13:"three-columns";i:3;s:12:"four-columns";i:4;s:12:"left-sidebar";i:5;s:13:"right-sidebar";}s:5:"Width";a:2:{i:0;s:11:"fixed-width";i:1;s:14:"flexible-width";}s:8:"Features";a:18:{i:0;s:8:"blavatar";i:1;s:10:"buddypress";i:2;s:17:"custom-background";i:3;s:13:"custom-colors";i:4;s:13:"custom-header";i:5;s:11:"custom-menu";i:6;s:12:"editor-style";i:7;s:21:"featured-image-header";i:8;s:15:"featured-images";i:9;s:20:"front-page-post-form";i:10;s:19:"full-width-template";i:11;s:12:"microformats";i:12;s:12:"post-formats";i:13;s:20:"rtl-language-support";i:14;s:11:"sticky-post";i:15;s:13:"theme-options";i:16;s:17:"threaded-comments";i:17;s:17:"translation-ready";}s:7:"Subject";a:3:{i:0;s:7:"holiday";i:1;s:13:"photoblogging";i:2;s:8:"seasonal";}}', 'yes'),
(265, 0, 'theme_mods_twentyten', 'a:1:{i:0;b:0;}', 'yes'),
(161, 0, 'theme_mods_savinggrace', 'a:1:{i:0;b:0;}', 'yes'),
(162, 0, 'widget_woo_tabs', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(163, 0, 'widget_woo_adwidget', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(164, 0, 'widget_woo_blogauthorinfo', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(165, 0, 'widget_woo_flickr', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(166, 0, 'widget_woo_search', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(167, 0, 'widget_woo_twitter', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(168, 0, 'widget_woo_subscribe', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(169, 0, 'widget_woo_archives', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(170, 0, 'woo_framework_version', '4.1.6', 'yes'),
(171, 0, 'woo_custom_seo_template', 'a:3:{i:0;a:5:{s:4:"name";s:10:"seo_info_1";s:3:"std";s:0:"";s:5:"label";s:4:"SEO ";s:4:"type";s:4:"info";s:4:"desc";s:234:"Additional SEO custom fields available: <strong>Custom Page Titles, Custom Descriptions, Custom Keywords</strong>. Go to <a href="http://localhost/originalhouse/wp-admin/admin.php?page=woothemes_seo">SEO Settings</a> page to activate.";}i:1;a:5:{s:4:"name";s:10:"seo_follow";s:3:"std";s:5:"false";s:5:"label";s:16:"SEO - Set follow";s:4:"type";s:8:"checkbox";s:4:"desc";s:77:"Make links from this post/page <strong>followable</strong> by search engines.";}i:2;a:5:{s:4:"name";s:11:"seo_noindex";s:3:"std";s:5:"false";s:5:"label";s:13:"SEO - Noindex";s:4:"type";s:8:"checkbox";s:4:"desc";s:56:"Set the Page/Post to not be indexed by a search engines.";}}', 'yes'),
(172, 0, 'woo_options', 'a:72:{s:18:"woo_alt_stylesheet";s:11:"default.css";s:8:"woo_logo";s:71:"http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif";s:13:"woo_texttitle";s:5:"false";s:19:"woo_font_site_title";a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}s:11:"woo_tagline";s:5:"false";s:16:"woo_font_tagline";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:18:"woo_custom_favicon";s:0:"";s:20:"woo_google_analytics";s:0:"";s:12:"woo_feed_url";s:0:"";s:19:"woo_subscribe_email";s:0:"";s:21:"woo_contactform_email";s:0:"";s:14:"woo_custom_css";s:0:"";s:12:"woo_comments";s:4:"post";s:16:"woo_post_content";s:7:"excerpt";s:15:"woo_post_author";s:5:"false";s:20:"woo_breadcrumbs_show";s:5:"false";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:4:"true";s:13:"woo_font_body";a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:12:"woo_font_nav";a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}s:19:"woo_font_post_title";a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}s:18:"woo_font_post_meta";a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:19:"woo_font_post_entry";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}s:22:"woo_font_widget_titles";a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}s:14:"woo_home_intro";s:58:"Si tu casa se parece a todas, nosotros no tenemos la culpa";s:10:"woo_slider";s:5:"false";s:18:"woo_slider_entries";s:2:"19";s:18:"woo_slider_content";s:5:"false";s:16:"woo_slider_speed";s:3:"500";s:15:"woo_slider_auto";s:4:"true";s:19:"woo_slider_interval";s:4:"6000";s:15:"woo_site_layout";s:11:"layout-full";s:22:"woo_post_image_support";s:4:"true";s:14:"woo_pis_resize";s:4:"true";s:17:"woo_pis_hard_crop";s:4:"true";s:10:"woo_resize";s:4:"true";s:12:"woo_auto_img";s:5:"false";s:11:"woo_thumb_w";s:3:"160";s:11:"woo_thumb_h";s:3:"160";s:15:"woo_thumb_align";s:9:"alignleft";s:16:"woo_thumb_single";s:4:"true";s:12:"woo_single_w";s:3:"200";s:12:"woo_single_h";s:3:"200";s:22:"woo_thumb_single_align";s:10:"alignright";s:13:"woo_rss_thumb";s:5:"false";s:17:"woo_footer_social";s:4:"true";s:19:"woo_footer_aff_link";s:0:"";s:15:"woo_footer_left";s:4:"true";s:20:"woo_footer_left_text";s:0:"";s:16:"woo_footer_right";s:4:"true";s:21:"woo_footer_right_text";s:0:"";s:11:"woo_connect";s:4:"true";s:17:"woo_connect_title";s:0:"";s:19:"woo_connect_content";s:0:"";s:25:"woo_connect_newsletter_id";s:0:"";s:15:"woo_connect_rss";s:4:"true";s:19:"woo_connect_twitter";s:37:"http://twitter.com/#!/originalhousesl";s:20:"woo_connect_facebook";s:81:"http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363";s:19:"woo_connect_blogger";s:42:"http://elblogdeoriginalhouse.blogspot.com/";s:19:"woo_connect_youtube";s:0:"";s:18:"woo_connect_flickr";s:0:"";s:20:"woo_connect_linkedin";s:0:"";s:21:"woo_connect_delicious";s:0:"";s:19:"woo_connect_related";s:5:"false";}', 'yes'),
(173, 0, 'woo_template', 'a:79:{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:15:"Homepage Slider";s:4:"icon";s:6:"slider";s:4:"type";s:7:"heading";}i:38;a:5:{s:4:"name";s:13:"Enable Slider";s:4:"desc";s:34:"Enable the slider on the homepage.";s:2:"id";s:10:"woo_slider";s:3:"std";s:4:"true";s:4:"type";s:8:"checkbox";}i:39;a:6:{s:4:"name";s:14:"Slider Entries";s:4:"desc";s:72:"Select the number of entries that should appear in the home page slider.";s:2:"id";s:18:"woo_slider_entries";s:3:"std";s:1:"3";s:4:"type";s:6:"select";s:7:"options";a:20:{i:0;s:16:"Select a number:";i:1;s:1:"1";i:2;s:1:"2";i:3;s:1:"3";i:4;s:1:"4";i:5;s:1:"5";i:6;s:1:"6";i:7;s:1:"7";i:8;s:1:"8";i:9;s:1:"9";i:10;s:2:"10";i:11;s:2:"11";i:12;s:2:"12";i:13;s:2:"13";i:14;s:2:"14";i:15;s:2:"15";i:16;s:2:"16";i:17;s:2:"17";i:18;s:2:"18";i:19;s:2:"19";}}i:40;a:5:{s:4:"name";s:23:"Featured Slider Content";s:4:"desc";s:32:"Show the post content in slider.";s:2:"id";s:18:"woo_slider_content";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:41;a:5:{s:4:"name";s:15:"Animation Speed";s:4:"desc";s:70:"The time in <b>miliseconds</b> the animation between frames will take.";s:2:"id";s:16:"woo_slider_speed";s:3:"std";s:3:"500";s:4:"type";s:4:"text";}i:42;a:5:{s:4:"name";s:10:"Auto Start";s:4:"desc";s:46:"Set the slider to start sliding automatically.";s:2:"id";s:15:"woo_slider_auto";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:43;a:5:{s:4:"name";s:19:"Auto Slide Interval";s:4:"desc";s:82:"The time in <b>milliseconds</b> each slide pauses for, before sliding to the next.";s:2:"id";s:19:"woo_slider_interval";s:3:"std";s:4:"6000";s:4:"type";s:4:"text";}i:44;a:3:{s:4:"name";s:14:"Layout Options";s:4:"type";s:7:"heading";s:4:"icon";s:6:"layout";}i:45;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:46;a:3:{s:4:"name";s:14:"Dynamic Images";s:4:"type";s:7:"heading";s:4:"icon";s:5:"image";}i:47;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:48;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:49;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:50;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:51;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:52;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:53;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:54;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:55;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:56;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:57;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:58;a:3:{s:4:"name";s:20:"Footer Customization";s:4:"type";s:7:"heading";s:4:"icon";s:6:"footer";}i:59;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:60;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:61;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:62;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:63;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:64;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:65;a:3:{s:4:"name";s:19:"Subscribe & Connect";s:4:"type";s:7:"heading";s:4:"icon";s:7:"connect";}i:66;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:67;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:68;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:69;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:70;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:71;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:72;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:73;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:74;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:75;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:76;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:77;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:78;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'),
(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'),
(367, 0, 'youtube_media_username', '<? echo get_option(\\''youtube_media_username\\''); ?>', 'yes'),
(457, 0, 'wpsc_version', '3.8.4', 'yes'),
(369, 0, 'tubepress-version', '200', 'yes'),
(178, 0, 'woo_alt_stylesheet', 'default.css', 'yes'),
(179, 0, 'woo_logo', 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo-rojo.gif', 'yes'),
(180, 0, 'woo_texttitle', 'false', 'yes'),
(181, 0, 'woo_font_site_title', 'a:5:{s:4:"size";s:2:"40";s:4:"unit";s:2:"px";s:4:"face";s:43:"Calibri, Candara, Segoe, Optima, sans-serif";s:5:"style";s:6:"normal";s:5:"color";s:7:"#FFFFFF";}', 'yes'),
(182, 0, 'woo_tagline', 'false', 'yes'),
(183, 0, 'woo_font_tagline', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(184, 0, 'woo_custom_favicon', '', 'yes'),
(185, 0, 'woo_google_analytics', '', 'yes'),
(186, 0, 'woo_feed_url', '', 'yes'),
(187, 0, 'woo_subscribe_email', '', 'yes'),
(188, 0, 'woo_contactform_email', '', 'yes'),
(189, 0, 'woo_custom_css', '', 'yes'),
(190, 0, 'woo_comments', 'post', 'yes'),
(191, 0, 'woo_post_content', 'excerpt', 'yes'),
(192, 0, 'woo_post_author', 'false', 'yes'),
(193, 0, 'woo_breadcrumbs_show', 'false', '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', 'true', 'yes'),
(203, 0, 'woo_font_body', 'a:5:{s:4:"size";s:2:"18";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(204, 0, 'woo_font_nav', 'a:5:{s:4:"size";s:2:"20";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:6:"normal";s:5:"color";s:7:"#555555";}', 'yes'),
(205, 0, 'woo_font_post_title', 'a:5:{s:4:"size";s:2:"24";s:4:"unit";s:2:"px";s:4:"face";s:17:"Yanone Kaffeesatz";s:5:"style";s:4:"bold";s:5:"color";s:7:"#222222";}', 'yes'),
(206, 0, 'woo_font_post_meta', 'a:5:{s:4:"size";s:2:"12";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(207, 0, 'woo_font_post_entry', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:10:"Droid Sans";s:5:"style";s:6:"normal";s:5:"color";s:7:"#999999";}', 'yes'),
(208, 0, 'woo_font_widget_titles', 'a:5:{s:4:"size";s:2:"16";s:4:"unit";s:2:"px";s:4:"face";s:20:"Terminal Dosis Light";s:5:"style";s:4:"bold";s:5:"color";s:7:"#555555";}', 'yes'),
(209, 0, 'woo_home_intro', 'Si tu casa se parece a todas, nosotros no tenemos la culpa', 'yes'),
(210, 0, 'woo_slider', 'false', 'yes'),
(211, 0, 'woo_slider_entries', '19', 'yes'),
(212, 0, 'woo_slider_content', 'false', 'yes'),
(213, 0, 'woo_slider_speed', '500', 'yes'),
(214, 0, 'woo_slider_auto', 'true', 'yes'),
(215, 0, 'woo_slider_interval', '6000', 'yes'),
(216, 0, 'woo_site_layout', 'layout-full', 'yes'),
(217, 0, 'woo_donate_btn', 'false', 'yes'),
(218, 0, 'woo_donate_meter', 'false', 'yes'),
(219, 0, 'woo_donate_raised', '0', 'yes'),
(220, 0, 'woo_donate_target', '0', 'yes'),
(221, 0, 'woo_donate_currency', 'USD', 'yes'),
(222, 0, 'woo_donate_currency_symbol', '$', 'yes'),
(223, 0, 'woo_donate_title', '', 'yes'),
(224, 0, 'woo_donate_desc', '', 'yes'),
(225, 0, 'woo_donate_meter_large', 'true', 'yes'),
(226, 0, 'woo_donate_btn_text', 'Donate Now!', 'yes'),
(227, 0, 'woo_donate_customlink', '', 'yes'),
(228, 0, 'woo_donate_paypal', '', 'yes'),
(229, 0, 'woo_donate_amount', '', 'yes'),
(230, 0, 'woo_donate_more', 'Select a page:', 'yes'),
(231, 0, 'woo_post_image_support', 'true', 'yes'),
(232, 0, 'woo_pis_resize', 'true', 'yes'),
(233, 0, 'woo_pis_hard_crop', 'true', 'yes'),
(234, 0, 'woo_resize', 'true', 'yes'),
(235, 0, 'woo_auto_img', 'false', 'yes'),
(236, 0, 'woo_thumb_w', '160', 'yes'),
(237, 0, 'woo_thumb_h', '160', 'yes'),
(238, 0, 'woo_thumb_align', 'alignleft', 'yes'),
(239, 0, 'woo_thumb_single', 'true', 'yes'),
(240, 0, 'woo_single_w', '200', 'yes'),
(241, 0, 'woo_single_h', '200', 'yes'),
(242, 0, 'woo_thumb_single_align', 'alignright', 'yes'),
(243, 0, 'woo_rss_thumb', 'false', 'yes'),
(244, 0, 'woo_footer_social', 'true', 'yes'),
(245, 0, 'woo_footer_aff_link', '', 'yes'),
(246, 0, 'woo_footer_left', 'true', 'yes'),
(247, 0, 'woo_footer_left_text', '', 'yes'),
(248, 0, 'woo_footer_right', 'true', 'yes'),
(249, 0, 'woo_footer_right_text', '', 'yes'),
(250, 0, 'woo_connect', 'true', 'yes'),
(251, 0, 'woo_connect_title', '', 'yes'),
(252, 0, 'woo_connect_content', '', 'yes'),
(253, 0, 'woo_connect_newsletter_id', '', 'yes'),
(254, 0, 'woo_connect_rss', 'true', 'yes'),
(255, 0, 'woo_connect_twitter', 'http://twitter.com/#!/originalhousesl', 'yes'),
(256, 0, 'woo_connect_facebook', 'http://www.facebook.com/pages/ORIGINAL-HOUSE-Mobiliario-y-decoracion/161365001363', 'yes'),
(257, 0, 'woo_connect_youtube', '', 'yes'),
(258, 0, 'woo_connect_flickr', '', 'yes'),
(259, 0, 'woo_connect_linkedin', '', 'yes'),
(260, 0, 'woo_connect_delicious', '', 'yes'),
(261, 0, 'woo_connect_related', 'false', 'yes'),
(377, 0, 'tubepress-playlistValue', 'D2B04665B213AE35', 'yes'),
(262, 0, 'woo_settings_encode', 'PHVsPjxsaT48c3Ryb25nPndvb19hbHRfc3R5bGVzaGVldDwvc3Ryb25nPiAtIGRlZmF1bHQuY3NzPC9saT48bGk+PHN0cm9uZz53b29fbG9nbzwvc3Ryb25nPiAtIGh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9sb2dvLXJvam8uZ2lmPC9saT48bGk+PHN0cm9uZz53b29fdGV4dHRpdGxlPC9zdHJvbmc+IC0gZmFsc2U8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3NpdGVfdGl0bGU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX3RhZ2xpbmU8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfdGFnbGluZTwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29fY3VzdG9tX2Zhdmljb248L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19nb29nbGVfYW5hbHl0aWNzPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZmVlZF91cmw8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19zdWJzY3JpYmVfZW1haWw8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb250YWN0Zm9ybV9lbWFpbDwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2N1c3RvbV9jc3M8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb21tZW50czwvc3Ryb25nPiAtIHBvc3Q8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2NvbnRlbnQ8L3N0cm9uZz4gLSBleGNlcnB0PC9saT48bGk+PHN0cm9uZz53b29fcG9zdF9hdXRob3I8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX2JyZWFkY3J1bWJzX3Nob3c8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3RpdGxlX3Nob3c8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3BhZ2luYXRpb25fdHlwZTwvc3Ryb25nPiAtIHBhZ2luYXRlZF9saW5rczwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfY29sb3I8L3N0cm9uZz4gLSAjMDAwMDAwPC9saT48bGk+PHN0cm9uZz53b29fYm9keV9pbWc8L3N0cm9uZz4gLSBodHRwOi8vbG9jYWxob3N0L29yaWdpbmFsaG91c2Uvd3AtY29udGVudC91cGxvYWRzLzIwMTEvMDYvZm9uZG9udWV2YXdlYi5qcGc8L2xpPjxsaT48c3Ryb25nPndvb19ib2R5X3JlcGVhdDwvc3Ryb25nPiAtIG5vLXJlcGVhdDwvbGk+PGxpPjxzdHJvbmc+d29vX2JvZHlfcG9zPC9zdHJvbmc+IC0gY2VudGVyIGNlbnRlcjwvbGk+PGxpPjxzdHJvbmc+d29vX2xpbmtfY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fbGlua19ob3Zlcl9jb2xvcjwvc3Ryb25nPiAtICNmZmY8L2xpPjxsaT48c3Ryb25nPndvb19idXR0b25fY29sb3I8L3N0cm9uZz4gLSAjN2Y3ODc1PC9saT48bGk+PHN0cm9uZz53b29fdHlwb2dyYXBoeTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb250X2JvZHk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfbmF2PC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfdGl0bGU8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfcG9zdF9tZXRhPC9zdHJvbmc+IC0gQXJyYXk8L2xpPjxsaT48c3Ryb25nPndvb19mb250X3Bvc3RfZW50cnk8L3N0cm9uZz4gLSBBcnJheTwvbGk+PGxpPjxzdHJvbmc+d29vX2ZvbnRfd2lkZ2V0X3RpdGxlczwvc3Ryb25nPiAtIEFycmF5PC9saT48bGk+PHN0cm9uZz53b29faG9tZV9pbnRybzwvc3Ryb25nPiAtIFNpIHR1IGNhc2Egc2UgcGFyZWNlIGEgdG9kYXMsIG5vc290cm9zIG5vIHRlbmVtb3MgbGEgY3VscGE8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXI8L3N0cm9uZz4gLSBmYWxzZTwvbGk+PGxpPjxzdHJvbmc+d29vX3NsaWRlcl9lbnRyaWVzPC9zdHJvbmc+IC0gMTk8L2xpPjxsaT48c3Ryb25nPndvb19zbGlkZXJfY29udGVudDwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX3NwZWVkPC9zdHJvbmc+IC0gNTAwPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2F1dG88L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fc2xpZGVyX2ludGVydmFsPC9zdHJvbmc+IC0gNjAwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpdGVfbGF5b3V0PC9zdHJvbmc+IC0gbGF5b3V0LWZ1bGw8L2xpPjxsaT48c3Ryb25nPndvb19wb3N0X2ltYWdlX3N1cHBvcnQ8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fcGlzX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19waXNfaGFyZF9jcm9wPC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX3Jlc2l6ZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19hdXRvX2ltZzwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfdzwvc3Ryb25nPiAtIDE2MDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX2g8L3N0cm9uZz4gLSAxNjA8L2xpPjxsaT48c3Ryb25nPndvb190aHVtYl9hbGlnbjwvc3Ryb25nPiAtIGFsaWdubGVmdDwvbGk+PGxpPjxzdHJvbmc+d29vX3RodW1iX3NpbmdsZTwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19zaW5nbGVfdzwvc3Ryb25nPiAtIDIwMDwvbGk+PGxpPjxzdHJvbmc+d29vX3NpbmdsZV9oPC9zdHJvbmc+IC0gMjAwPC9saT48bGk+PHN0cm9uZz53b29fdGh1bWJfc2luZ2xlX2FsaWduPC9zdHJvbmc+IC0gYWxpZ25yaWdodDwvbGk+PGxpPjxzdHJvbmc+d29vX3Jzc190aHVtYjwvc3Ryb25nPiAtIGZhbHNlPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3NvY2lhbDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfYWZmX2xpbms8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19mb290ZXJfbGVmdF90ZXh0PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fZm9vdGVyX3JpZ2h0PC9zdHJvbmc+IC0gdHJ1ZTwvbGk+PGxpPjxzdHJvbmc+d29vX2Zvb3Rlcl9yaWdodF90ZXh0PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdDwvc3Ryb25nPiAtIHRydWU8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X3RpdGxlPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9jb250ZW50PC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9uZXdzbGV0dGVyX2lkPC9zdHJvbmc+IC0gPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF9yc3M8L3N0cm9uZz4gLSB0cnVlPC9saT48bGk+PHN0cm9uZz53b29fY29ubmVjdF90d2l0dGVyPC9zdHJvbmc+IC0gaHR0cDovL3R3aXR0ZXIuY29tLyMhL29yaWdpbmFsaG91c2VzbDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfZmFjZWJvb2s8L3N0cm9uZz4gLSBodHRwOi8vd3d3LmZhY2Vib29rLmNvbS9wYWdlcy9PUklHSU5BTC1IT1VTRS1Nb2JpbGlhcmlvLXktZGVjb3JhY2lvbi8xNjEzNjUwMDEzNjM8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X2Jsb2dnZXI8L3N0cm9uZz4gLSBodHRwOi8vZWxibG9nZGVvcmlnaW5hbGhvdXNlLmJsb2dzcG90LmNvbS88L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X3lvdXR1YmU8L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X2ZsaWNrcjwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfbGlua2VkaW48L3N0cm9uZz4gLSA8L2xpPjxsaT48c3Ryb25nPndvb19jb25uZWN0X2RlbGljaW91czwvc3Ryb25nPiAtIDwvbGk+PGxpPjxzdHJvbmc+d29vX2Nvbm5lY3RfcmVsYXRlZDwvc3Ryb25nPiAtIGZhbHNlPC9saT48L3VsPg==', 'yes'),
(449, 0, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1309810718', 'yes'),
(450, 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'),
(448, 0, '_site_transient_update_core', 'O:8:"stdClass":3:{s:7:"updates";a:2:{i:0;O:8:"stdClass":7:{s:8:"response";s:6:"latest";s:3:"url";s:24:"http://es.wordpress.org/";s:7:"package";s:49:"http://es.wordpress.org/wordpress-3.1.4-es_ES.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"es_ES";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}i:1;O:8:"stdClass":7:{s:8:"response";s:6:"latest";s:3:"url";s:30:"http://wordpress.org/download/";s:7:"package";s:40:"http://wordpress.org/wordpress-3.1.4.zip";s:7:"current";s:5:"3.1.4";s:6:"locale";s:5:"en_US";s:11:"php_version";s:3:"4.3";s:13:"mysql_version";s:5:"4.1.2";}}s:12:"last_checked";i:1309793459;s:15:"version_checked";s:5:"3.1.4";}', '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:5416:"YTo3Mzp7czoxOToic2JtX3dvb19zYm1fb3B0aW9ucyI7czo3MzoiYToyOntzOjg6InNpZGViYXJzIjthOjA6e31zOjg6InNldHRpbmdzIjthOjE6e3M6NzoiaW5mb2JveCI7czo0OiJzaG93Ijt9fSI7czoxODoid29vX2FsdF9zdHlsZXNoZWV0IjtzOjExOiJkZWZhdWx0LmNzcyI7czoxMjoid29vX2F1dG9faW1nIjtzOjU6ImZhbHNlIjtzOjE0OiJ3b29fYm9keV9jb2xvciI7czo3OiIjMDAwMDAwIjtzOjEyOiJ3b29fYm9keV9pbWciO3M6NzU6Imh0dHA6Ly9sb2NhbGhvc3Qvb3JpZ2luYWxob3VzZS93cC1jb250ZW50L3VwbG9hZHMvMjAxMS8wNi9mb25kb251ZXZhd2ViLmpwZyI7czoxMjoid29vX2JvZHlfcG9zIjtzOjEzOiJjZW50ZXIgY2VudGVyIjtzOjE1OiJ3b29fYm9keV9yZXBlYXQiO3M6OToibm8tcmVwZWF0IjtzOjIwOiJ3b29fYnJlYWRjcnVtYnNfc2hvdyI7czo1OiJmYWxzZSI7czoxNjoid29vX2J1dHRvbl9jb2xvciI7czo3OiIjN2Y3ODc1IjtzOjEyOiJ3b29fY29tbWVudHMiO3M6NDoicG9zdCI7czoxMToid29vX2Nvbm5lY3QiO3M6NDoidHJ1ZSI7czoxOToid29vX2Nvbm5lY3RfYmxvZ2dlciI7czo0MjoiaHR0cDovL2VsYmxvZ2Rlb3JpZ2luYWxob3VzZS5ibG9nc3BvdC5jb20vIjtzOjE5OiJ3b29fY29ubmVjdF9jb250ZW50IjtzOjA6IiI7czoyMToid29vX2Nvbm5lY3RfZGVsaWNpb3VzIjtzOjA6IiI7czoyMDoid29vX2Nvbm5lY3RfZmFjZWJvb2siO3M6ODE6Imh0dHA6Ly93d3cuZmFjZWJvb2suY29tL3BhZ2VzL09SSUdJTkFMLUhPVVNFLU1vYmlsaWFyaW8teS1kZWNvcmFjaW9uLzE2MTM2NTAwMTM2MyI7czoxODoid29vX2Nvbm5lY3RfZmxpY2tyIjtzOjA6IiI7czoyMDoid29vX2Nvbm5lY3RfbGlua2VkaW4iO3M6MDoiIjtzOjI1OiJ3b29fY29ubmVjdF9uZXdzbGV0dGVyX2lkIjtzOjA6IiI7czoxOToid29vX2Nvbm5lY3RfcmVsYXRlZCI7czo1OiJmYWxzZSI7czoxNToid29vX2Nvbm5lY3RfcnNzIjtzOjQ6InRydWUiO3M6MTc6Indvb19jb25uZWN0X3RpdGxlIjtzOjA6IiI7czoxOToid29vX2Nvbm5lY3RfdHdpdHRlciI7czozNzoiaHR0cDovL3R3aXR0ZXIuY29tLyMhL29yaWdpbmFsaG91c2VzbCI7czoxOToid29vX2Nvbm5lY3RfeW91dHViZSI7czowOiIiO3M6MjE6Indvb19jb250YWN0Zm9ybV9lbWFpbCI7czowOiIiO3M6MTQ6Indvb19jdXN0b21fY3NzIjtzOjA6IiI7czoxODoid29vX2N1c3RvbV9mYXZpY29uIjtzOjA6IiI7czoxMjoid29vX2ZlZWRfdXJsIjtzOjA6IiI7czoxMzoid29vX2ZvbnRfYm9keSI7czoxMzM6ImE6NTp7czo0OiJzaXplIjtzOjI6IjE4IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM5OTk5OTkiO30iO3M6MTI6Indvb19mb250X25hdiI7czoxMzM6ImE6NTp7czo0OiJzaXplIjtzOjI6IjIwIjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM1NTU1NTUiO30iO3M6MTk6Indvb19mb250X3Bvc3RfZW50cnkiO3M6MTI2OiJhOjU6e3M6NDoic2l6ZSI7czoyOiIxNiI7czo0OiJ1bml0IjtzOjI6InB4IjtzOjQ6ImZhY2UiO3M6MTA6IkRyb2lkIFNhbnMiO3M6NToic3R5bGUiO3M6Njoibm9ybWFsIjtzOjU6ImNvbG9yIjtzOjc6IiM5OTk5OTkiO30iO3M6MTg6Indvb19mb250X3Bvc3RfbWV0YSI7czoxMjY6ImE6NTp7czo0OiJzaXplIjtzOjI6IjEyIjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxMDoiRHJvaWQgU2FucyI7czo1OiJzdHlsZSI7czo2OiJub3JtYWwiO3M6NToiY29sb3IiO3M6NzoiIzk5OTk5OSI7fSI7czoxOToid29vX2ZvbnRfcG9zdF90aXRsZSI7czoxMzE6ImE6NTp7czo0OiJzaXplIjtzOjI6IjI0IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoxNzoiWWFub25lIEthZmZlZXNhdHoiO3M6NToic3R5bGUiO3M6NDoiYm9sZCI7czo1OiJjb2xvciI7czo3OiIjMjIyMjIyIjt9IjtzOjE5OiJ3b29fZm9udF9zaXRlX3RpdGxlIjtzOjE1OToiYTo1OntzOjQ6InNpemUiO3M6MjoiNDAiO3M6NDoidW5pdCI7czoyOiJweCI7czo0OiJmYWNlIjtzOjQzOiJDYWxpYnJpLCBDYW5kYXJhLCBTZWdvZSwgT3B0aW1hLCBzYW5zLXNlcmlmIjtzOjU6InN0eWxlIjtzOjY6Im5vcm1hbCI7czo1OiJjb2xvciI7czo3OiIjRkZGRkZGIjt9IjtzOjE2OiJ3b29fZm9udF90YWdsaW5lIjtzOjEzMzoiYTo1OntzOjQ6InNpemUiO3M6MjoiMTgiO3M6NDoidW5pdCI7czoyOiJweCI7czo0OiJmYWNlIjtzOjE3OiJZYW5vbmUgS2FmZmVlc2F0eiI7czo1OiJzdHlsZSI7czo2OiJub3JtYWwiO3M6NToiY29sb3IiO3M6NzoiIzk5OTk5OSI7fSI7czoyMjoid29vX2ZvbnRfd2lkZ2V0X3RpdGxlcyI7czoxMzQ6ImE6NTp7czo0OiJzaXplIjtzOjI6IjE2IjtzOjQ6InVuaXQiO3M6MjoicHgiO3M6NDoiZmFjZSI7czoyMDoiVGVybWluYWwgRG9zaXMgTGlnaHQiO3M6NToic3R5bGUiO3M6NDoiYm9sZCI7czo1OiJjb2xvciI7czo3OiIjNTU1NTU1Ijt9IjtzOjE5OiJ3b29fZm9vdGVyX2FmZl9saW5rIjtzOjA6IiI7czoxNToid29vX2Zvb3Rlcl9sZWZ0IjtzOjQ6InRydWUiO3M6MjA6Indvb19mb290ZXJfbGVmdF90ZXh0IjtzOjA6IiI7czoxNjoid29vX2Zvb3Rlcl9yaWdodCI7czo0OiJ0cnVlIjtzOjIxOiJ3b29fZm9vdGVyX3JpZ2h0X3RleHQiO3M6MDoiIjtzOjE3OiJ3b29fZm9vdGVyX3NvY2lhbCI7czo0OiJ0cnVlIjtzOjIwOiJ3b29fZ29vZ2xlX2FuYWx5dGljcyI7czowOiIiO3M6MTQ6Indvb19ob21lX2ludHJvIjtzOjU4OiJTaSB0dSBjYXNhIHNlIHBhcmVjZSBhIHRvZGFzLCBub3NvdHJvcyBubyB0ZW5lbW9zIGxhIGN1bHBhIjtzOjE0OiJ3b29fbGlua19jb2xvciI7czo3OiIjN2Y3ODc1IjtzOjIwOiJ3b29fbGlua19ob3Zlcl9jb2xvciI7czo0OiIjZmZmIjtzOjg6Indvb19sb2dvIjtzOjcxOiJodHRwOi8vbG9jYWxob3N0L29yaWdpbmFsaG91c2Uvd3AtY29udGVudC91cGxvYWRzLzIwMTEvMDYvbG9nby1yb2pvLmdpZiI7czoxOToid29vX3BhZ2luYXRpb25fdHlwZSI7czoxNToicGFnaW5hdGVkX2xpbmtzIjtzOjE3OiJ3b29fcGlzX2hhcmRfY3JvcCI7czo0OiJ0cnVlIjtzOjE0OiJ3b29fcGlzX3Jlc2l6ZSI7czo0OiJ0cnVlIjtzOjE1OiJ3b29fcG9zdF9hdXRob3IiO3M6NToiZmFsc2UiO3M6MTY6Indvb19wb3N0X2NvbnRlbnQiO3M6NzoiZXhjZXJwdCI7czoyMjoid29vX3Bvc3RfaW1hZ2Vfc3VwcG9ydCI7czo0OiJ0cnVlIjtzOjEwOiJ3b29fcmVzaXplIjtzOjQ6InRydWUiO3M6MTM6Indvb19yc3NfdGh1bWIiO3M6NToiZmFsc2UiO3M6MTI6Indvb19zaW5nbGVfaCI7czozOiIyMDAiO3M6MTI6Indvb19zaW5nbGVfdyI7czozOiIyMDAiO3M6MTU6Indvb19zaXRlX2xheW91dCI7czoxMToibGF5b3V0LWZ1bGwiO3M6MTA6Indvb19zbGlkZXIiO3M6NToiZmFsc2UiO3M6MTU6Indvb19zbGlkZXJfYXV0byI7czo0OiJ0cnVlIjtzOjE4OiJ3b29fc2xpZGVyX2NvbnRlbnQiO3M6NToiZmFsc2UiO3M6MTg6Indvb19zbGlkZXJfZW50cmllcyI7czoyOiIxOSI7czoxOToid29vX3NsaWRlcl9pbnRlcnZhbCI7czo0OiI2MDAwIjtzOjE2OiJ3b29fc2xpZGVyX3NwZWVkIjtzOjM6IjUwMCI7czoxOToid29vX3N1YnNjcmliZV9lbWFpbCI7czowOiIiO3M6MTE6Indvb190YWdsaW5lIjtzOjU6ImZhbHNlIjtzOjEzOiJ3b29fdGV4dHRpdGxlIjtzOjU6ImZhbHNlIjtzOjE1OiJ3b29fdGh1bWJfYWxpZ24iO3M6OToiYWxpZ25sZWZ0IjtzOjExOiJ3b29fdGh1bWJfaCI7czozOiIxNjAiO3M6MTY6Indvb190aHVtYl9zaW5nbGUiO3M6NDoidHJ1ZSI7czoyMjoid29vX3RodW1iX3NpbmdsZV9hbGlnbiI7czoxMDoiYWxpZ25yaWdodCI7czoxMToid29vX3RodW1iX3ciO3M6MzoiMTYwIjtzOjE0OiJ3b29fdGl0bGVfc2hvdyI7czo1OiJmYWxzZSI7czoxNDoid29vX3R5cG9ncmFwaHkiO3M6NDoidHJ1ZSI7fQ==";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'),
(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'),
(454, 0, '_transient_timeout_wpsc_theme_path', '1309843276', 'no'),
(455, 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', 'true', 'yes'),
(276, 0, 'framework_woo_disable_shortcodes', 'false', 'yes'),
(277, 0, 'framework_woo_disable_generator', 'false', 'yes'),
(278, 0, 'framework_woo_default_image', '', 'yes'),
(279, 0, 'framework_woo_backend_header_image', '', 'yes'),
(280, 0, 'framework_woo_backend_icon', '', 'yes'),
(281, 0, 'framework_woo_custom_login_logo', '', 'yes'),
(285, 0, 'woo_seo_template', 'a:31:{i:0;a:3:{s:4:"name";s:16:"General Settings";s:4:"icon";s:7:"general";s:4:"type";s:7:"heading";}i:1;a:3:{s:4:"name";s:11:"Please Read";s:4:"type";s:4:"info";s:3:"std";s:399:"Welcome to the WooSEO feature. <br /><small>Here we help you take control of your search engine readiness with some in-built theme options. Our themes do however support some of WordPress.org''s most commonly used SEO plugins - <strong>All-in-One SEO Pack</strong>, <strong>Headspace 2</strong> and <strong>WordPress SEO By Yoast</strong>. Use the checkbox below to use 3rd party plugin data.</small>";}i:2;a:5:{s:4:"name";s:25:"Use 3rd Party Plugin Data";s:4:"desc";s:198:"Meta data added to <strong>custom fields in posts and pages</strong> will be extracted and used where applicable. This typically does not include Homepages and Archives, and only Singular templates.";s:2:"id";s:28:"seo_woo_use_third_party_data";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:3;a:5:{s:4:"name";s:22:"Hide SEO custom fields";s:4:"desc";s:82:"Check this box to hide the input fields created in the post and page edit screens.";s:2:"id";s:19:"seo_woo_hide_fields";s:3:"std";s:5:"false";s:4:"type";s:8:"checkbox";}i:4;a:3:{s:4:"name";s:10:"Page Title";s:4:"icon";s:4:"misc";s:4:"type";s:7:"heading";}i:5;a:5:{s:4:"name";s:9:"Separator";s:4:"desc";s:54:"Define a new separator character for your page titles.";s:2:"id";s:17:"seo_woo_seperator";s:3:"std";s:1:"|";s:4:"type";s:4:"text";}i:6;a:5:{s:4:"name";s:10:"Blog Title";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:8:"blogname";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:7;a:5:{s:4:"name";s:16:"Blog Description";s:4:"desc";s:90:"NOTE: This is the same setting as per the SETTINGS > GENERAL tab in the WordPress backend.";s:2:"id";s:15:"blogdescription";s:3:"std";s:0:"";s:4:"type";s:4:"text";}i:8;a:6:{s:4:"name";s:18:"Enable woo_title()";s:4:"desc";s:153:"woo_title() makes use of WordPress''s built in wp_title() function to control the output for your page titles. It''s also recommended for use with plugins.";s:2:"id";s:16:"seo_woo_wp_title";s:3:"std";s:5:"false";s:5:"class";s:9:"collapsed";s:4:"type";s:8:"checkbox";}i:9;a:6:{s:4:"name";s:21:"Disable Custom Titles";s:4:"desc";s:130:"If you prefer to have uniform titles across you theme. Alternatively they will be generated from custom fields and/or plugin data.";s:2:"id";s:29:"seo_woo_wp_custom_field_title";s:3:"std";s:5:"false";s:5:"class";s:6:"hidden";s:4:"type";s:8:"checkbox";}i:10;a:6:{s:4:"name";s:14:"Paged Variable";s:4:"desc";s:64:"The name variable that will appear then paging through archives.";s:2:"id";s:17:"seo_woo_paged_var";s:3:"std";s:4:"Page";s:5:"class";s:6:"hidden";s:4:"type";s:4:"text";}i:11;a:7:{s:4:"name";s:23:"Paged Variable Position";s:4:"desc";s:57:"Change the position where the paged variable will appear.";s:2:"id";s:21:"seo_woo_paged_var_pos";s:3:"std";s:6:"before";s:5:"class";s:6:"hidden";s:7:"options";a:2:{s:6:"before";s:6:"Before";s:5:"after";s:5:"After";}s:4:"type";s:7:"select2";}i:12;a:7:{s:4:"name";s:21:"Homepage Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_home_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:3:{s:1:"a";s:28:"Blog title; blog description";s:1:"b";s:10:"Blog title";s:1:"c";s:16:"Blog description";}s:4:"type";s:7:"select2";}i:13;a:7:{s:4:"name";s:19:"Single Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:21:"seo_woo_single_layout";s:3:"std";s:0:"";s:5:"class";s:6:"hidden";s:7:"options";a:5:{s:1:"a";s:22:"Page title; Blog title";s:1:"b";s:11:"Page title;";s:1:"c";s:23:"Blog title; Page title;";s:1:"d";s:28:"Page title; Blog description";s:1:"e";s:40:"Blog title; Page title; Blog description";}s:4:"type";s:7:"select2";}i:14;a:7:{s:4:"name";s:17:"Page Title Layout";s:4:"desc";s:65:"Define the order the title, description and meta data appears in.";s:2:"id";s:19:"seo_woo_page_layout";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', '12', 'yes'),
(431, 0, 'tubepress-thumbHeight', '196', 'yes'),
(432, 0, 'tubepress-thumbWidth', '240', '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', 'youtube', 'yes'),
(446, 0, 'woo_title_show', 'false', 'yes'),
(447, 0, '_transient_plugins_delete_result_1', '1', 'yes'),
(459, 0, 'wpsc_needs_update', '1', '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', '0', 'yes'),
(464, 0, 'wpsc_force_ssl', '0', 'yes'),
(465, 0, 'use_pagination', '0', 'yes'),
(466, 0, 'hide_name_link', '0', 'yes'),
(467, 0, 'wpsc_enable_comments', '0', 'yes'),
(468, 0, 'multi_add', '0', 'yes'),
(469, 0, 'hide_addtocart_button', '0', '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', '1', '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', 'default', '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'),
(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'),
(575, 0, '_transient_timeout_wpsc_url_wpsc-default.css', '1309843670', 'no'),
(576, 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'),
(547, 0, '_site_transient_update_plugins', 'O:8:"stdClass":3:{s:12:"last_checked";i:1309800430;s:7:"checked";a:12:{s:19:"akismet/akismet.php";s:5:"2.5.3";s:21:"catablog/catablog.php";s:7:"1.2.9.7";s:43:"custom-post-background/custom-post-back.php";s:7:"1.3.1.0";s:9:"hello.php";s:3:"1.6";s:56:"jquery-vertical-accordion-menu/dcwp_jquery_accordion.php";s:3:"2.6";s:51:"make-filename-lowercase/make-filename-lowercase.php";s:5:"1.0.0";s:57:"sanitize-spanish-filenames/sanitize-spanish-filenames.php";s:5:"1.0.2";s:20:"sticky_menu/init.php";s:3:"0.1";s:35:"thecartpress/TheCartPress.class.php";s:5:"1.0.9";s:23:"tubepress/tubepress.php";s:5:"2.2.0";s:34:"wp-e-commerce/wp-shopping-cart.php";s:5:"3.8.4";s:53:"wp-ecommerce-cvs-importer/wp-ecommerce-cvs-import.php";s:5:"1.0.4";}s:8:"response";a:0:{}}', '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:0:"";s:4:"loop";s:0:"";s:7:"columns";i:2;s:9:"see_title";b:1;s:9:"see_image";b:0;s:10:"image_size";s:9:"thumbnail";s:11:"see_content";b:0;s:11:"see_excerpt";b:1;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:41:{s:12:"legal_notice";s:15:"Checkout notice";s:16:"stock_management";b:0;s:21:"disable_shopping_cart";b:0;s:17:"user_registration";b:0;s:25:"see_buy_button_in_content";b:1;s:25:"see_buy_button_in_excerpt";b:0;s:20:"see_price_in_content";b:0;s:20:"see_price_in_excerpt";b:1;s:17:"downloadable_path";s:70:"D:TrabajoOriginalHousetrunksrc/wp-content/plugins/thecartpress/uploads";s:19:"load_default_styles";b:1;s:23:"search_engine_activated";b:1;s:8:"currency";s:3:"EUR";s:13:"decimal_point";s:1:".";s:19:"thousands_separator";s:1:",";s:11:"unit_weight";s:2:"gr";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:"hide_visibles";b:0;s:18:"search_engine_guid";s:38:"{DADF5346-9293-45CF-B5D3-25F640748359}";s:15:"currency_layout";s:0:"";s:10:"from_email";s:0:"";s:6:"emails";s:0:"";s:22:"hide_downloadable_menu";b:0;s:17:"enabled_wish_list";b:0;s:18:"prices_include_tax";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:17:"products_per_page";i:10;s:20:"see_image_in_content";b:0;s:20:"see_image_in_excerpt";b:0;s:29:"checkout_successfully_message";s:0:"";s:13:"use_tcp_loops";b:0;s:19:"show_back_end_label";b:0;}', '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');
-- --------------------------------------------------------
--
-- 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=359 ;
--
-- 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:"";}}'),
(22, 26, '_wp_attached_file', '2011/06/pattern.jpg'),
(23, 26, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1780";s:6:"height";s:3:"302";s:14:"hwstring_small";s:23:"height=''21'' width=''128''";s:4:"file";s:19:"2011/06/pattern.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"pattern-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:18:"pattern-300x50.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"50";}s:5:"large";a:3:{s:4:"file";s:20:"pattern-1024x173.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"173";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(21, 22, 'catablog-post-meta', 'a:5:{s:5:"image";s:34:"ACRO 66ML - 85x130x45 697€-2.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(20, 21, 'catablog-post-meta', 'a:5:{s:5:"image";s:29:"ACRO-30A-90x150x45-649€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(19, 20, 'catablog-post-meta', 'a:5:{s:5:"image";s:32:"ACRO 66ML - 85x130x45 697€.jpg";s:10:"sub-images";a:0:{}s:4:"link";s:0:"";s:5:"price";s:1:"0";s:12:"product-code";s:0:"";}'),
(28, 34, '_wp_attached_file', '2011/06/2-.jpg'),
(29, 34, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"395";s:14:"hwstring_small";s:23:"height=''84'' width=''128''";s:4:"file";s:14:"2011/06/2-.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:14:"2--150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:14:"2--300x197.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"197";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(30, 35, '_wp_attached_file', '2011/06/3-la-tienda.jpg'),
(31, 35, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1600";s:6:"height";s:4:"1200";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:23:"2011/06/3-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"3-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"3-la-tienda-300x225.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"225";}s:5:"large";a:3:{s:4:"file";s:24:"3-la-tienda-1024x768.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"768";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(32, 36, '_wp_attached_file', '2011/06/3-muebles.jpg'),
(33, 36, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/3-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"3-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"3-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(34, 37, '_wp_attached_file', '2011/06/4-servicios.jpg'),
(35, 37, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"484";s:14:"hwstring_small";s:23:"height=''96'' width=''119''";s:4:"file";s:23:"2011/06/4-servicios.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"4-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"4-servicios-300x242.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"242";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(36, 38, '_wp_attached_file', '2011/06/5-ideas-y-consejos.jpg'),
(37, 38, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"429";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:30:"2011/06/5-ideas-y-consejos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"5-ideas-y-consejos-300x214.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"214";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(38, 39, '_wp_attached_file', '2011/06/7-productos.jpg'),
(39, 39, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"431";s:14:"hwstring_small";s:23:"height=''91'' width=''128''";s:4:"file";s:23:"2011/06/7-productos.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"7-productos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:23:"7-productos-300x215.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"215";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(40, 40, '_wp_attached_file', '2011/06/8-muebles.jpg'),
(41, 40, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"462";s:14:"hwstring_small";s:23:"height=''96'' width=''124''";s:4:"file";s:21:"2011/06/8-muebles.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"8-muebles-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:21:"8-muebles-300x231.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"231";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(42, 41, '_wp_attached_file', '2011/06/9-mesas.jpg'),
(43, 41, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"469";s:14:"hwstring_small";s:23:"height=''96'' width=''122''";s:4:"file";s:19:"2011/06/9-mesas.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:19:"9-mesas-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:19:"9-mesas-300x234.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"234";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(44, 42, '_wp_attached_file', '2011/06/10-mesas-comedor.jpg'),
(45, 42, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"597";s:6:"height";s:3:"423";s:14:"hwstring_small";s:23:"height=''90'' width=''128''";s:4:"file";s:28:"2011/06/10-mesas-comedor.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:28:"10-mesas-comedor-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:28:"10-mesas-comedor-300x212.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"212";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(46, 43, '_wp_attached_file', '2011/06/11-mesas-de-centro-001.jpg'),
(47, 43, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"452";s:14:"hwstring_small";s:23:"height=''96'' width=''128''";s:4:"file";s:34:"2011/06/11-mesas-de-centro-001.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:34:"11-mesas-de-centro-001-300x226.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"226";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(48, 32, '_edit_last', '1'),
(49, 32, 'image', 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg'),
(50, 32, 'seo_follow', 'false'),
(51, 32, 'seo_noindex', 'false'),
(52, 32, '_edit_lock', '1309359498:1'),
(53, 44, '_edit_last', '1'),
(54, 44, '_edit_lock', '1309365245:1'),
(55, 45, '_wp_attached_file', '2011/06/fondo-inicio.jpg'),
(56, 45, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:24:"2011/06/fondo-inicio.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:24:"fondo-inicio-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:24:"fondo-inicio-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:25:"fondo-inicio-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(61, 57, '_edit_last', '1'),
(58, 44, '_wp_page_template', 'template-fullwidth.php'),
(59, 44, 'seo_follow', 'false'),
(60, 44, 'seo_noindex', 'false'),
(62, 57, '_edit_lock', '1309365223:1'),
(63, 57, '_wp_page_template', 'default'),
(64, 57, 'seo_follow', 'false'),
(65, 57, 'seo_noindex', 'false'),
(66, 60, '_menu_item_type', 'post_type'),
(67, 60, '_menu_item_menu_item_parent', '0'),
(68, 60, '_menu_item_object_id', '44'),
(69, 60, '_menu_item_object', 'page'),
(70, 60, '_menu_item_target', ''),
(71, 60, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(72, 60, '_menu_item_xfn', ''),
(73, 60, '_menu_item_url', ''),
(75, 61, '_edit_last', '1'),
(76, 61, '_edit_lock', '1309781085:1'),
(77, 62, '_wp_attached_file', '2011/06/fondo-la-tienda.jpg'),
(78, 62, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-la-tienda.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-la-tienda-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-la-tienda-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-la-tienda-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(79, 63, '_wp_attached_file', '2011/06/fondo-localizanos.jpg'),
(80, 63, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:29:"2011/06/fondo-localizanos.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"fondo-localizanos-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"fondo-localizanos-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:30:"fondo-localizanos-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(81, 64, '_wp_attached_file', '2011/06/fondo-servicios.jpg'),
(82, 64, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:4:"1197";s:6:"height";s:3:"650";s:14:"hwstring_small";s:23:"height=''69'' width=''128''";s:4:"file";s:27:"2011/06/fondo-servicios.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"fondo-servicios-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:27:"fondo-servicios-300x162.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"162";}s:5:"large";a:3:{s:4:"file";s:28:"fondo-servicios-1024x556.jpg";s:5:"width";s:4:"1024";s:6:"height";s:3:"556";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(83, 61, '_wp_page_template', 'template-fullwidth.php'),
(84, 61, 'seo_follow', 'false'),
(85, 61, 'seo_noindex', 'false'),
(86, 69, '_menu_item_type', 'post_type'),
(87, 69, '_menu_item_menu_item_parent', '0'),
(88, 69, '_menu_item_object_id', '61'),
(89, 69, '_menu_item_object', 'page'),
(90, 69, '_menu_item_target', ''),
(91, 69, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(92, 69, '_menu_item_xfn', ''),
(93, 69, '_menu_item_url', ''),
(95, 57, '_wp_trash_meta_status', 'publish'),
(96, 57, '_wp_trash_meta_time', '1309371228'),
(97, 2, '_wp_trash_meta_status', 'publish'),
(98, 2, '_wp_trash_meta_time', '1309371228'),
(271, 116, '_menu_item_type', 'post_type'),
(333, 131, 'seo_noindex', 'false'),
(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', '1309377341:1'),
(153, 81, '_menu_item_type', 'taxonomy'),
(154, 81, '_menu_item_menu_item_parent', '0'),
(155, 81, '_menu_item_object_id', '1'),
(156, 81, '_menu_item_object', 'category'),
(157, 81, '_menu_item_target', ''),
(158, 81, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(159, 81, '_menu_item_xfn', ''),
(160, 81, '_menu_item_url', ''),
(162, 82, '_edit_last', '1'),
(214, 103, '_wp_attachment_metadata', 'a:6:{s:5:"width";s:3:"315";s:6:"height";s:2:"80";s:14:"hwstring_small";s:23:"height=''32'' width=''128''";s:4:"file";s:17:"2011/06/logo1.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"logo1-150x80.gif";s:5:"width";s:3:"150";s:6:"height";s:2:"80";}s:6:"medium";a:3:{s:4:"file";s:16:"logo1-300x76.gif";s:5:"width";s:3:"300";s:6:"height";s:2:"76";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}'),
(213, 103, '_wp_attached_file', '2011/06/logo1.gif'),
(176, 88, '_edit_last', '1'),
(177, 88, '_edit_lock', '1309377614:1'),
(178, 88, '_wp_page_template', 'template-contact.php'),
(179, 88, 'seo_follow', 'false'),
(180, 88, 'seo_noindex', 'false'),
(181, 90, '_menu_item_type', 'post_type'),
(182, 90, '_menu_item_menu_item_parent', '0'),
(183, 90, '_menu_item_object_id', '88'),
(184, 90, '_menu_item_object', 'page'),
(185, 90, '_menu_item_target', ''),
(186, 90, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(187, 90, '_menu_item_xfn', ''),
(188, 90, '_menu_item_url', ''),
(190, 96, '_edit_last', '1'),
(191, 96, '_edit_lock', '1309378399:1'),
(192, 96, '_wp_page_template', 'template-fullwidth.php'),
(193, 96, 'seo_follow', 'false'),
(194, 96, 'seo_noindex', 'false'),
(240, 110, '_menu_item_menu_item_parent', '0'),
(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', ''),
(334, 131, '_wpsc_price', '0'),
(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', ''),
(335, 131, '_wpsc_special_price', '0'),
(332, 131, 'seo_follow', 'false'),
(331, 131, '_edit_lock', '1309800149:1'),
(330, 131, '_edit_last', '1'),
(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', '1309788862: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', ''),
(336, 131, '_wpsc_sku', ''),
(337, 131, '_wpsc_stock', ''),
(338, 131, '_wpsc_product_metadata', 'a:19:{s:25:"wpec_taxes_taxable_amount";s:0:"";s:13:"external_link";s:0:"";s:18:"external_link_text";s:0:"";s:20:"external_link_target";s:0:"";s:6:"weight";s:1:"0";s:11:"weight_unit";s:5:"pound";s:10:"dimensions";a:6:{s:6:"height";s:1:"0";s:11:"height_unit";s:2:"in";s:5:"width";s:2:"0 ";s:10:"width_unit";s:2:"in";s:6:"length";s:1:"0";s:11:"length_unit";s:2:"in";}s:8:"shipping";a:2:{s:5:"local";s:1:"0";s:13:"international";s:1:"0";}s:14:"merchant_notes";s:0:"";s:8:"engraved";s:1:"0";s:23:"can_have_uploaded_image";s:1:"0";s:15:"enable_comments";s:0:"";s:24:"unpublish_when_none_left";s:1:"0";s:11:"no_shipping";s:1:"0";s:16:"quantity_limited";s:1:"0";s:7:"special";s:1:"0";s:17:"display_weight_as";s:5:"pound";s:16:"table_rate_price";a:2:{s:8:"quantity";a:0:{}s:11:"table_price";a:0:{}}s:17:"google_prohibited";s:1:"0";}'),
(339, 131, '_wpsc_is_donation', '0'),
(340, 131, '_wpsc_currency', 'a:0:{}'),
(341, 135, 'tcp_tax_id', '0'),
(342, 135, 'tcp_back_end_label', ''),
(343, 135, 'tcp_hide_buy_button', ''),
(344, 135, 'tcp_exclude_range', ''),
(345, 135, 'tcp_is_downloadable', ''),
(346, 135, 'tcp_max_downloads', '0'),
(347, 135, 'tcp_days_to_expire', '0'),
(348, 135, 'tcp_type', 'SIMPLE'),
(349, 135, 'tcp_is_visible', '1'),
(350, 135, 'tcp_price', '0'),
(351, 135, 'tcp_weight', '0'),
(352, 135, 'tcp_order', ''),
(353, 135, 'tcp_sku', ''),
(354, 135, 'tcp_stock', '-1'),
(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');
-- --------------------------------------------------------
--
-- 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=138 ;
--
-- Volcar la base de datos para la tabla `wp_posts`
--
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Bienvenido a WordPress. Esta es tu primera entrada. Edítala o bórrala, ¡y comienza a publicar!.', '¡Hola mundo!', '', 'publish', 'open', 'open', '', 'hola-mundo', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 0, 'http://localhost/originalhouse/?p=1', 0, 'post', '', 1),
(2, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'trash', 'open', 'open', '', 'pagina-ejemplo', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=2', 0, 'page', '', 0),
(3, 1, '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-28 17:06:34', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?p=3', 0, 'post', '', 0),
(36, 1, '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', '3 MUEBLES', '', 'inherit', 'open', 'open', '', '3-muebles', '', '', '2011-06-29 14:57:15', '2011-06-29 14:57:15', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(34, 1, '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', '2', '', 'inherit', 'open', 'open', '', '2', '', '', '2011-06-29 14:57:13', '2011-06-29 14:57:13', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/2-.jpg', 0, 'attachment', 'image/jpeg', 0),
(35, 1, '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', '3 LA TIENDA', '', 'inherit', 'open', 'open', '', '3-la-tienda', '', '', '2011-06-29 14:57:14', '2011-06-29 14:57:14', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/3-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(33, 1, '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', '1PORTADA', '', 'inherit', 'open', 'open', '', '1portada', '', '', '2011-06-29 14:57:12', '2011-06-29 14:57:12', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/1portada.jpg', 0, 'attachment', 'image/jpeg', 0),
(106, 1, '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-3', '', '', '2011-06-30 12:16:26', '2011-06-30 12:16:26', '', 23, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo2.gif', 0, 'attachment', 'image/gif', 0),
(32, 1, '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', '1', '', 'publish', 'closed', 'closed', '', '1', '', '', '2011-06-29 14:58:18', '2011-06-29 14:58:18', '', 0, 'http://localhost/originalhouse/?post_type=slide&#038;p=32', 0, 'slide', '', 0),
(30, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Custom Login Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_custom_login_logo', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=30', 0, 'wooframework', '', 0),
(29, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Icon', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_icon', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=29', 0, 'wooframework', '', 0),
(28, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Backend Header Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_backend_header_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=28', 0, 'wooframework', '', 0),
(27, 1, '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 'Framework Woo Default Image', '', 'draft', 'closed', 'closed', '', 'woo-wf-framework_woo_default_image', '', '', '2011-06-29 12:39:26', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=27', 0, 'wooframework', '', 0),
(25, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Body Img', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_body_img', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=25', 0, 'wooframework', '', 0),
(26, 1, '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 'pattern', '', 'inherit', 'open', 'open', '', 'pattern', '', '', '2011-06-29 11:43:52', '2011-06-29 11:43:52', '', 25, 'http://localhost/originalhouse/wp-content/uploads/2011/06/pattern.jpg', 0, 'attachment', 'image/jpeg', 0),
(24, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Custom Favicon', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_custom_favicon', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=24', 0, 'wooframework', '', 0),
(23, 1, '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 'Woo Logo', '', 'draft', 'closed', 'closed', '', 'woo-wf-woo_logo', '', '', '2011-06-29 11:42:59', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=wooframework&p=23', 0, 'wooframework', '', 0),
(22, 1, '2011-06-28 17:15:03', '2011-06-28 17:15:03', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e-2', '', '', '2011-06-28 17:15:08', '2011-06-28 17:15:08', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e-2', 1, 'catablog-items', '', 0),
(21, 1, '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 'ACRO 30A 90x150x45 649€', '', 'publish', 'closed', 'open', '', 'acro-30a-90x150x45-649e', '', '', '2011-06-28 17:13:02', '2011-06-28 17:13:02', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-30a-90x150x45-649e', 1, 'catablog-items', '', 0),
(20, 1, '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 'ACRO 66ML 85x130x45 697€', '', 'publish', 'closed', 'open', '', 'acro-66ml-85x130x45-697e', '', '', '2011-06-28 17:13:01', '2011-06-28 17:13:01', '', 0, 'http://localhost/originalhouse/?catablog-items=acro-66ml-85x130x45-697e', 1, 'catablog-items', '', 0),
(37, 1, '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', '4 SERVICIOS', '', 'inherit', 'open', 'open', '', '4-servicios', '', '', '2011-06-29 14:57:16', '2011-06-29 14:57:16', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/4-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(38, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '5 IDEAS Y CONSEJOS', '', 'inherit', 'open', 'open', '', '5-ideas-y-consejos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/5-ideas-y-consejos.jpg', 0, 'attachment', 'image/jpeg', 0),
(39, 1, '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', '7 PRODUCTOS', '', 'inherit', 'open', 'open', '', '7-productos', '', '', '2011-06-29 14:57:17', '2011-06-29 14:57:17', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/7-productos.jpg', 0, 'attachment', 'image/jpeg', 0),
(40, 1, '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', '8 MUEBLES', '', 'inherit', 'open', 'open', '', '8-muebles', '', '', '2011-06-29 14:57:18', '2011-06-29 14:57:18', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/8-muebles.jpg', 0, 'attachment', 'image/jpeg', 0),
(41, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '9 MESAS', '', 'inherit', 'open', 'open', '', '9-mesas', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/9-mesas.jpg', 0, 'attachment', 'image/jpeg', 0),
(42, 1, '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', '10 MESAS COMEDOR', '', 'inherit', 'open', 'open', '', '10-mesas-comedor', '', '', '2011-06-29 14:57:19', '2011-06-29 14:57:19', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/10-mesas-comedor.jpg', 0, 'attachment', 'image/jpeg', 0),
(43, 1, '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', '11 MESAS DE CENTRO 001', '', 'inherit', 'open', 'open', '', '11-mesas-de-centro-001', '', '', '2011-06-29 14:57:20', '2011-06-29 14:57:20', '', 32, 'http://localhost/originalhouse/wp-content/uploads/2011/06/11-mesas-de-centro-001.jpg', 0, 'attachment', 'image/jpeg', 0),
(44, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'publish', 'open', 'open', '', 'inicio', '', '', '2011-06-29 16:34:05', '2011-06-29 16:34:05', '', 0, 'http://localhost/originalhouse/?page_id=44', 0, 'page', '', 0),
(45, 1, '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 'fondo-inicio', '', 'inherit', 'open', 'open', '', 'fondo-inicio', '', '', '2011-06-29 15:49:14', '2011-06-29 15:49:14', '', 44, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-inicio.jpg', 0, 'attachment', 'image/jpeg', 0),
(46, 1, '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision', '', '', '2011-06-29 15:47:40', '2011-06-29 15:47:40', '', 44, 'http://localhost/originalhouse/?p=46', 0, 'revision', '', 0),
(47, 1, '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-2', '', '', '2011-06-29 15:49:39', '2011-06-29 15:49:39', '', 44, 'http://localhost/originalhouse/?p=47', 0, 'revision', '', 0),
(48, 1, '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-3', '', '', '2011-06-29 16:10:17', '2011-06-29 16:10:17', '', 44, 'http://localhost/originalhouse/?p=48', 0, 'revision', '', 0),
(49, 1, '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-4', '', '', '2011-06-29 16:14:08', '2011-06-29 16:14:08', '', 44, 'http://localhost/originalhouse/?p=49', 0, 'revision', '', 0),
(50, 1, '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-5', '', '', '2011-06-29 16:14:23', '2011-06-29 16:14:23', '', 44, 'http://localhost/originalhouse/?p=50', 0, 'revision', '', 0),
(51, 1, '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-6', '', '', '2011-06-29 16:14:35', '2011-06-29 16:14:35', '', 44, 'http://localhost/originalhouse/?p=51', 0, 'revision', '', 0),
(52, 1, '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-7', '', '', '2011-06-29 16:14:53', '2011-06-29 16:14:53', '', 44, 'http://localhost/originalhouse/?p=52', 0, 'revision', '', 0),
(53, 1, '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-8', '', '', '2011-06-29 16:15:46', '2011-06-29 16:15:46', '', 44, 'http://localhost/originalhouse/?p=53', 0, 'revision', '', 0),
(54, 1, '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-9', '', '', '2011-06-29 16:15:57', '2011-06-29 16:15:57', '', 44, 'http://localhost/originalhouse/?p=54', 0, 'revision', '', 0),
(55, 1, '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-10', '', '', '2011-06-29 16:16:16', '2011-06-29 16:16:16', '', 44, 'http://localhost/originalhouse/?p=55', 0, 'revision', '', 0),
(56, 1, '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-11', '', '', '2011-06-29 16:33:10', '2011-06-29 16:33:10', '', 44, 'http://localhost/originalhouse/?p=56', 0, 'revision', '', 0),
(57, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'trash', 'open', 'open', '', 'dsadsa', '', '', '2011-06-29 18:13:48', '2011-06-29 18:13:48', '', 0, 'http://localhost/originalhouse/?page_id=57', 0, 'page', '', 0),
(58, 1, '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision', '', '', '2011-06-29 16:33:40', '2011-06-29 16:33:40', '', 57, 'http://localhost/originalhouse/?p=58', 0, 'revision', '', 0),
(59, 1, '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 'Inicio', '', 'inherit', 'open', 'open', '', '44-revision-12', '', '', '2011-06-29 16:33:35', '2011-06-29 16:33:35', '', 44, 'http://localhost/originalhouse/?p=59', 0, 'revision', '', 0),
(60, 1, '2011-06-29 17:13:45', '2011-06-29 17:13:45', ' ', '', '', 'publish', 'open', 'open', '', '60', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=60', 1, 'nav_menu_item', '', 0),
(61, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\r\n\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'publish', 'open', 'open', '', 'acerca-de', '', '', '2011-06-30 12:29:16', '2011-06-30 12:29:16', '', 0, 'http://localhost/originalhouse/?page_id=61', 0, 'page', '', 0),
(62, 1, '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 'fondo-la-tienda', '', 'inherit', 'open', 'open', '', 'fondo-la-tienda', '', '', '2011-06-29 17:17:03', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-la-tienda.jpg', 0, 'attachment', 'image/jpeg', 0),
(63, 1, '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 'fondo-localizanos', '', 'inherit', 'open', 'open', '', 'fondo-localizanos', '', '', '2011-06-29 17:17:04', '2011-06-29 17:17:04', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-localizanos.jpg', 0, 'attachment', 'image/jpeg', 0),
(64, 1, '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 'fondo-servicios', '', 'inherit', 'open', 'open', '', 'fondo-servicios', '', '', '2011-06-29 17:17:05', '2011-06-29 17:17:05', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/fondo-servicios.jpg', 0, 'attachment', 'image/jpeg', 0),
(65, 1, '2011-06-29 17:15:34', '2011-06-29 17:15:34', 'LA TIENDA\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\n\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\n\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\n\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\n\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\nORIGINAL HOUSE\n\nBIENVENIDOS\n\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision', '', '', '2011-06-29 17:15:34', '2011-06-29 17:15:34', '', 61, 'http://localhost/originalhouse/?p=65', 0, 'revision', '', 0),
(66, 1, '2011-06-29 17:17:15', '2011-06-29 17:17:15', 'LA TIENDA\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'Acerca de', '', 'inherit', 'open', 'open', '', '61-revision-2', '', '', '2011-06-29 17:17:15', '2011-06-29 17:17:15', '', 61, 'http://localhost/originalhouse/?p=66', 0, 'revision', '', 0),
(67, 1, '2011-06-29 17:17:27', '2011-06-29 17:17:27', '&nbsp;\r\n<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\nORIGINAL HOUSE\r\n\r\nBIENVENIDOS\r\n\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-3', '', '', '2011-06-29 17:17:27', '2011-06-29 17:17:27', '', 61, 'http://localhost/originalhouse/?p=67', 0, 'revision', '', 0),
(68, 1, '2011-06-29 17:18:13', '2011-06-29 17:18:13', '<blockquote>\r\n· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-4', '', '', '2011-06-29 17:18:13', '2011-06-29 17:18:13', '', 61, 'http://localhost/originalhouse/?p=68', 0, 'revision', '', 0),
(69, 1, '2011-06-29 17:19:01', '2011-06-29 17:19:01', '· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A\r\n\r\nBIENVENIDOS\r\n ', '', '', 'publish', 'open', 'open', '', '69', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=69', 2, 'nav_menu_item', '', 0),
(70, 1, '2011-07-04 12:05:47', '2011-07-04 12:05:47', '<ul>\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\n</ul>\n<p style="text-align: center;">&nbsp;</p>\n<p style="text-align: center;"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></p>\n\n<h1 style="text-align: center;">BIENVENIDOS</h1>\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-autosave', '', '', '2011-07-04 12:05:47', '2011-07-04 12:05:47', '', 61, 'http://localhost/originalhouse/?p=70', 0, 'revision', '', 0),
(71, 1, '2011-06-29 16:33:42', '2011-06-29 16:33:42', 'dsadsadas', 'dsadsa', '', 'inherit', 'open', 'open', '', '57-revision-2', '', '', '2011-06-29 16:33:42', '2011-06-29 16:33:42', '', 57, 'http://localhost/originalhouse/?p=71', 0, 'revision', '', 0),
(72, 1, '2011-06-28 15:12:45', '2011-06-28 15:12:45', 'Esta es una página de ejemplo, Es diferente a una entrada de un blog porque se mantiene estática y, en la mayoría de temas, se mostrará en la barra de navegación. Casi todo el mundo comienza con una página Sobre mí para presentarse a los potenciales visitantes. Puede decir algo así:\n\n<blockquote>¡Hola!: Soy físico durante el día, lector de manga por las noches y este es mi blog. Vivo en Albacete y tengo un gato llamado Alex. Me encantan los mojitos (y mirar a la gente corriendo en los parques)</blockquote>\n\nO algo así:\n\n<blockquote>La empresa Calcetines XYC se fundó en 1973, y ha estado produciendo calcetines de calidad para sus clientes desde entonces. Se encuentra en Vetusta, tiene unos 2.000 empleados e intenta ayudar en lo que puede para mejorar la vida en Vestusta</blockquote>\n\nDeberías ir a <a href="http://localhost/originalhouse/wp-admin/">tu escritorio</a>, borrar esta página y crear algunas nuevas con tu contenido. ¡A divertirse!', 'Página de ejemplo', '', 'inherit', 'open', 'open', '', '2-revision', '', '', '2011-06-28 15:12:45', '2011-06-28 15:12:45', '', 2, 'http://localhost/originalhouse/?p=72', 0, 'revision', '', 0),
(73, 1, '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'open', 'open', '', '', '', '', '2011-06-29 18:13:53', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?page_id=73', 0, 'page', '', 0),
(74, 1, '2011-06-29 17:18:28', '2011-06-29 17:18:28', '<blockquote>· ORIGINAL HOUSE SE CREO EN EL AÑO 2003 COMO ALTERNATIVA A LAS GRANDES SUPERFICIES Y A UNA DEMANDA EN CRECIMIENTO DE UN ESTILO EN DECORACION MAS PERSONAL.\r\n\r\n· CONSIDERAMOS QUE NUESTROS ARTICULOS TIENEN QUE ESTAR A LA ALTURA DEL CLIENTE MAS EXIGENTE, POR ESO HUIMOS DE LA VENTA FRIA POR INTERNET Y PREFERIMOS TENER UN CONTACTO MAS PERSONALIZADO CON VOSOTROS. NO DUDEIS EN PONEROS EN CONTACTO PARA CUALQUIER CONSULTA.\r\n\r\n· POR LA GRAN ROTACION Y EXCLUSIVIDAD DE NUESTROS ARTICULOS PUEDE QUE DE ALGUNO DE ELLOS NO QUEDEN EXISTENCIAS.\r\n\r\n· HEMOS HECHO DE ESTA TIENDA UN PEQUEÑO MAPAMUNDI EN EL QUE PODRAS ENCONTRAR REFERENCIAS A CASI TODOS LOS RINCONES DEL SUDESTE ASIATICO  Y A LAS ULTIMAS TENDENCIAS DE OCCIDENTE.\r\n\r\n· LUZ TENUE, MUSICA RELAJANTE Y UNA INTENSA MEZCLA DE AROMAS ES LO PRIMERO QUE PERCIBES AL ENTRAR A</blockquote>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'open', 'open', '', '61-revision-5', '', '', '2011-06-29 17:18:28', '2011-06-29 17:18:28', '', 61, 'http://localhost/originalhouse/?p=74', 0, 'revision', '', 0),
(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),
(115, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', '[catablog template="gallery"]', '', '', 'publish', 'closed', 'open', '', '115', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=115', 1, 'nav_menu_item', '', 0),
(116, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', ' 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', 'Proyectos', '', 'publish', 'closed', 'open', '', 'proyectos', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=116', 2, 'nav_menu_item', '', 0),
(117, 1, '2011-07-04 12:15:07', '2011-07-04 12:15:07', ' 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 ', 'Cartelera', '', 'publish', 'closed', 'open', '', '117', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=117', 3, 'nav_menu_item', '', 0),
(76, 1, '2011-06-29 18:58:49', '2011-06-29 18:58:49', ' ', 'Catálogo', '', 'publish', 'open', 'open', '', '76', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=76', 1, 'nav_menu_item', '', 0),
(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),
(119, 1, '2011-07-04 12:15:53', '2011-07-04 12:15:53', '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 ', 'Contacto', '', 'publish', 'closed', 'open', '', 'contacto', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=119', 6, 'nav_menu_item', '', 0),
(120, 1, '2011-07-04 12:15:53', '2011-07-04 12:15:53', ' 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', 'Acerca de', '', 'publish', 'closed', 'open', '', 'acerca-de', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=120', 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', '', 'publish', 'closed', 'closed', '', 'products-page', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 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', '', 'publish', 'closed', 'closed', '', 'checkout', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 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', '', 'publish', 'closed', 'closed', '', 'transaction-results', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?page_id=129', 0, 'page', '', 0),
(111, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Youtube', '', 'publish', 'closed', 'open', '', 'youtube-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=111', 4, 'nav_menu_item', '', 0),
(81, 1, '2011-06-29 18:59:31', '2011-06-29 18:59:31', ' ', 'Proyectos', '', 'publish', 'open', 'open', '', '81', '', '', '2011-06-30 12:25:22', '2011-06-30 12:25:22', '', 0, 'http://localhost/originalhouse/?p=81', 2, 'nav_menu_item', '', 0),
(110, 1, '2011-06-30 12:28:23', '2011-06-30 12:28:23', ' ', 'Cartelera', '', 'publish', 'closed', 'open', '', 'cartelera-2', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=110', 3, 'nav_menu_item', '', 0),
(82, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'publish', 'closed', 'open', '', 'servicios', '', '', '2011-06-29 19:55:41', '2011-06-29 19:55:41', '', 0, 'http://localhost/originalhouse/?page_id=82', 0, 'page', '', 0),
(83, 1, '2011-06-29 19:55:22', '2011-06-29 19:55:22', 'ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.\nREFORMA DE INTERIORES.\nTRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.\nESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.\nROTACIÓN CONSTANTE DE ARTÍCULOS.\nFINANCIACIÓN A 6 MESES SIN INTERESES.\nESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision', '', '', '2011-06-29 19:55:22', '2011-06-29 19:55:22', '', 82, 'http://localhost/originalhouse/?p=83', 0, 'revision', '', 0),
(84, 1, '2011-06-29 19:55:26', '2011-06-29 19:55:26', '<ul>\r\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\r\n <li>REFORMA DE INTERIORES.</li>\r\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\r\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\r\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\r\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\r\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\r\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-revision-2', '', '', '2011-06-29 19:55:26', '2011-06-29 19:55:26', '', 82, 'http://localhost/originalhouse/?p=84', 0, 'revision', '', 0),
(102, 1, '2011-06-29 20:08:37', '2011-06-29 20:08:37', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-10', '', '', '2011-06-29 20:08:37', '2011-06-29 20:08:37', '', 61, 'http://localhost/originalhouse/?p=102', 0, 'revision', '', 0),
(86, 1, '2011-06-29 19:56:42', '2011-06-29 19:56:42', '<ul>\n <li>ATENCIÓN PERSONALIZADA A INTERIORISTAS Y ARQUITECTOS.</li>\n <li>REFORMA DE INTERIORES.</li>\n <li>TRANSPORTE GRATUITO DE MOBILIARIO EN MADRID CAPITAL.</li>\n <li>ESTUDIOS DE INTERIORISMO AL REALIZAR TU COMPRA EN ORIGINAL HOUSE.</li>\n <li>ROTACIÓN CONSTANTE DE ARTÍCULOS.</li>\n <li>FINANCIACIÓN A 6 MESES SIN INTERESES.</li>\n <li>ESTAMOS DETRAS DE MUCHAS SERIES DE TELEVISION Y PUBLICIDAD, OFRECIENDO NUESTROS ARTICULOS PARA ALQUILER.</li>\n</ul>', 'Servicios', '', 'inherit', 'closed', 'open', '', '82-autosave', '', '', '2011-06-29 19:56:42', '2011-06-29 19:56:42', '', 82, 'http://localhost/originalhouse/?p=86', 0, 'revision', '', 0),
(87, 1, '2011-06-29 18:23:03', '2011-06-29 18:23:03', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-6', '', '', '2011-06-29 18:23:03', '2011-06-29 18:23:03', '', 61, 'http://localhost/originalhouse/?p=87', 0, 'revision', '', 0),
(88, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', 'C/ RODRIGUEZ SAN PEDRO, 40\r\n\r\n28015-MADRID\r\n\r\nMETRO:ARGUELLES\r\n\r\nBUS: 2, 16, 21, 61, 202\r\n\r\nPARKING FRENTE A LA TIENDA\r\n\r\nTFNO: 91 543 30 96\r\n\r\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Localízanos', '', 'publish', 'closed', 'open', '', 'localizanos', '', '', '2011-06-29 20:00:14', '2011-06-29 20:00:14', '', 0, 'http://localhost/originalhouse/?page_id=88', 0, 'page', '', 0),
(89, 1, '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision', '', '', '2011-06-29 19:58:34', '2011-06-29 19:58:34', '', 88, 'http://localhost/originalhouse/?p=89', 0, 'revision', '', 0),
(90, 1, '2011-06-29 19:59:13', '2011-06-29 19:59:13', ' ', 'Contacto', '', 'publish', 'closed', 'open', '', '90', '', '', '2011-06-30 12:28:23', '2011-06-30 12:28:23', '', 0, 'http://localhost/originalhouse/?p=90', 5, 'nav_menu_item', '', 0),
(91, 1, '2011-06-29 20:01:16', '2011-06-29 20:01:16', 'C/ RODRIGUEZ SAN PEDRO, 40\n\n28015-MADRID\n\nMETRO:ARGUELLES\n\nBUS: 2, 16, 21, 61, 202\n\nPARKING FRENTE A LA TIENDA\n\nTFNO: 91 543 30 96\n\nEMAIL: <a href="mailto:originalhouse@originalhouse.info">originalhouse@originalhouse.info</a>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-autosave', '', '', '2011-06-29 20:01:16', '2011-06-29 20:01:16', '', 88, 'http://localhost/originalhouse/?p=91', 0, 'revision', '', 0),
(92, 1, '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 'Localízanos', '', 'inherit', 'closed', 'open', '', '88-revision-2', '', '', '2011-06-29 19:58:52', '2011-06-29 19:58:52', '', 88, 'http://localhost/originalhouse/?p=92', 0, 'revision', '', 0),
(93, 1, '2011-06-29 19:57:09', '2011-06-29 19:57:09', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-7', '', '', '2011-06-29 19:57:09', '2011-06-29 19:57:09', '', 61, 'http://localhost/originalhouse/?p=93', 0, 'revision', '', 0),
(95, 1, '2011-06-29 20:08:12', '2011-06-29 20:08:12', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-9', '', '', '2011-06-29 20:08:12', '2011-06-29 20:08:12', '', 61, 'http://localhost/originalhouse/?p=95', 0, 'revision', '', 0),
(94, 1, '2011-06-29 20:07:57', '2011-06-29 20:07:57', '<p style="text-align: center;">ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</p>\r\n<p style="text-align: center;">Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</p>\r\n<p style="text-align: center;">Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</p>\r\n<p style="text-align: center;">Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</p>\r\n<p style="text-align: center;">Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</p>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<p><a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a></p>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n<p>&nbsp;</p>\r\n', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-8', '', '', '2011-06-29 20:07:57', '2011-06-29 20:07:57', '', 61, 'http://localhost/originalhouse/?p=94', 0, 'revision', '', 0),
(96, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog template="gallery"]', 'Catálogo', '', 'publish', 'closed', 'open', '', 'catalogo', '', '', '2011-06-29 20:13:18', '2011-06-29 20:13:18', '', 0, 'http://localhost/originalhouse/?page_id=96', 0, 'page', '', 0),
(97, 1, '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision', '', '', '2011-06-29 20:12:14', '2011-06-29 20:12:14', '', 96, 'http://localhost/originalhouse/?p=97', 0, 'revision', '', 0),
(98, 1, '2011-06-29 20:12:16', '2011-06-29 20:12:16', '[catablog]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-2', '', '', '2011-06-29 20:12:16', '2011-06-29 20:12:16', '', 96, 'http://localhost/originalhouse/?p=98', 0, 'revision', '', 0),
(99, 1, '2011-06-29 20:12:43', '2011-06-29 20:12:43', '[catablog template="gallery"]', 'Catálogo', '', 'inherit', 'closed', 'open', '', '96-revision-3', '', '', '2011-06-29 20:12:43', '2011-06-29 20:12:43', '', 96, 'http://localhost/originalhouse/?p=99', 0, 'revision', '', 0),
(112, 1, '2011-06-30 12:19:48', '2011-06-30 12:19:48', '<ul>\r\n <li>ORIGINAL HOUSE se creo en el año 2003 como alternativa a las grandes superficies y a una demanda en crecimiento de un estilo en decoración más personal.</li>\r\n <li>Consideramos que nuestros artículos tienen que estar a la altura del cliente más exigente, por eso huimos de la venta fría por Internet y preferimos tener un contacto más personalizado con vosotros. No dudéis en poneros en contacto para cualquier consulta.</li>\r\n <li>Por la gran rotación y exclusividad de nuestros articulos puede que de alguno de ellos no queden existencias.</li>\r\n <li>Hemos hecho de esta tienda un pequeño mapamundi en el que podrás encontrar referencias a casi todos los rincones del sudeste asiático y a las últimas tendencias de occidente.</li>\r\n <li>Luz tenue, música relajante y una intensa mezcla de aromas es lo primero que percibes al entrar a</li>\r\n</ul>\r\n<p style="text-align: center;">&nbsp;</p>\r\n<a href="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif"><img class="size-full wp-image-31 aligncenter" title="Logo Original House" src="http://localhost/originalhouse/wp-content/uploads/2011/06/logo.gif" alt="" width="315" height="80" /></a>\r\n<h1 style="text-align: center;">BIENVENIDOS</h1>\r\n&nbsp;', 'La Tienda', '', 'inherit', 'closed', 'open', '', '61-revision-12', '', '', '2011-06-30 12:19:48', '2011-06-30 12:19:48', '', 61, 'http://localhost/originalhouse/?p=112', 0, 'revision', '', 0),
(103, 1, '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 'Logo Original House', '', 'inherit', 'closed', 'open', '', 'logo-2', '', '', '2011-06-30 12:14:01', '2011-06-30 12:14:01', '', 0, 'http://localhost/originalhouse/wp-content/uploads/2011/06/logo1.gif', 0, 'attachment', 'image/gif', 0);
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
(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),
(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),
(123, 1, '2011-07-04 14:12:00', '2011-07-04 14:12:00', '\r\n\r\n\r\n\r\n[tubepress]\r\n\r\n\r\n\r\n\r\n ', '', '', 'publish', 'closed', 'open', '', '123', '', '', '2011-07-04 14:12:00', '2011-07-04 14:12:00', '', 0, 'http://localhost/originalhouse/?p=123', 4, 'nav_menu_item', '', 0),
(130, 1, '2011-07-04 17:21:18', '2011-07-04 17:21:18', '[userlog]', 'Your Account', '', 'publish', 'closed', 'closed', '', 'your-account', '', '', '2011-07-04 17:21:18', '2011-07-04 17:21:18', '', 127, 'http://localhost/originalhouse/?page_id=130', 0, 'page', '', 0),
(131, 1, '2011-07-04 17:22:28', '2011-07-04 17:22:28', 'trtrrtrttrtrrtrttr', 'trtrtrtrtrrttrtr', '', 'publish', 'closed', 'closed', '', 'trtrtrtrtrrttrtr', '', '', '2011-07-04 17:22:28', '2011-07-04 17:22:28', '', 0, 'http://localhost/originalhouse/?post_type=wpsc-product&#038;p=131', 0, 'wpsc-product', '', 0),
(132, 1, '2011-07-04 17:23:31', '2011-07-04 17:23:31', 'trtrrtrttrtrrtrttr', 'trtrtrtrtrrttrtr', '', 'inherit', 'closed', 'open', '', '131-autosave', '', '', '2011-07-04 17:23:31', '2011-07-04 17:23:31', '', 131, 'http://localhost/originalhouse/?p=132', 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-04 17:27:54', '2011-07-04 17:27:54', '', 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-04 17:27:54', '2011-07-04 17:27:54', '', 133, 'http://localhost/originalhouse/?page_id=134', 0, 'page', '', 0),
(135, 1, '2011-07-04 17:27:22', '0000-00-00 00:00:00', '', 'Borrador automático', '', 'auto-draft', 'closed', 'open', '', '', '', '', '2011-07-04 17:27:22', '0000-00-00 00:00:00', '', 0, 'http://localhost/originalhouse/?post_type=tcp_product&p=135', 0, 'tcp_product', '', 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);
-- --------------------------------------------------------
--
-- 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=12 ;
--
-- 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),
(11, 'Product Category', 'product-category', 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),
(131, 11, 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);
-- --------------------------------------------------------
--
-- 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=12 ;
--
-- Volcar la base de datos para la tabla `wp_term_taxonomy`
--
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 1),
(2, 2, 'link_category', '', 0, 7),
(3, 3, 'catablog-terms', '', 0, 3),
(6, 6, 'nav_menu', '', 0, 5),
(7, 7, 'nav_menu', '', 0, 2),
(8, 8, 'nav_menu', '', 0, 6),
(10, 10, 'nav_menu', '', 0, 0),
(11, 11, 'wpsc_product_category', '', 0, 1);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_usermeta`
--
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=26 ;
--
-- Volcar la base de datos para la tabla `wp_usermeta`
--
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'rodax'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(10, 1, 'show_admin_bar_admin', 'false'),
(11, 1, 'aim', ''),
(12, 1, 'yim', ''),
(13, 1, 'jabber', ''),
(14, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
(15, 1, 'wp_user_level', '10'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '3'),
(17, 1, 'closedpostboxes_dashboard', 'a:0:{}'),
(18, 1, 'metaboxhidden_dashboard', 'a:6:{i:0;s:25:"dashboard_recent_comments";i:1;s:17:"dashboard_plugins";i:2;s:21:"dashboard_quick_press";i:3;s:23:"dashboard_recent_drafts";i:4;s:17:"dashboard_primary";i:5;s:19:"dashboard_secondary";}'),
(19, 1, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:63:"dashboard_right_now,dashboard_recent_comments,dashboard_plugins";s:4:"side";s:108:"dashboard_quick_press,dashboard_recent_drafts,dashboard_primary,dashboard_incoming_links,dashboard_secondary";s:7:"column3";s:0:"";s:7:"column4";s:0:"";}'),
(20, 1, 'screen_layout_dashboard', '2'),
(21, 1, 'wp_user-settings', 'm6=o&m7=o&m8=o&m9=o&m5=o&imgsize=full&m4=o&m11=o&hidetb=1&editor=tinymce&m12=o'),
(22, 1, 'wp_user-settings-time', '1309378185'),
(23, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(24, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}'),
(25, 1, 'nav_menu_recently_edited', '10');
-- --------------------------------------------------------
--
-- 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');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_also_bought`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_also_bought` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`selected_product` bigint(20) unsigned NOT NULL DEFAULT '0',
`associated_product` bigint(20) unsigned NOT NULL DEFAULT '0',
`quantity` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_also_bought`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_cart_contents`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_cart_contents` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`prodid` bigint(20) unsigned NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL DEFAULT '',
`purchaseid` bigint(20) unsigned NOT NULL DEFAULT '0',
`price` decimal(11,2) NOT NULL DEFAULT '0.00',
`pnp` decimal(11,2) NOT NULL DEFAULT '0.00',
`tax_charged` decimal(11,2) NOT NULL DEFAULT '0.00',
`gst` decimal(11,2) NOT NULL DEFAULT '0.00',
`quantity` int(10) unsigned NOT NULL DEFAULT '0',
`donation` varchar(1) NOT NULL DEFAULT '0',
`no_shipping` varchar(1) NOT NULL DEFAULT '0',
`custom_message` text NOT NULL,
`files` text NOT NULL,
`meta` longtext,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_cart_contents`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_checkout_forms`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_checkout_forms` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`type` varchar(64) NOT NULL DEFAULT '',
`mandatory` varchar(1) NOT NULL DEFAULT '0',
`display_log` char(1) NOT NULL DEFAULT '0',
`default` varchar(128) NOT NULL DEFAULT '0',
`active` varchar(1) NOT NULL DEFAULT '1',
`checkout_order` int(10) unsigned NOT NULL DEFAULT '0',
`unique_name` varchar(255) NOT NULL DEFAULT '',
`options` varchar(255) NOT NULL DEFAULT '',
`checkout_set` varchar(64) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `checkout_order` (`checkout_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=19 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_checkout_forms`
--
INSERT INTO `wp_wpsc_checkout_forms` (`id`, `name`, `type`, `mandatory`, `display_log`, `default`, `active`, `checkout_order`, `unique_name`, `options`, `checkout_set`) VALUES
(1, 'Your billing/contact details', 'heading', '0', '0', '', '1', 1, '', '', '0'),
(2, 'First Name', 'text', '1', '1', '', '1', 2, 'billingfirstname', '', '0'),
(3, 'Last Name', 'text', '1', '1', '', '1', 3, 'billinglastname', '', '0'),
(4, 'Address', 'address', '1', '0', '', '1', 4, 'billingaddress', '', '0'),
(5, 'City', 'city', '1', '0', '', '1', 5, 'billingcity', '', '0'),
(6, 'State', 'text', '0', '0', '', '1', 6, 'billingstate', '', '0'),
(7, 'Country', 'country', '1', '0', '', '1', 7, 'billingcountry', '', '0'),
(8, 'Postal Code', 'text', '0', '0', '', '1', 8, 'billingpostcode', '', '0'),
(9, 'Email', 'email', '1', '1', '', '1', 9, 'billingemail', '', '0'),
(10, 'Shipping Address', 'heading', '0', '0', '', '1', 10, 'delivertoafriend', '', '0'),
(11, 'First Name', 'text', '0', '0', '', '1', 11, 'shippingfirstname', '', '0'),
(12, 'Last Name', 'text', '0', '0', '', '1', 12, 'shippinglastname', '', '0'),
(13, 'Address', 'address', '0', '0', '', '1', 13, 'shippingaddress', '', '0'),
(14, 'City', 'city', '0', '0', '', '1', 14, 'shippingcity', '', '0'),
(15, 'State', 'text', '0', '0', '', '1', 15, 'shippingstate', '', '0'),
(16, 'Country', 'delivery_country', '0', '0', '', '1', 16, 'shippingcountry', '', '0'),
(17, 'Postal Code', 'text', '0', '0', '', '1', 17, 'shippingpostcode', '', '0'),
(18, 'Phone', 'text', '1', '0', '', '1', 8, 'billingphone', '', '0');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_claimed_stock`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_claimed_stock` (
`product_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`variation_stock_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`stock_claimed` float NOT NULL,
`last_activity` datetime NOT NULL,
`cart_id` varchar(255) NOT NULL DEFAULT '0',
`cart_submitted` varchar(1) NOT NULL DEFAULT '0',
UNIQUE KEY `unique_key` (`product_id`,`variation_stock_id`,`cart_id`),
KEY `last_activity` (`last_activity`),
KEY `cart_submitted` (`cart_submitted`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Volcar la base de datos para la tabla `wp_wpsc_claimed_stock`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_coupon_codes`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_coupon_codes` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`coupon_code` varchar(255) DEFAULT '',
`value` decimal(11,2) NOT NULL DEFAULT '0.00',
`is-percentage` char(1) NOT NULL DEFAULT '0',
`use-once` char(1) NOT NULL DEFAULT '0',
`is-used` char(1) NOT NULL DEFAULT '0',
`active` char(1) NOT NULL DEFAULT '1',
`every_product` varchar(255) NOT NULL DEFAULT '',
`start` datetime NOT NULL,
`expiry` datetime NOT NULL,
`condition` text,
PRIMARY KEY (`id`),
KEY `coupon_code` (`coupon_code`),
KEY `active` (`active`),
KEY `start` (`start`),
KEY `expiry` (`expiry`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_coupon_codes`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_currency_list`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_currency_list` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country` varchar(255) NOT NULL DEFAULT '',
`isocode` char(2) DEFAULT '',
`currency` varchar(255) NOT NULL DEFAULT '',
`symbol` varchar(10) NOT NULL DEFAULT '',
`symbol_html` varchar(10) NOT NULL DEFAULT '',
`code` char(3) NOT NULL DEFAULT '',
`has_regions` char(1) NOT NULL DEFAULT '0',
`tax` varchar(8) NOT NULL DEFAULT '',
`continent` varchar(20) NOT NULL DEFAULT '',
`visible` varchar(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=242 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_currency_list`
--
INSERT INTO `wp_wpsc_currency_list` (`id`, `country`, `isocode`, `currency`, `symbol`, `symbol_html`, `code`, `has_regions`, `tax`, `continent`, `visible`) VALUES
(1, 'Mauritania', 'MR', 'Mauritanian Ouguiya', '', '', 'MRO', '0', '0', 'africa', '1'),
(2, 'Martinique (French)', 'MQ', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'southamerica', '1'),
(3, 'Malta', 'MT', 'Maltese Lira', '', '', 'MTL', '0', '0', 'europe', '1'),
(4, 'Marshall Islands', 'MH', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(5, 'Mali', 'ML', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(6, 'Maldives', 'MV', 'Maldive Rufiyaa', '', '', 'MVR', '0', '0', 'asiapacific', '1'),
(7, 'Malaysia', 'MY', 'Malaysian Ringgit', '', '', 'MYR', '0', '0', 'asiapacific', '1'),
(8, 'Malawi', 'MW', 'Malawi Kwacha', '', '', 'MWK', '0', '0', 'africa', '1'),
(9, 'Madagascar', 'MG', 'Malagasy Franc', '', '', 'MGF', '0', '0', 'africa', '1'),
(10, 'Macau', 'MO', 'Macau Pataca', '', '', 'MOP', '0', '0', 'asiapacific', '1'),
(11, 'Macedonia', 'MK', 'Denar', '', '', 'MKD', '0', '0', 'europe', '1'),
(12, 'Luxembourg', 'LU', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(13, 'Lithuania', 'LT', 'Lithuanian Litas', '', '', 'LTL', '0', '0', 'europe', '1'),
(14, 'Liechtenstein', 'LI', 'Swiss Franc', '', '', 'CHF', '0', '0', 'europe', '1'),
(15, 'Libya', 'LY', 'Libyan Dinar', '', '', 'LYD', '0', '0', 'africa', '1'),
(16, 'Liberia', 'LR', 'Liberian Dollar', '$', '&#036;', 'LRD', '0', '0', 'africa', '1'),
(17, 'Lesotho', 'LS', 'Lesotho Loti', '', '', 'LSL', '0', '0', 'africa', '1'),
(18, 'Lebanon', 'LB', 'Lebanese Pound', '', '', 'LBP', '0', '0', 'asiapacific', '1'),
(19, 'Latvia', 'LV', 'Latvian Lats', '', '', 'LVL', '0', '0', 'europe', '1'),
(20, 'Laos', 'LA', 'Lao Kip', '', '', 'LAK', '0', '0', 'asiapacific', '1'),
(21, 'Kyrgyzstan', 'KG', 'Som', '', '', 'KGS', '0', '0', 'asiapacific', '1'),
(22, 'Kuwait', 'KW', 'Kuwaiti Dinar', '', '', 'KWD', '0', '0', 'asiapacific', '1'),
(23, 'Korea, South', 'KR', 'Korean Won', '', '', 'KRW', '0', '0', 'asiapacific', '1'),
(24, 'Korea, North', 'KP', 'North Korean Won', '', '', 'KPW', '0', '0', 'asiapacific', '1'),
(25, 'Kiribati', 'KI', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(26, 'Kenya', 'KE', 'Kenyan Shilling', '', '', 'KES', '0', '0', 'africa', '1'),
(27, 'Kazakhstan', 'KZ', 'Kazakhstan Tenge', '', '', 'KZT', '0', '0', 'asiapacific', '1'),
(28, 'Jordan', 'JO', 'Jordanian Dinar', '', '', 'JOD', '0', '0', 'asiapacific', '1'),
(29, 'Jersey', 'JE', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(30, 'Japan', 'JP', 'Japanese Yen', '¥', '&#165;', 'JPY', '0', '0', 'asiapacific', '1'),
(31, 'Jamaica', 'JM', 'Jamaican Dollar', '$', '&#036;', 'JMD', '0', '0', 'southamerica', '1'),
(32, 'Ivory Coast', 'CI', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(33, 'Italy', 'IT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(34, 'Isle of Man', 'IM', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(35, 'Israel', 'IL', 'Israeli New Shekel', '', '', 'ILS', '0', '0', 'asiapacific', '1'),
(36, 'Ireland', 'IE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(37, 'Iraq', 'IQ', 'Iraqi Dinar', '', '', 'IQD', '0', '0', 'asiapacific', '1'),
(38, 'Indonesia', 'ID', 'Indonesian Rupiah', '', '', 'IDR', '0', '0', 'asiapacific', '1'),
(39, 'Iran', 'IR', 'Iranian Rial', '', '', 'IRR', '0', '0', 'asiapacific', '1'),
(40, 'India', 'IN', 'Indian Rupee', '', '', 'INR', '0', '0', 'asiapacific', '1'),
(41, 'Iceland', 'IS', 'Iceland Krona', '', '', 'ISK', '0', '0', 'europe', '1'),
(42, 'Hungary', 'HU', 'Hungarian Forint', '', '', 'HUF', '0', '0', 'europe', '1'),
(43, 'Hong Kong', 'HK', 'Hong Kong Dollar', '$', '&#036;', 'HKD', '0', '0', 'asiapacific', '1'),
(44, 'Honduras', 'HN', 'Honduran Lempira', '', '', 'HNL', '0', '0', 'southamerica', '1'),
(45, 'Heard Island and McDonald Islands', 'HM', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(46, 'Haiti', 'HT', 'Haitian Gourde', '', '', 'HTG', '0', '0', 'southamerica', '1'),
(47, 'Guyana', 'GY', 'Guyana Dollar', '$', '&#036;', 'GYD', '0', '0', 'southamerica', '1'),
(48, 'Guinea Bissau', 'GW', 'Guinea-Bissau Peso', '', '', 'GWP', '0', '0', 'africa', '1'),
(49, 'Guinea', 'GN', 'Guinea Franc', '', '', 'GNF', '0', '0', 'africa', '1'),
(50, 'Guernsey', 'GF', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(51, 'Guatemala', 'GT', 'Guatemalan Quetzal', '', '', 'QTQ', '0', '0', 'southamerica', '1'),
(52, 'Guam (USA)', 'GU', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(53, 'Grenada', 'GD', 'East Carribean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(54, 'Guadeloupe (French)', 'GP', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'southamerica', '1'),
(55, 'Greenland', 'GL', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(56, 'Greece', 'GR', 'Euro', '', '&#8364;', 'EUR', '0', '19', 'europe', '1'),
(57, 'Gibraltar', 'GI', 'Gibraltar Pound', '', '', 'GIP', '0', '0', 'europe', '1'),
(58, 'Ghana', 'GH', 'Ghanaian Cedi', '', '', 'GHC', '0', '0', 'africa', '1'),
(59, 'Germany', 'DE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(60, 'Georgia', 'GE', 'Georgian Lari', '', '', 'GEL', '0', '0', 'europe', '1'),
(61, 'Gambia', 'GM', 'Gambian Dalasi', '', '', 'GMD', '0', '0', 'africa', '1'),
(62, 'Gabon', 'GA', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(63, 'French Southern Territories', 'TF', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'africa', '1'),
(64, 'France', 'FR', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(65, 'Finland', 'FI', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(66, 'Fiji', 'FJ', 'Fiji Dollar', '$', '&#036;', 'FJD', '0', '0', 'asiapacific', '1'),
(67, 'Faroe Islands', 'FO', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(68, 'Falkland Islands', 'FK', 'Falkland Islands Pound', '', '', 'FKP', '0', '0', 'southamerica', '1'),
(69, 'Ethiopia', 'ET', 'Ethiopian Birr', '', '', 'ETB', '0', '0', 'africa', '1'),
(70, 'Estonia', 'EE', 'Estonian Kroon', '', '', 'EEK', '0', '0', 'europe', '1'),
(71, 'Eritrea', 'ER', 'Eritrean Nakfa', '', '', 'ERN', '0', '0', 'africa', '1'),
(72, 'Equatorial Guinea', 'GQ', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(73, 'El Salvador', 'SV', 'El Salvador Colon', '', '', 'SVC', '0', '0', 'southamerica', '1'),
(74, 'Egypt', 'EG', 'Egyptian Pound', '', '', 'EGP', '0', '0', 'africa', '1'),
(75, 'Ecuador', 'EC', 'Ecuador Sucre', '', '', 'ECS', '0', '0', 'southamerica', '1'),
(76, 'East Timor', 'TP', 'Timor Escudo', '', '', 'TPE', '0', '0', 'asiapacific', '1'),
(77, 'Dominican Republic', 'DO', 'Dominican Peso', '', '', 'DOP', '0', '0', 'southamerica', '1'),
(78, 'Dominica', 'DM', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'southamerica', '1'),
(79, 'Djibouti', 'DJ', 'Djibouti Franc', '', '', 'DJF', '0', '0', 'africa', '1'),
(80, 'Denmark', 'DK', 'Danish Krone', '', '', 'DKK', '0', '0', 'europe', '1'),
(81, 'Democratic Republic of Congo', 'CD', 'Francs', '', '', 'CDF', '0', '0', 'africa', '1'),
(82, 'Czech Rep.', 'CZ', 'Czech Koruna', '', '', 'CZK', '0', '0', 'europe', '1'),
(83, 'Cyprus', 'CY', 'Cyprus Pound', '', '', 'CYP', '0', '0', 'europe', '1'),
(84, 'Cuba', 'CU', 'Cuban Peso', '', '', 'CUP', '0', '0', 'northamerica', '1'),
(85, 'Croatia', 'HR', 'Croatian Kuna', '', '', 'HRK', '0', '0', 'europe', '1'),
(86, 'Costa Rica', 'CR', 'Costa Rican Colon', '', '', 'CRC', '0', '0', 'southamerica', '1'),
(87, 'Cook Islands', 'CK', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(88, 'Congo', 'CG', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(89, 'Comoros', 'KM', 'Comoros Franc', '', '', 'KMF', '0', '0', 'africa', '1'),
(90, 'Colombia', 'CO', 'Colombian Peso', '', '', 'COP', '0', '0', 'southamerica', '1'),
(91, 'Cocos (Keeling) Islands', 'CC', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(92, 'Christmas Island', 'CX', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(93, 'Chile', 'CL', 'Chilean Peso', '', '', 'CLP', '0', '0', 'asiapacific', '1'),
(94, 'China', 'CN', 'Yuan Renminbi', '', '', 'CNY', '0', '0', 'asiapacific', '1'),
(95, 'Chad', 'TD', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(96, 'Central African Republic', 'CF', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(97, 'Cayman Islands', 'KY', 'Cayman Islands Dollar', '$', '&#036;', 'KYD', '0', '0', 'northamerica', '1'),
(98, 'Cape Verde', 'CV', 'Cape Verde Escudo', '', '', 'CVE', '0', '0', 'africa', '1'),
(99, 'Cameroon', 'CM', 'CFA Franc BEAC', '', '', 'XAF', '0', '0', 'africa', '1'),
(100, 'Canada', 'CA', 'Canadian Dollar', '$', '&#036;', 'CAD', '1', '', 'northamerica', '1'),
(101, 'Cambodia', 'KH', 'Kampuchean Riel', '', '', 'KHR', '0', '0', 'asiapacific', '1'),
(102, 'Burundi', 'BI', 'Burundi Franc', '', '', 'BIF', '0', '0', 'africa', '1'),
(103, 'Burkina Faso', 'BF', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(104, 'Bulgaria', 'BG', 'Bulgarian Lev', '', '', 'BGL', '0', '0', 'europe', '1'),
(105, 'Brunei Darussalam', 'BN', 'Brunei Dollar', '$', '&#036;', 'BND', '0', '0', 'asiapacific', '1'),
(106, 'British Indian Ocean Territory', 'IO', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(107, 'Brazil', 'BR', 'Brazilian Real', '', '', 'BRL', '0', '0', 'southamerica', '1'),
(108, 'Bouvet Island', 'BV', 'Norwegian Krone', '', '', 'NOK', '0', '0', 'africa', '1'),
(109, 'Botswana', 'BW', 'Botswana Pula', '', '', 'BWP', '0', '0', 'africa', '1'),
(110, 'Bosnia-Herzegovina', 'BA', 'Marka', '', '', 'BAM', '0', '0', 'europe', '1'),
(111, 'Bolivia', 'BO', 'Boliviano', '', '', 'BOB', '0', '0', 'southamerica', '1'),
(112, 'Bhutan', 'BT', 'Bhutan Ngultrum', '', '', 'BTN', '0', '0', 'asiapacific', '1'),
(113, 'Bermuda', 'BM', 'Bermudian Dollar', '$', '&#036;', 'BMD', '0', '0', 'europe', '1'),
(114, 'Benin', 'BJ', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(115, 'Belize', 'BZ', 'Belize Dollar', '$', '&#036;', 'BZD', '0', '0', 'northamerica', '1'),
(116, 'Belgium', 'BE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(117, 'Belarus', 'BY', 'Belarussian Ruble', '', '', 'BYB', '0', '0', 'europe', '1'),
(118, 'Barbados', 'BB', 'Barbados Dollar', '$', '&#036;', 'BBD', '0', '0', 'southamerica', '1'),
(119, 'Bangladesh', 'BD', 'Bangladeshi Taka', '', '', 'BDT', '0', '0', 'asiapacific', '1'),
(120, 'Bahrain', 'BH', 'Bahraini Dinar', '', '', 'BHD', '0', '0', 'asiapacific', '1'),
(121, 'Bahamas', 'BS', 'Bahamian Dollar', '$', '&#036;', 'BSD', '0', '0', 'northamerica', '1'),
(122, 'Azerbaijan', 'AZ', 'Azerbaijanian Manat', '', '', 'AZM', '0', '0', 'asiapacific', '1'),
(123, 'Austria', 'AT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(124, 'Aruba', 'AW', 'Aruban Guilder', '', '', 'AWG', '0', '0', 'southamerica', '1'),
(125, 'Armenia', 'AM', 'Armenian Dram', '', '', 'AMD', '0', '0', 'asiapacific', '1'),
(126, 'Argentina', 'AR', 'Argentine Peso', '', '', 'ARS', '0', '0', 'southamerica', '1'),
(127, 'Antigua and Barbuda', 'AG', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(128, 'Antarctica', 'AQ', 'Dollar', '$', '&#036;', 'ATA', '0', '0', 'antarctica', '1'),
(129, 'Anguilla', 'AI', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(130, 'Angola', 'AO', 'Angolan New Kwanza', '', '', 'AON', '0', '0', 'africa', '1'),
(131, 'Andorra', 'AD', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(132, 'American Samoa', 'AS', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(133, 'Algeria', 'DZ', 'Algerian Dinar', '', '', 'DZD', '0', '0', 'africa', '1'),
(134, 'Albania', 'AL', 'Albanian Lek', '', '', 'ALL', '0', '0', 'europe', '1'),
(135, 'Afghanistan', 'AF', 'Afghanistan Afghani', '', '', 'AFA', '0', '0', 'asiapacific', '1'),
(136, 'USA', 'US', 'US Dollar', '$', '&#036;', 'USD', '1', '', 'northamerica', '1'),
(137, 'Australia', 'AU', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(138, 'Great Britain', 'GB', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'europe', '1'),
(139, 'Mauritius', 'MU', 'Mauritius Rupee', '', '', 'MUR', '0', '0', 'africa', '1'),
(140, 'Mayotte', 'YT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(141, 'Mexico', 'MX', 'Mexican Nuevo Peso', '', '', 'MXN', '0', '0', 'northamerica', '1'),
(142, 'Micronesia', 'FM', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(143, 'Moldova', 'MD', 'Moldovan Leu', '', '', 'MDL', '0', '0', 'europe', '1'),
(144, 'Monaco', 'MC', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(145, 'Mongolia', 'MN', 'Mongolian Tugrik', '', '', 'MNT', '0', '0', 'asiapacific', '1'),
(146, 'Montserrat', 'MS', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'africa', '1'),
(147, 'Morocco', 'MA', 'Moroccan Dirham', '', '', 'MAD', '0', '0', 'africa', '1'),
(148, 'Mozambique', 'MZ', 'Mozambique Metical', '', '', 'MZM', '0', '0', 'africa', '1'),
(149, 'Myanmar', 'MM', 'Myanmar Kyat', '', '', 'MMK', '0', '0', 'asiapacific', '1'),
(150, 'Namibia', 'NA', 'Namibian Dollar', '$', '&#036;', 'NAD', '0', '0', 'africa', '1'),
(151, 'Nauru', 'NR', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(152, 'Nepal', 'NP', 'Nepalese Rupee', '', '', 'NPR', '0', '0', 'asiapacific', '1'),
(153, 'Netherlands', 'NL', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(154, 'Netherlands Antilles', 'AN', 'Netherlands Antillean Guilder', '', '', 'ANG', '0', '0', 'africa', '1'),
(155, 'New Caledonia (French)', 'NC', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(156, 'New Zealand', 'NZ', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '12.5', 'asiapacific', '1'),
(157, 'Nicaragua', 'NI', 'Nicaraguan Cordoba Oro', '', '', 'NIC', '0', '0', 'northamerica', '1'),
(158, 'Niger', 'NE', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(159, 'Nigeria', 'NG', 'Nigerian Naira', '', '', 'NGN', '0', '0', 'africa', '1'),
(160, 'Niue', 'NU', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(161, 'Norfolk Island', 'NF', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(162, 'Northern Mariana Islands', 'MP', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(163, 'Norway', 'NO', 'Norwegian Krone', '', '', 'NOK', '0', '0', 'europe', '1'),
(164, 'Oman', 'OM', 'Omani Rial', '', '', 'OMR', '0', '0', 'asiapacific', '1'),
(165, 'Pakistan', 'PK', 'Pakistan Rupee', '', '', 'PKR', '0', '0', 'asiapacific', '1'),
(166, 'Palau', 'PW', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'asiapacific', '1'),
(167, 'Panama', 'PA', 'Panamanian Balboa', '', '', 'PAB', '0', '0', 'southamerica', '1'),
(168, 'Papua New Guinea', 'PG', 'Papua New Guinea Kina', '', '', 'PGK', '0', '0', 'asiapacific', '1'),
(169, 'Paraguay', 'PY', 'Paraguay Guarani', '', '', 'PYG', '0', '0', 'southamerica', '1'),
(170, 'Peru', 'PE', 'Peruvian Nuevo Sol', '', '', 'PEN', '0', '0', 'southamerica', '1'),
(171, 'Philippines', 'PH', 'Philippine Peso', '', '', 'PHP', '0', '0', 'asiapacific', '1'),
(172, 'Pitcairn Island', 'PN', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(173, 'Poland', 'PL', 'Polish Zloty', '', '', 'PLN', '0', '0', 'europe', '1'),
(174, 'Polynesia (French)', 'PF', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(175, 'Portugal', 'PT', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(176, 'Puerto Rico', 'PR', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(177, 'Qatar', 'QA', 'Qatari Rial', '', '', 'QAR', '0', '0', 'asiapacific', '1'),
(178, 'Reunion (French)', 'RE', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(179, 'Romania', 'RO', 'Romanian Leu', '', '', 'RON', '0', '0', 'europe', '1'),
(180, 'Russia', 'RU', 'Russian Ruble', '', '', 'RUR', '0', '0', 'europe', '1'),
(181, 'Rwanda', 'RW', 'Rwanda Franc', '', '', 'RWF', '0', '0', 'africa', '1'),
(182, 'Saint Helena', 'SH', 'St. Helena Pound', '', '', 'SHP', '0', '0', 'africa', '1'),
(183, 'Saint Kitts & Nevis Anguilla', 'KN', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(184, 'Saint Lucia', 'LC', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(185, 'Saint Pierre and Miquelon', 'PM', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'northamerica', '1'),
(186, 'Saint Vincent & Grenadines', 'VC', 'East Caribbean Dollar', '$', '&#036;', 'XCD', '0', '0', 'northamerica', '1'),
(187, 'Samoa', 'WS', 'Samoan Tala', '', '', 'WST', '0', '0', 'asiapacific', '1'),
(188, 'San Marino', 'SM', 'Italian Lira', '', '', 'ITL', '0', '0', 'europe', '1'),
(189, 'Sao Tome and Principe', 'ST', 'Dobra', '', '', 'STD', '0', '0', 'africa', '1'),
(190, 'Saudi Arabia', 'SA', 'Saudi Riyal', '', '', 'SAR', '0', '0', 'asiapacific', '1'),
(191, 'Senegal', 'SN', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(192, 'Seychelles', 'SC', 'Seychelles Rupee', '', '', 'SCR', '0', '0', 'africa', '1'),
(193, 'Sierra Leone', 'SL', 'Sierra Leone Leone', '', '', 'SLL', '0', '0', 'africa', '1'),
(194, 'Singapore', 'SG', 'Singapore Dollar', '$', '&#036;', 'SGD', '0', '0', 'asiapacific', '1'),
(195, 'Slovakia', 'SK', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(196, 'Slovenia', 'SI', 'Slovenian Tolar', '', '', 'SIT', '0', '0', 'europe', '1'),
(197, 'Solomon Islands', 'SB', 'Solomon Islands Dollar', '$', '&#036;', 'SBD', '0', '0', 'asiapacific', '1'),
(198, 'Somalia', 'SO', 'Somali Shilling', '', '', 'SOD', '0', '0', 'africa', '1'),
(199, 'South Africa', 'ZA', 'South African Rand', '', '', 'ZAR', '0', '0', 'africa', '1'),
(200, 'South Georgia & South Sandwich Islands', 'GS', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '0', 'southamerica', '1'),
(201, 'Spain', 'ES', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(202, 'Sri Lanka', 'LK', 'Sri Lanka Rupee', '', '', 'LKR', '0', '0', 'asiapacific', '1'),
(203, 'Sudan', 'SD', 'Sudanese Dinar', '', '', 'SDD', '0', '0', 'asiapacific', '1'),
(204, 'Suriname', 'SR', 'Surinam Guilder', '', '', 'SRG', '0', '0', 'southamerica', '1'),
(205, 'Svalbard and Jan Mayen Islands', 'SJ', 'Norwegian Krone', '', '', 'NOK', '0', '0', '', '1'),
(206, 'Swaziland', 'SZ', 'Swaziland Lilangeni', '', '', 'SZL', '0', '0', 'europe', '1'),
(207, 'Sweden', 'SE', 'Swedish Krona', '', '', 'SEK', '0', '0', 'europe', '1'),
(208, 'Switzerland', 'CH', 'Swiss Franc', '', '', 'CHF', '0', '0', 'europe', '1'),
(209, 'Syria', 'SY', 'Syrian Pound', '', '', 'SYP', '0', '0', 'europe', '1'),
(210, 'Taiwan', 'TW', 'Taiwan Dollar', '$', '&#036;', 'TWD', '0', '0', 'asiapacific', '1'),
(211, 'Tajikistan', 'TJ', 'Tajik Ruble', '', '', 'TJR', '0', '0', 'asiapacific', '1'),
(212, 'Tanzania', 'TZ', 'Tanzanian Shilling', '', '', 'TZS', '0', '0', 'africa', '1'),
(213, 'Thailand', 'TH', 'Thai Baht', '', '', 'THB', '0', '0', 'asiapacific', '1'),
(214, 'Togo', 'TG', 'CFA Franc BCEAO', '', '', 'XOF', '0', '0', 'africa', '1'),
(215, 'Tokelau', 'TK', 'New Zealand Dollar', '$', '&#036;', 'NZD', '0', '0', 'asiapacific', '1'),
(216, 'Tonga', 'TO', 'Tongan Pa&#699;anga', '', '', 'TOP', '0', '0', 'asiapacific', '1'),
(217, 'Trinidad and Tobago', 'TT', 'Trinidad and Tobago Dollar', '$', '&#036;', 'TTD', '0', '0', 'africa', '1'),
(218, 'Tunisia', 'TN', 'Tunisian Dollar', '$', '&#036;', 'TND', '0', '0', 'africa', '1'),
(219, 'Turkey', 'TR', 'Turkish Lira', '', '', 'TRL', '0', '0', 'asiapacific', '1'),
(220, 'Turkmenistan', 'TM', 'Manat', '', '', 'TMM', '0', '0', 'asiapacific', '1'),
(221, 'Turks and Caicos Islands', 'TC', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(222, 'Tuvalu', 'TV', 'Australian Dollar', '$', '&#036;', 'AUD', '0', '0', 'asiapacific', '1'),
(223, 'U.K.', 'UK', 'Pound Sterling', '£', '&#163;', 'GBP', '0', '17.5', 'europe', '1'),
(224, 'Uganda', 'UG', 'Uganda Shilling', '', '', 'UGS', '0', '0', 'africa', '1'),
(225, 'Ukraine', 'UA', 'Ukraine Hryvnia', '', '', 'UAG', '0', '0', 'europe', '1'),
(226, 'United Arab Emirates', 'AE', 'Arab Emirates Dirham', '', '', 'AED', '0', '0', 'asiapacific', '1'),
(227, 'Uruguay', 'UY', 'Uruguayan Peso', '', '', 'UYP', '0', '0', 'southamerica', '1'),
(228, 'USA Minor Outlying Islands', 'UM', 'US Dollar', '$', '&#036;', 'USD', '0', '0', '', '1'),
(229, 'Uzbekistan', 'UZ', 'Uzbekistan Sum', '', '', 'UZS', '0', '0', 'asiapacific', '1'),
(230, 'Vanuatu', 'VU', 'Vanuatu Vatu', '', '', 'VUV', '0', '0', 'asiapacific', '1'),
(231, 'Vatican', 'VA', 'Euro', '', '&#8364;', 'EUR', '0', '0', 'europe', '1'),
(232, 'Venezuela', 'VE', 'Venezuelan Bolivar', '', '', 'VUB', '0', '0', 'asiapacific', '1'),
(233, 'Vietnam', 'VN', 'Vietnamese Dong', '', '', 'VND', '0', '0', 'asiapacific', '1'),
(234, 'Virgin Islands (British)', 'VG', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(235, 'Virgin Islands (USA)', 'VI', 'US Dollar', '$', '&#036;', 'USD', '0', '0', 'northamerica', '1'),
(236, 'Wallis and Futuna Islands', 'WF', 'CFP Franc', '', '', 'XPF', '0', '0', 'asiapacific', '1'),
(237, 'Western Sahara', 'EH', 'Moroccan Dirham', '', '', 'MAD', '0', '0', 'africa', '1'),
(238, 'Yemen', 'YE', 'Yemeni Rial', '', '', 'YER', '0', '0', 'asiapacific', '1'),
(239, 'Yugoslavia', 'YU', 'Yugoslav New Dinar', '', '', 'YUN', '0', '0', 'europe', '1'),
(240, 'Zambia', 'ZM', 'Zambian Kwacha', '', '', 'ZMK', '0', '0', 'africa', '1'),
(241, 'Zimbabwe', 'ZW', 'Zimbabwe Dollar', '$', '&#036;', 'ZWD', '0', '0', 'africa', '1');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_download_status`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_download_status` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`product_id` bigint(20) unsigned DEFAULT NULL,
`fileid` bigint(20) unsigned NOT NULL DEFAULT '0',
`purchid` bigint(20) unsigned NOT NULL DEFAULT '0',
`cartid` bigint(20) unsigned DEFAULT NULL,
`uniqueid` varchar(64) DEFAULT '',
`downloads` int(11) NOT NULL DEFAULT '0',
`ip_number` varchar(255) NOT NULL DEFAULT '',
`active` varchar(1) NOT NULL DEFAULT '0',
`datetime` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uniqueid` (`uniqueid`),
KEY `product_id` (`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_download_status`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_meta`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_meta` (
`meta_id` bigint(20) NOT NULL AUTO_INCREMENT,
`object_type` varchar(24) NOT NULL DEFAULT 'cart_Item',
`object_id` bigint(20) NOT NULL DEFAULT '0',
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext,
PRIMARY KEY (`meta_id`),
KEY `object_type__meta_key` (`object_type`,`meta_key`),
KEY `object_type__object_id__meta_key` (`object_type`,`object_id`,`meta_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_meta`
--
INSERT INTO `wp_wpsc_meta` (`meta_id`, `object_type`, `object_id`, `meta_key`, `meta_value`) VALUES
(1, 'wpsc_category', 11, 'nicename', 'product-category'),
(2, 'wpsc_category', 11, 'description', 'This is a description'),
(3, 'wpsc_category', 11, 'image', ''),
(4, 'wpsc_category', 11, 'fee', '0'),
(5, 'wpsc_category', 11, 'active', '1'),
(6, 'wpsc_category', 11, 'order', '0');
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_product_rating`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_product_rating` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ipnum` varchar(30) NOT NULL DEFAULT '',
`productid` bigint(20) unsigned NOT NULL DEFAULT '0',
`rated` tinyint(1) NOT NULL DEFAULT '0',
`time` bigint(20) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_product_rating`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_purchase_logs`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_purchase_logs` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`totalprice` decimal(11,2) NOT NULL DEFAULT '0.00',
`statusno` smallint(6) NOT NULL DEFAULT '0',
`sessionid` varchar(255) NOT NULL DEFAULT '',
`transactid` varchar(255) NOT NULL DEFAULT '',
`authcode` varchar(255) NOT NULL DEFAULT '',
`processed` bigint(20) unsigned NOT NULL DEFAULT '1',
`user_ID` bigint(20) unsigned DEFAULT '0',
`date` varchar(255) NOT NULL DEFAULT '',
`gateway` varchar(64) NOT NULL DEFAULT '',
`billing_country` char(6) NOT NULL DEFAULT '',
`shipping_country` char(6) NOT NULL DEFAULT '',
`base_shipping` decimal(11,2) NOT NULL DEFAULT '0.00',
`email_sent` char(1) NOT NULL DEFAULT '0',
`stock_adjusted` char(1) NOT NULL DEFAULT '0',
`discount_value` decimal(11,2) NOT NULL DEFAULT '0.00',
`discount_data` text,
`track_id` varchar(50) DEFAULT '',
`billing_region` char(6) NOT NULL DEFAULT '',
`shipping_region` char(6) NOT NULL DEFAULT '',
`find_us` varchar(255) NOT NULL DEFAULT '',
`engravetext` varchar(255) DEFAULT '',
`shipping_method` varchar(64) DEFAULT NULL,
`shipping_option` varchar(128) DEFAULT NULL,
`affiliate_id` varchar(32) DEFAULT NULL,
`plugin_version` varchar(32) DEFAULT NULL,
`notes` text,
`wpec_taxes_total` decimal(11,2) DEFAULT NULL,
`wpec_taxes_rate` decimal(11,2) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `sessionid` (`sessionid`),
KEY `gateway` (`gateway`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_purchase_logs`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_region_tax`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_region_tax` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`country_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`name` varchar(64) NOT NULL DEFAULT '',
`code` char(2) NOT NULL DEFAULT '',
`tax` float NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `country_id` (`country_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=65 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_region_tax`
--
INSERT INTO `wp_wpsc_region_tax` (`id`, `country_id`, `name`, `code`, `tax`) VALUES
(1, 100, 'Alberta', 'AB', 0),
(2, 100, 'British Columbia', 'BC', 0),
(3, 100, 'Manitoba', 'MB', 0),
(4, 100, 'New Brunswick', 'NK', 0),
(5, 100, 'Newfoundland', 'NF', 0),
(6, 100, 'Northwest Territories', 'NT', 0),
(7, 100, 'Nova Scotia', 'NS', 0),
(8, 100, 'Nunavut', 'NU', 0),
(9, 100, 'Ontario', 'ON', 0),
(10, 100, 'Prince Edward Island', 'PE', 0),
(11, 100, 'Quebec', 'PQ', 0),
(12, 100, 'Saskatchewan', 'SN', 0),
(13, 100, 'Yukon', 'YT', 0),
(14, 136, 'Alabama', 'AL', 0),
(15, 136, 'Alaska', 'AK', 0),
(16, 136, 'Arizona', 'AZ', 0),
(17, 136, 'Arkansas', 'AR', 0),
(18, 136, 'California', 'CA', 0),
(19, 136, 'Colorado', 'CO', 0),
(20, 136, 'Connecticut', 'CT', 0),
(21, 136, 'Delaware', 'DE', 0),
(22, 136, 'Florida', 'FL', 0),
(23, 136, 'Georgia', 'GA', 0),
(24, 136, 'Hawaii', 'HI', 0),
(25, 136, 'Idaho', 'ID', 0),
(26, 136, 'Illinois', 'IL', 0),
(27, 136, 'Indiana', 'IN', 0),
(28, 136, 'Iowa', 'IA', 0),
(29, 136, 'Kansas', 'KS', 0),
(30, 136, 'Kentucky', 'KY', 0),
(31, 136, 'Louisiana', 'LA', 0),
(32, 136, 'Maine', 'ME', 0),
(33, 136, 'Maryland', 'MD', 0),
(34, 136, 'Massachusetts', 'MA', 0),
(35, 136, 'Michigan', 'MI', 0),
(36, 136, 'Minnesota', 'MN', 0),
(37, 136, 'Mississippi', 'MS', 0),
(38, 136, 'Missouri', 'MO', 0),
(39, 136, 'Montana', 'MT', 0),
(40, 136, 'Nebraska', 'NE', 0),
(41, 136, 'Nevada', 'NV', 0),
(42, 136, 'New Hampshire', 'NH', 0),
(43, 136, 'New Jersey', 'NJ', 0),
(44, 136, 'New Mexico', 'NM', 0),
(45, 136, 'New York', 'NY', 0),
(46, 136, 'North Carolina', 'NC', 0),
(47, 136, 'North Dakota', 'ND', 0),
(48, 136, 'Ohio', 'OH', 0),
(49, 136, 'Oklahoma', 'OK', 0),
(50, 136, 'Oregon', 'OR', 0),
(51, 136, 'Pennsylvania', 'PA', 0),
(52, 136, 'Rhode Island', 'RI', 0),
(53, 136, 'South Carolina', 'SC', 0),
(54, 136, 'South Dakota', 'SD', 0),
(55, 136, 'Tennessee', 'TN', 0),
(56, 136, 'Texas', 'TX', 0),
(57, 136, 'Utah', 'UT', 0),
(58, 136, 'Vermont', 'VT', 0),
(59, 136, 'Virginia', 'VA', 0),
(60, 136, 'Washington', 'WA', 0),
(61, 136, 'Washington DC', 'DC', 0),
(62, 136, 'West Virginia', 'WV', 0),
(63, 136, 'Wisconsin', 'WI', 0),
(64, 136, 'Wyoming', 'WY', 0);
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `wp_wpsc_submited_form_data`
--
CREATE TABLE IF NOT EXISTS `wp_wpsc_submited_form_data` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`log_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`form_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`value` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `log_id` (`log_id`,`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
--
-- Volcar la base de datos para la tabla `wp_wpsc_submited_form_data`
--