-- MySQL dump 10.13 Distrib 5.1.24-rc, for unknown-freebsd6.3 (i386) -- -- Host: localhost Database: wp_029 -- ------------------------------------------------------ -- Server version 5.1.24-rc-log /*!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 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_categories` -- DROP TABLE IF EXISTS `wp_categories`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_categories` ( `cat_ID` bigint(20) NOT NULL AUTO_INCREMENT, `cat_name` varchar(55) NOT NULL DEFAULT '', `category_nicename` varchar(200) NOT NULL DEFAULT '', `category_description` longtext NOT NULL, `category_parent` bigint(20) NOT NULL DEFAULT '0', `category_count` bigint(20) NOT NULL DEFAULT '0', `link_count` bigint(20) NOT NULL DEFAULT '0', `posts_private` tinyint(1) NOT NULL DEFAULT '0', `links_private` tinyint(1) NOT NULL DEFAULT '0', PRIMARY KEY (`cat_ID`), KEY `category_nicename` (`category_nicename`) ) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_categories` -- LOCK TABLES `wp_categories` WRITE; /*!40000 ALTER TABLE `wp_categories` DISABLE KEYS */; INSERT INTO `wp_categories` VALUES (1,'works and days','works-and-days','',0,35,0,0,0),(2,'code is poetry','code-is-poetry','css, php, xslt, usw',0,12,0,0,0),(3,'freebsd','freebsd','',0,0,0,0,0),(4,'linux','linux','',0,0,0,0,0),(5,'net','net','',0,0,0,0,0),(6,'clusters, distributed and parallel computation and i/o','clusters-distributed-and-parallel-computation-and-io','',0,0,0,0,0),(7,'computational molecular biology','computational-molecular-biology','',0,1,0,0,0),(8,'drafts','drafts','',0,0,0,0,0),(9,'registrars, registries and regulators','registrars-registries-and-regulators','the dns as a business',0,3,0,0,0),(10,'cfp','cfp','',0,1,0,0,0),(11,'portfolio','portfolio','',0,0,6,0,0),(12,'infrastructure','infrastructure','',0,0,2,0,0),(13,'clients and partners (public)','clients-and-partners-public','',0,0,1,0,0),(14,'writing','writing','',0,0,2,0,0),(15,'organizations','organizations','',0,0,8,0,0),(16,'schools','schools','',0,0,3,0,0),(17,'peers','peers','',0,0,2,0,0),(18,'registries and registrars','registries-and-registrars','',0,0,4,0,0),(19,'rirs','rirs','',0,0,5,0,0),(20,'tools','tools','',0,0,6,0,0); /*!40000 ALTER TABLE `wp_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` int(11) 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` enum('0','1','spam') NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT '', `comment_parent` bigint(20) NOT NULL DEFAULT '0', `user_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`comment_ID`), KEY `comment_approved` (`comment_approved`), KEY `comment_post_ID` (`comment_post_ID`) ) ENGINE=MyISAM AUTO_INCREMENT=6252 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_link2cat` -- DROP TABLE IF EXISTS `wp_link2cat`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_link2cat` ( `rel_id` bigint(20) NOT NULL AUTO_INCREMENT, `link_id` bigint(20) NOT NULL DEFAULT '0', `category_id` bigint(20) NOT NULL DEFAULT '0', PRIMARY KEY (`rel_id`), KEY `link_id` (`link_id`,`category_id`) ) ENGINE=MyISAM AUTO_INCREMENT=41 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_link2cat` -- LOCK TABLES `wp_link2cat` WRITE; /*!40000 ALTER TABLE `wp_link2cat` DISABLE KEYS */; INSERT INTO `wp_link2cat` VALUES (1,13,11),(2,12,12),(3,8,14),(4,9,11),(5,10,11),(6,11,12),(7,14,11),(8,15,13),(9,16,15),(10,17,15),(11,18,15),(12,19,15),(13,20,16),(14,21,16),(15,22,16),(16,23,15),(17,24,14),(18,25,17),(19,26,18),(20,27,18),(21,28,18),(22,29,18),(23,30,19),(24,31,19),(25,32,19),(26,33,19),(27,34,19),(28,38,11),(29,35,15),(30,36,15),(31,37,15),(33,40,17),(34,41,20),(35,42,20),(36,43,20),(37,44,20),(38,45,20),(39,46,20),(40,47,11); /*!40000 ALTER TABLE `wp_link2cat` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_links` ( `link_id` bigint(20) 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_category` bigint(20) NOT NULL DEFAULT '0', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` enum('Y','N') NOT NULL DEFAULT 'Y', `link_owner` int(11) 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_category` (`link_category`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM AUTO_INCREMENT=48 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; INSERT INTO `wp_links` VALUES (13,'http://www.mainecommonwealth.com','miller campaign (drupal)','','',1,'chris miller\'s staff and workers community','Y',2,2,'0000-00-00 00:00:00','','',''),(12,'http://wampumpeag.net','wampumpeag','','',2,'nsp functions','Y',2,0,'0000-00-00 00:00:00','','',''),(8,'http://wampum.wabanaki.net','wampum','','',4,'','Y',2,1,'0000-00-00 00:00:00','','',''),(9,'http://www.williams4me.org','williams campaign (mt/2.661)','','',1,'mb\'s campaign blog, the first of its kind','Y',2,1,'0000-00-00 00:00:00','','',''),(10,'http://goredelegate.org','gore delegate (drupal/trunk)','','',1,'testbed site','Y',2,9,'0000-00-00 00:00:00','','',''),(11,'http://nic-naa.net','nic-naa','','',2,'block 0','Y',2,2,'0000-00-00 00:00:00','','',''),(14,'http://029.blog.coop','this (wp)','','',1,'','Y',2,2,'0000-00-00 00:00:00','','',''),(15,'http://www.usawebhost.com','usawebhost','','',3,'steve\'s registrar operation','Y',2,0,'0000-00-00 00:00:00','','',''),(16,'http://www.ams.org','ams','','',5,'american mathematical society','Y',2,0,'0000-00-00 00:00:00','','',''),(17,'http://maa.org/','maa','','',5,'mathemical association of america','Y',2,0,'0000-00-00 00:00:00','','',''),(18,'http://usenix.org/','usenix','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(19,'http://acm.org/','acm','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(20,'http://math.berkeley.edu/','berkeley','','',6,'berkeley math department','Y',2,0,'0000-00-00 00:00:00','','',''),(21,'http://math.harvard.edu/','harvard','','',6,'harvard math department','Y',2,0,'0000-00-00 00:00:00','','',''),(22,'http://www.math.ucla.edu/','ucla','','',6,'ucla math department','Y',2,0,'0000-00-00 00:00:00','','',''),(23,'http://www.msri.org/','msri','','',5,'mathematical sciences research center (berkeley)','Y',2,0,'0000-00-00 00:00:00','','',''),(24,'http://triballaw.wabanaki.net/','triballaw','','',4,'tribal law list blog','Y',2,0,'0000-00-00 00:00:00','','',''),(25,'http://fm.vix.com/','fire mountain','','',7,'paul vixie\'s blog','Y',2,0,'0000-00-00 00:00:00','','',''),(26,'http://www.corenic.org/','core','','',8,'Council of Registrars','Y',2,0,'0000-00-00 00:00:00','','',''),(27,'http://www.pool.com/','pool','','',8,'secondary market (expiry)','Y',2,0,'0000-00-00 00:00:00','','',''),(28,'http://www.knipp.de/','knipp.de','','',8,'CORE\'s primary implementation member','Y',2,0,'0000-00-00 00:00:00','','',''),(29,'http://www.switch.ch/','switch.ch [li,ch]','','',8,'Swiss science network','Y',2,0,'0000-00-00 00:00:00','','',''),(30,'http://ripe.net/','ripe','','',9,'RIPE NCC','Y',2,0,'0000-00-00 00:00:00','','',''),(31,'http://www.afrinic.net/','afrinic','','',9,'Mauritius','Y',2,0,'0000-00-00 00:00:00','','',''),(32,'http://www.apnic.net/','apnic','','',9,'brisbane','Y',2,0,'0000-00-00 00:00:00','','',''),(33,'http://ww3.arin.net/','arin','','',9,'herndon','Y',2,0,'0000-00-00 00:00:00','','',''),(34,'http://www.lacnic.net','lacnic','','',9,'montevideo','Y',2,0,'0000-00-00 00:00:00','','',''),(38,'http://wampum.wabanaki.net','wampum (mt)','','',1,'','Y',2,0,'0000-00-00 00:00:00','','',''),(35,'http://nanog.org/','nanog','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(36,'http://www.ietf.org/','ietf','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(37,'http://www.w3.org/','w3c','','',5,'','Y',2,0,'0000-00-00 00:00:00','','',''),(40,'http://shallowsky.com/blog/','Shallow Sky','','',7,'another coder','Y',2,0,'0000-00-00 00:00:00','','',''),(41,'http://search.cpan.org/','cpan','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(42,'http://php.net/','php','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(43,'http://mysql.com/','mysql','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(44,'http://www.csszengarden.com/','css zen','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(45,'http://www.mozdev.org/','mozdev','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(46,'http://www.mozilla.org/projects/firefox/','firefox','','',11,'','Y',2,0,'0000-00-00 00:00:00','','',''),(47,'http://developer.mozilla.org/en/docs/Download_Mozilla_Source_Code','lizard src','','',1,'','Y',2,0,'0000-00-00 00:00:00','','',''); /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `wp_options` ( `option_id` bigint(20) NOT NULL AUTO_INCREMENT, `blog_id` int(11) NOT NULL DEFAULT '0', `option_name` varchar(64) NOT NULL DEFAULT '', `option_can_override` enum('Y','N') NOT NULL DEFAULT 'Y', `option_type` int(11) NOT NULL DEFAULT '1', `option_value` longtext NOT NULL, `option_width` int(11) NOT NULL DEFAULT '20', `option_height` int(11) NOT NULL DEFAULT '8', `option_description` tinytext NOT NULL, `option_admin_level` int(11) NOT NULL DEFAULT '1', `autoload` enum('yes','no') NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`,`blog_id`,`option_name`), KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=87 DEFAULT CHARSET=latin1; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,0,'siteurl','Y',1,'http://029.colo.coop',20,8,'WordPress web address',1,'yes'),(2,0,'blogname','Y',1,'029 :: egami drac rehtona tey',20,8,'Blog title',1,'yes'),(3,0,'blogdescription','Y',1,'a code book',20,8,'Short tagline',1,'yes'),(64,0,'wp_user_roles','Y',1,'a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:47:{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: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;}}}',20,8,'',1,'yes'),(5,0,'users_can_register','Y',1,'',20,8,'',1,'yes'),(6,0,'admin_email','Y',1,'ebw@abenaki.wabanaki.net',20,8,'',1,'yes'),(7,0,'start_of_week','Y',1,'1',20,8,'',1,'yes'),(8,0,'use_balanceTags','Y',1,'0',20,8,'',1,'yes'),(9,0,'use_smilies','Y',1,'1',20,8,'',1,'yes'),(10,0,'require_name_email','Y',1,'',20,8,'',1,'yes'),(11,0,'comments_notify','Y',1,'',20,8,'',1,'yes'),(12,0,'posts_per_rss','Y',1,'10',20,8,'',1,'yes'),(13,0,'rss_excerpt_length','Y',1,'50',20,8,'',1,'yes'),(14,0,'rss_use_excerpt','Y',1,'0',20,8,'',1,'yes'),(15,0,'mailserver_url','Y',1,'mail.example.com',20,8,'',1,'yes'),(16,0,'mailserver_login','Y',1,'login@example.com',20,8,'',1,'yes'),(17,0,'mailserver_pass','Y',1,'password',20,8,'',1,'yes'),(18,0,'mailserver_port','Y',1,'110',20,8,'',1,'yes'),(19,0,'default_category','Y',1,'1',20,8,'',1,'yes'),(20,0,'default_comment_status','Y',1,'closed',20,8,'',1,'yes'),(21,0,'default_ping_status','Y',1,'closed',20,8,'',1,'yes'),(22,0,'default_pingback_flag','Y',1,'',20,8,'',1,'yes'),(23,0,'default_post_edit_rows','Y',1,'10',20,8,'',1,'yes'),(24,0,'posts_per_page','Y',1,'10',20,8,'',1,'yes'),(25,0,'what_to_show','Y',1,'posts',20,8,'',1,'yes'),(26,0,'date_format','Y',1,'F j, Y',20,8,'',1,'yes'),(27,0,'time_format','Y',1,'g:i a',20,8,'',1,'yes'),(28,0,'links_updated_date_format','Y',1,'F j, Y g:i a',20,8,'',1,'yes'),(29,0,'links_recently_updated_prepend','Y',1,'',20,8,'',1,'yes'),(30,0,'links_recently_updated_append','Y',1,'',20,8,'',1,'yes'),(31,0,'links_recently_updated_time','Y',1,'120',20,8,'',1,'yes'),(32,0,'comment_moderation','Y',1,'',20,8,'',1,'yes'),(33,0,'moderation_notify','Y',1,'',20,8,'',1,'yes'),(34,0,'permalink_structure','Y',1,'',20,8,'',1,'yes'),(35,0,'gzipcompression','Y',1,'0',20,8,'',1,'yes'),(36,0,'hack_file','Y',1,'0',20,8,'',1,'yes'),(37,0,'blog_charset','Y',1,'UTF-8',20,8,'',1,'yes'),(38,0,'moderation_keys','Y',1,'',20,8,'',1,'no'),(39,0,'active_plugins','Y',1,'a:0:{}',20,8,'',1,'yes'),(40,0,'home','Y',1,'http://029.colo.coop',20,8,'',1,'yes'),(41,0,'category_base','Y',1,'',20,8,'',1,'yes'),(42,0,'ping_sites','Y',1,'http://rpc.pingomatic.com/',20,8,'',1,'yes'),(43,0,'advanced_edit','Y',1,'0',20,8,'',1,'yes'),(44,0,'comment_max_links','Y',1,'0',20,8,'',1,'yes'),(45,0,'gmt_offset','Y',1,'-4',20,8,'',1,'yes'),(46,0,'default_email_category','Y',1,'1',20,8,'Posts by email go to this category',1,'yes'),(47,0,'recently_edited','Y',1,'a:5:{i:0;s:35:\"wp-content/themes/default/style.css\";i:1;s:51:\"wp-content/themes/a-blog-beyond-072-ex-dt/style.css\";i:2;s:53:\"wp-content/themes/a-blog-beyond-072-ex-dt/sidebar.php\";i:4;s:9:\"index.php\";i:5;s:0:\"\";}',20,8,'',1,'no'),(48,0,'use_linksupdate','Y',1,'0',20,8,'',1,'yes'),(49,0,'template','Y',1,'a-blog-beyond-072-ex-dt',20,8,'',1,'yes'),(50,0,'stylesheet','Y',1,'a-blog-beyond-072-ex-dt',20,8,'',1,'yes'),(51,0,'comment_whitelist','Y',1,'',20,8,'',1,'yes'),(53,0,'blacklist_keys','Y',1,'',20,8,'',1,'no'),(54,0,'comment_registration','Y',1,'',20,8,'',1,'yes'),(55,0,'open_proxy_check','Y',1,'1',20,8,'',1,'yes'),(56,0,'rss_language','Y',1,'en',20,8,'',1,'yes'),(57,0,'html_type','Y',1,'text/html',20,8,'',1,'yes'),(58,0,'use_trackback','Y',1,'0',20,8,'',1,'yes'),(59,0,'default_role','Y',1,'subscriber',20,8,'',1,'yes'),(61,0,'db_version','Y',1,'4773',20,8,'',1,'yes'),(62,0,'uploads_use_yearmonth_folders','Y',1,'1',20,8,'',1,'yes'),(63,0,'upload_path','Y',1,'wp-content/uploads',20,8,'',1,'yes'),(65,0,'rss_5e0a119fab570a5d5b2d09cc114de2e0','Y',1,'O:9:\"MagpieRSS\":17:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:0:{}s:7:\"channel\";a:0:{}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";N;s:12:\"feed_version\";N;s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}}',20,8,'',1,'no'),(66,0,'rss_5e0a119fab570a5d5b2d09cc114de2e0_ts','Y',1,'1177514204',20,8,'',1,'no'),(67,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4','Y',1,'O:9:\"MagpieRSS\":18:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:10:{i:0;a:12:{s:5:\"title\";s:20:\"WordPress 2.3 Beta 2\";s:4:\"link\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:8:\"comments\";s:70:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/#comments\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:11:\"description\";s:315:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:711:\"
WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.
\nStill want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:66:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/feed/\";}s:7:\"summary\";s:315:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, [...]\";s:12:\"atom_content\";s:711:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.
\nStill want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.
\n\";}i:1;a:12:{s:5:\"title\";s:20:\"WordPress 2.3 Beta 1\";s:4:\"link\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:8:\"comments\";s:60:\"http://wordpress.org/development/2007/08/23-beta-1/#comments\";s:7:\"pubdate\";s:31:\"Tue, 28 Aug 2007 04:44:28 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:11:\"Development\";s:4:\"guid\";s:51:\"http://wordpress.org/development/2007/08/23-beta-1/\";s:11:\"description\";s:353:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:809:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.
\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.
\nHowever all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:56:\"http://wordpress.org/development/2007/08/23-beta-1/feed/\";}s:7:\"summary\";s:353:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and [...]\";s:12:\"atom_content\";s:809:\"The past 3 months we’ve been working feverishly on the next version of WordPress, 2.3. Today we’re releasing the first beta of 2.3 and we’re hoping the more adventurous and savvy among you will help us test it.
\nSome of the features of 2.3 include plugin and core update notification, built-in tags support, faster javascript, and SEO-friendly URL redirection.
\nHowever all of the new functionality is still very rough, so only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your data religiously. If you’re interested you can join the wp-testers mailing list and download the beta here.
\n\";}i:2;a:12:{s:5:\"title\";s:26:\"WordPress 2.2.2 and 2.0.11\";s:4:\"link\";s:64:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/\";s:8:\"comments\";s:73:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/#comments\";s:7:\"pubdate\";s:31:\"Sun, 05 Aug 2007 06:22:25 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:64:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/\";s:11:\"description\";s:323:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1393:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.
\nOn our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.
\nOur download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.
\nAs always, we have upgrade instructions available and an extended upgrade guide.
\nThanks to Alex C. and Benjamin Flesch for help with this release.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:69:\"http://wordpress.org/development/2007/08/wordpress-222-and-2011/feed/\";}s:7:\"summary\";s:323:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.\nOn our Trac you can see the bugs [...]\";s:12:\"atom_content\";s:1393:\"Today we have two security-related releases available for both users of our main 2.2 branch and the legacy 2.0 branch. As these releases include only security and minor bugfixes they should not cause any plugin or theme compatibility issues, so you have no good excuse not to upgrade.
\nOn our Trac you can see the bugs closed for 2.2.2 and 2.0.11 to get more details about the problems fixed. With a little more Trac magic you can see all the changed files for 2.2.2 or 2.0.11.
\nOur download page is always the best place to get the latest release, and our legacy page now has the latest in the 2.0 branch.
\nAs always, we have upgrade instructions available and an extended upgrade guide.
\nThanks to Alex C. and Benjamin Flesch for help with this release.
\n\";}i:3;a:12:{s:5:\"title\";s:34:\"New Shirts; International Shipping\";s:4:\"link\";s:52:\"http://wordpress.org/development/2007/07/new-shirts/\";s:8:\"comments\";s:61:\"http://wordpress.org/development/2007/07/new-shirts/#comments\";s:7:\"pubdate\";s:31:\"Sat, 21 Jul 2007 01:06:07 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:5:\"Store\";s:4:\"guid\";s:52:\"http://wordpress.org/development/2007/07/new-shirts/\";s:11:\"description\";s:326:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:822:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)
\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.
\nUpdate: Indigo the t-shirt company has a great post about the launch.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:57:\"http://wordpress.org/development/2007/07/new-shirts/feed/\";}s:7:\"summary\";s:326:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly [...]\";s:12:\"atom_content\";s:822:\"One of the biggest complaints when we originally launched our t-shirt store was that folks outside of the United States, which is the majority of our traffic, were unable to order them. Now you can! (And we have a new style available.)
\nAt our official shop.wordpress.net you can order the new red t-shirt in either manly or girlie styles and they ship almost anywhere in the world. The shirts are high-quality American Apparel, and are screen-printed. Styles are available for a limited time, we’ll probably to about 2-3 a year, and once they’re gone the style will never be printed again.
\nUpdate: Indigo the t-shirt company has a great post about the launch.
\n\";}i:4;a:12:{s:5:\"title\";s:25:\"WordCamp in San Francisco\";s:4:\"link\";s:67:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/\";s:8:\"comments\";s:76:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/#comments\";s:7:\"pubdate\";s:31:\"Mon, 25 Jun 2007 09:49:14 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:14:\"EventsWordCamp\";s:4:\"guid\";s:67:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/\";s:11:\"description\";s:315:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.\nThis year we’re expanding the conference to two days [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1860:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.
\nThis year we’re expanding the conference to two days instead of one with the first focusing on user and blog-facing topics, like search engine optimization and podcasting, and the second day will focus on more development topics, such as usability, iterative design, and the future of publishing. Speakers this year include several WordPress developers, Matt Cutts, John Dvorak, Robert Hoekman Jr., Dan Kuykendall, Om Malik, Rashmi Sinha, Lorelle Vanfossen, and Dave Winer. Check out the entire schedule.
\nJust like last year there will be free lunch (with the legendary BBQ on Sunday) and t-shirts for everybody, and a party on Saturday night. Unlike last year we’re asking for $25 to help cover costs, but if that’s a problem there are scholarships available. Registration will be closing July 9th and there will not be tickets at the door, so get yours soon.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:72:\"http://wordpress.org/development/2007/06/wordcamp-in-san-francisco/feed/\";}s:7:\"summary\";s:315:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.\nThis year we’re expanding the conference to two days [...]\";s:12:\"atom_content\";s:1860:\"Last year over 350 WordPressers of all ages and experience levels gathered in San Francisco to share a day together. We’re now halfway through 2007, and there is a new WordCamp happening on July 21 and 22 that I hope many of you can make it to.
\nThis year we’re expanding the conference to two days instead of one with the first focusing on user and blog-facing topics, like search engine optimization and podcasting, and the second day will focus on more development topics, such as usability, iterative design, and the future of publishing. Speakers this year include several WordPress developers, Matt Cutts, John Dvorak, Robert Hoekman Jr., Dan Kuykendall, Om Malik, Rashmi Sinha, Lorelle Vanfossen, and Dave Winer. Check out the entire schedule.
\nJust like last year there will be free lunch (with the legendary BBQ on Sunday) and t-shirts for everybody, and a party on Saturday night. Unlike last year we’re asking for $25 to help cover costs, but if that’s a problem there are scholarships available. Registration will be closing July 9th and there will not be tickets at the door, so get yours soon.
\n\";}i:5;a:12:{s:5:\"title\";s:15:\"WordPress 2.2.1\";s:4:\"link\";s:55:\"http://wordpress.org/development/2007/06/wordpress-221/\";s:8:\"comments\";s:64:\"http://wordpress.org/development/2007/06/wordpress-221/#comments\";s:7:\"pubdate\";s:31:\"Thu, 21 Jun 2007 04:49:59 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:55:\"http://wordpress.org/development/2007/06/wordpress-221/\";s:11:\"description\";s:307:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:2533:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a nicely polished 2.2.1 release. The full list of bugs fixed in 2.2.1 is available here. Here are some highlights.
\nUnfortunately, 2.2.1 is not just a bug fix release. Some security issues came to light during 2.2.1 development, making 2.2.1 a required upgrade. 2.2.1 addresses the following vulnerabilities:
\nSpecial thanks to Alexander Concha for his continued assistance in making WordPress more secure. Special thanks also to Daniel Jalkut of Red Sweater Software for his improvements to our XML-RPC implementation.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:60:\"http://wordpress.org/development/2007/06/wordpress-221/feed/\";}s:7:\"summary\";s:307:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a [...]\";s:12:\"atom_content\";s:2533:\"WordPress 2.2.1 is now available. 2.2.1 is a bug fix release for the 2.2 series. Since 2.2 was released a month ago, the WordPress community has been improving fit-and-finish by identifying and fixing those little bugs that can be so annoying and by fine-tuning some small details. The result is a nicely polished 2.2.1 release. The full list of bugs fixed in 2.2.1 is available here. Here are some highlights.
\nUnfortunately, 2.2.1 is not just a bug fix release. Some security issues came to light during 2.2.1 development, making 2.2.1 a required upgrade. 2.2.1 addresses the following vulnerabilities:
\nSpecial thanks to Alexander Concha for his continued assistance in making WordPress more secure. Special thanks also to Daniel Jalkut of Red Sweater Software for his improvements to our XML-RPC implementation.
\n\";}i:6;a:12:{s:5:\"title\";s:18:\"WebWare 100 Winner\";s:4:\"link\";s:60:\"http://wordpress.org/development/2007/06/webware-100-winner/\";s:8:\"comments\";s:69:\"http://wordpress.org/development/2007/06/webware-100-winner/#comments\";s:7:\"pubdate\";s:31:\"Mon, 18 Jun 2007 23:32:53 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:4:\"Meta\";s:4:\"guid\";s:60:\"http://wordpress.org/development/2007/06/webware-100-winner/\";s:11:\"description\";s:303:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1152:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s an incredible opportunity for us to live up to the high standards you’ve set. Here’s what Rafe Needleman wrote about the results:
\n\nWordPress got the most votes. I was interested to see the Drupal CMS platform placing high in this category–above the consumer-oriented publishing products Typepad and Vox. Even combined, these two Six Apart services didn’t come close to winning the same number of votes as Drupal.
Glad to see our open-source brother-by-another-mother representing. The rankings in Publishing were WordPress, Adobe Flash, Drupal, Blogger, and Google Analytics as the top 5.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:65:\"http://wordpress.org/development/2007/06/webware-100-winner/feed/\";}s:7:\"summary\";s:303:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s [...]\";s:12:\"atom_content\";s:1152:\"The results are in, and WordPress is the winner of the Webware 100 in the Publishing category. Thanks to everyone who voted, but thank you even more to all the great people who make WordPress what it is. It’s an honor to have so many of you entrust your blogs to our software, and it’s an incredible opportunity for us to live up to the high standards you’ve set. Here’s what Rafe Needleman wrote about the results:
\n\nWordPress got the most votes. I was interested to see the Drupal CMS platform placing high in this category–above the consumer-oriented publishing products Typepad and Vox. Even combined, these two Six Apart services didn’t come close to winning the same number of votes as Drupal.
Glad to see our open-source brother-by-another-mother representing. The rankings in Publishing were WordPress, Adobe Flash, Drupal, Blogger, and Google Analytics as the top 5.
\n\";}i:7;a:12:{s:5:\"title\";s:12:\"Two Contests\";s:4:\"link\";s:54:\"http://wordpress.org/development/2007/06/two-contests/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2007/06/two-contests/#comments\";s:7:\"pubdate\";s:31:\"Tue, 12 Jun 2007 23:12:40 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:6:\"Events\";s:4:\"guid\";s:54:\"http://wordpress.org/development/2007/06/two-contests/\";s:11:\"description\";s:331:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1220:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.
\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with CSS and the highly semantic Sandbox theme. They already have a thousand dollars in prizes, so check it out.
\nSecond our friends at Weblog Tools Collection are running a WordPress Plugin competition. They have a blog to track all the entries, but if you’re participating don’t forget to submit your code to the Plugin directory.
\nBoth competitions require entries to be under the same GPL license that WordPress is, so regardless of who wins they’ll make the entire community much richer. (Remember, WordPress itself was written on the base of existing GPL code!)
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2007/06/two-contests/feed/\";}s:7:\"summary\";s:331:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with [...]\";s:12:\"atom_content\";s:1220:\"There are two contests going on in the WordPress community right now. If you’d like a chance to flex your WordPress skillz and perhaps win a prize and lifelong fame, you should consider dropping your code in the hat.
\nThe first is the Sandbox Designs competition, which is like a theme competition, but working only with CSS and the highly semantic Sandbox theme. They already have a thousand dollars in prizes, so check it out.
\nSecond our friends at Weblog Tools Collection are running a WordPress Plugin competition. They have a blog to track all the entries, but if you’re participating don’t forget to submit your code to the Plugin directory.
\nBoth competitions require entries to be under the same GPL license that WordPress is, so regardless of who wins they’ll make the entire community much richer. (Remember, WordPress itself was written on the base of existing GPL code!)
\n\";}i:8;a:12:{s:5:\"title\";s:13:\"WordPress 2.2\";s:4:\"link\";s:54:\"http://wordpress.org/development/2007/05/wordpress-22/\";s:8:\"comments\";s:63:\"http://wordpress.org/development/2007/05/wordpress-22/#comments\";s:7:\"pubdate\";s:31:\"Wed, 16 May 2007 00:36:55 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:8:\"Releases\";s:4:\"guid\";s:54:\"http://wordpress.org/development/2007/05/wordpress-22/\";s:11:\"description\";s:390:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.\nGoodies:\n\nWordPress Widgets allow you to easily rearrange [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:5828:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.
\nIn addition there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when you’re editing a post or page, as well as several important security fixes. We don’t plan to continue to support the 2.1 branch, so this is a required upgrade.
\nWe also improved a great deal under the hood that hopefully you’ll never notice, but if you’re a developer for the WP platform it provides a lot to sink your teeth into. Here is a sampling:
\nIf you’d like an in-depth look at everything that changed, here is a list of all 244 closed tickets in our bug tracker and you can use this link to see what files and lines of code changed. (It was a lot!)
\nMost interesting about this release is that is our first under the new, experimental development cycle that we first talked about when we released version 2.1 fewer than 4 months ago. We delayed a few weeks from our target date in April, but ended up under our original goal of a 4 month major release cycle. My thanks and congratulations to the entire WordPress community for pulling together and making that happen. It wasn’t without its bumps, but the things we learned along the way will make our next release in September even better. You can now look forward to a fast but stable schedule of new features and goodies several times a year from WordPress.
\nThere were 1.4 million downloads of WordPress 2.1 in the four months it was available.
\nI wrote a post that covers some of the media that WP has been getting lately and its history.
\nWe’ve expanded WordPress.org quite a bit, most notably the very active plugins directory and the ideas forum.
\nCome meet other WordPress users and developers at WordCamp, which is going to be taking place July 21-22 in San Francisco.
\nDon’t forget to check out WordPress’ cousins MU and bbPress, both of which have been seeing some pretty cool development lately.
\nThe most valuable thing you can give back to WordPress is your time — the time to help a friend discover the joy of blogging, the time to help a stranger (a friend you haven’t met yet) on the support forums, or the time to help make WordPress a better product.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:59:\"http://wordpress.org/development/2007/05/wordpress-22/feed/\";}s:7:\"summary\";s:390:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.\nGoodies:\n\nWordPress Widgets allow you to easily rearrange [...]\";s:12:\"atom_content\";s:5828:\"On behalf of the entire WordPress team, I’m proud and excited to announce the immediate availability of version 2.2 “Getz” for download. This version includes a number of new features, most notably Widgets integration, and over two hundred bug fixes. It’s named in honor of tenor saxophonist Stan Getz.
\nIn addition there were also dozens of UI and accessibility improvements, ranging from more concise wording around options and links to things like a view and preview link above the content box when you’re editing a post or page, as well as several important security fixes. We don’t plan to continue to support the 2.1 branch, so this is a required upgrade.
\nWe also improved a great deal under the hood that hopefully you’ll never notice, but if you’re a developer for the WP platform it provides a lot to sink your teeth into. Here is a sampling:
\nIf you’d like an in-depth look at everything that changed, here is a list of all 244 closed tickets in our bug tracker and you can use this link to see what files and lines of code changed. (It was a lot!)
\nMost interesting about this release is that is our first under the new, experimental development cycle that we first talked about when we released version 2.1 fewer than 4 months ago. We delayed a few weeks from our target date in April, but ended up under our original goal of a 4 month major release cycle. My thanks and congratulations to the entire WordPress community for pulling together and making that happen. It wasn’t without its bumps, but the things we learned along the way will make our next release in September even better. You can now look forward to a fast but stable schedule of new features and goodies several times a year from WordPress.
\nThere were 1.4 million downloads of WordPress 2.1 in the four months it was available.
\nI wrote a post that covers some of the media that WP has been getting lately and its history.
\nWe’ve expanded WordPress.org quite a bit, most notably the very active plugins directory and the ideas forum.
\nCome meet other WordPress users and developers at WordCamp, which is going to be taking place July 21-22 in San Francisco.
\nDon’t forget to check out WordPress’ cousins MU and bbPress, both of which have been seeing some pretty cool development lately.
\nThe most valuable thing you can give back to WordPress is your time — the time to help a friend discover the joy of blogging, the time to help a stranger (a friend you haven’t met yet) on the support forums, or the time to help make WordPress a better product.
\n\";}i:9;a:12:{s:5:\"title\";s:26:\"WordPress 2.1.3 and 2.0.10\";s:4:\"link\";s:64:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/\";s:8:\"comments\";s:73:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/#comments\";s:7:\"pubdate\";s:31:\"Tue, 03 Apr 2007 07:50:45 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:8:\"category\";s:16:\"ReleasesSecurity\";s:4:\"guid\";s:64:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/\";s:11:\"description\";s:345:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress [...]\";s:7:\"content\";a:1:{s:7:\"encoded\";s:1138:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.
\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems. Many thanks to Sumit Siddharth and Alex Concha for their help with reporting issues in this release.
\nAs an update to the systems issue we had last month, we have taken dozens of additional precautions with the servers and systems that run WordPress.org and they appear to be working well, despite hundreds of hack attempts after we publicly disclosed there had been a problem. We are also now aggressively monitoring all downloads for any changes or modifications, and we are confident the same type of problem won’t happen again.
\n\";}s:3:\"wfw\";a:1:{s:10:\"commentrss\";s:69:\"http://wordpress.org/development/2007/04/wordpress-213-and-2010/feed/\";}s:7:\"summary\";s:345:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress [...]\";s:12:\"atom_content\";s:1138:\"We have a security update release now available for both the 2.1 and 2.0 branches of WordPress now available for immediate download. This update is highly recommend for all users of both branches.
\nThese releases include fixes for several publicly known minor XSS issues, one major XML-RPC issue, and a proactive full sweep of the WordPress codebase to protect against future problems. Many thanks to Sumit Siddharth and Alex Concha for their help with reporting issues in this release.
\nAs an update to the systems issue we had last month, we have taken dozens of additional precautions with the servers and systems that run WordPress.org and they appear to be working well, despite hundreds of hack attempts after we publicly disclosed there had been a problem. We are also now aggressively monitoring all downloads for any changes or modifications, and we are confident the same type of problem won’t happen again.
\n\";}}s:7:\"channel\";a:7:{s:5:\"title\";s:26:\"WordPress Development Blog\";s:4:\"link\";s:32:\"http://wordpress.org/development\";s:11:\"description\";s:33:\"WordPress development and updates\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:9:\"generator\";s:33:\"http://wordpress.org/?v=2.3-beta2\";s:8:\"language\";s:2:\"en\";s:7:\"tagline\";s:33:\"WordPress development and updates\";}s:9:\"textinput\";a:0:{}s:5:\"image\";a:0:{}s:9:\"feed_type\";s:3:\"RSS\";s:12:\"feed_version\";s:3:\"2.0\";s:5:\"stack\";a:0:{}s:9:\"inchannel\";b:0;s:6:\"initem\";b:0;s:9:\"incontent\";b:0;s:11:\"intextinput\";b:0;s:7:\"inimage\";b:0;s:13:\"current_field\";s:0:\"\";s:17:\"current_namespace\";b:0;s:19:\"_CONTENT_CONSTRUCTS\";a:6:{i:0;s:7:\"content\";i:1;s:7:\"summary\";i:2;s:4:\"info\";i:3;s:5:\"title\";i:4;s:7:\"tagline\";i:5;s:9:\"copyright\";}s:13:\"last_modified\";s:31:\"Fri, 07 Sep 2007 05:04:15 GMT\r\n\";}',20,8,'',1,'no'),(68,0,'rss_0ff4b43bd116a9d8720d689c80e7dfd4_ts','Y',1,'1189142487',20,8,'',1,'no'),(69,0,'rss_867bd5c64f85878d03a060509cd2f92c','Y',1,'O:9:\"MagpieRSS\":19:{s:6:\"parser\";i:0;s:12:\"current_item\";a:0:{}s:5:\"items\";a:50:{i:0;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 9/7\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-plugin-releases-for-97/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-plugin-releases-for-97/\";s:11:\"description\";s:1368:\"wpAdMentor lets you choose which ads to display on your WordPress blog.
\nAskApache Firefox Adsense displays a Firefox Adsense Ad (Google Referrals) on your blog, but only to users that are not using Firefox, and only to users running Windows.
\nKiteCV lets you compose a complete master CV, then publish views of it targeted at specific employers or jobs.
\nSecure Contact is a drop-in form for users to contact you that can be implemented on a page or a post.
\nSmilies Themer allows you to use smilies (emoticons) themes (or packs) to replace the WordPress default ones.
\nStrainu Links lets you put all your links in any page, post, or comment.
\nTemplateMedia creates a Wikipedia-style templating system for your WordPress installation. TemplateMedia Chess adds in a template that is a port of Wikipedia’s Chess Diagram template.
\";s:7:\"pubdate\";s:31:\"Fri, 07 Sep 2007 05:00:47 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:1368:\"wpAdMentor lets you choose which ads to display on your WordPress blog.
\nAskApache Firefox Adsense displays a Firefox Adsense Ad (Google Referrals) on your blog, but only to users that are not using Firefox, and only to users running Windows.
\nKiteCV lets you compose a complete master CV, then publish views of it targeted at specific employers or jobs.
\nSecure Contact is a drop-in form for users to contact you that can be implemented on a page or a post.
\nSmilies Themer allows you to use smilies (emoticons) themes (or packs) to replace the WordPress default ones.
\nStrainu Links lets you put all your links in any page, post, or comment.
\nTemplateMedia creates a Wikipedia-style templating system for your WordPress installation. TemplateMedia Chess adds in a template that is a port of Wikipedia’s Chess Diagram template.
\";}i:1;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 9/7\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-theme-releases-for-97/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/07/wordpress-theme-releases-for-97/\";s:11:\"description\";s:975:\"Brushed Blues is a single-column, widget-ready theme with sidebar content located in the footer area.
\nCubez is a 2-column, widget- and adsense-ready theme with a Main Translator feature in the sidebar.
\nFreaky Green is a 2-column, widget-ready theme with a 3-column header and footer and bright green colors.
\nGlorious Future and Glorious Day are 2- and 3-column, widget-ready themes, respectively, that come with page templates for archives, links, contact, 404, and author’s profile and that also highlight author’s comments.
\nRockinBizRed is a 3-column, widget-ready theme with a professional look and wide content area.
\";s:7:\"pubdate\";s:31:\"Fri, 07 Sep 2007 04:45:15 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:975:\"Brushed Blues is a single-column, widget-ready theme with sidebar content located in the footer area.
\nCubez is a 2-column, widget- and adsense-ready theme with a Main Translator feature in the sidebar.
\nFreaky Green is a 2-column, widget-ready theme with a 3-column header and footer and bright green colors.
\nGlorious Future and Glorious Day are 2- and 3-column, widget-ready themes, respectively, that come with page templates for archives, links, contact, 404, and author’s profile and that also highlight author’s comments.
\nRockinBizRed is a 3-column, widget-ready theme with a professional look and wide content area.
\";}i:2;a:7:{s:5:\"title\";s:17:\"Akismet: Downtime\";s:4:\"guid\";s:46:\"http://blog.akismet.com/2007/09/06/downtime-2/\";s:4:\"link\";s:46:\"http://blog.akismet.com/2007/09/06/downtime-2/\";s:11:\"description\";s:415:\"We had a 40 minute downtime in our San Antonio location last night. This probably caused some obvious spam on your blog to be missed by Akismet.
\nWe’re obviously looking on the systems side at what happened and how to prevent it, but also on the client side we’d like to make the WP plugin deal more gracefully with not being able to contact the mothership.
\nWe had a 40 minute downtime in our San Antonio location last night. This probably caused some obvious spam on your blog to be missed by Akismet.
\nWe’re obviously looking on the systems side at what happened and how to prevent it, but also on the client side we’d like to make the WP plugin deal more gracefully with not being able to contact the mothership.
\nWordPress 2.3 changes the database schema in three places. The biggest change is the taxonomy related changes I discussed earlier. Since taxonomy was going to cause backward compatibility breaks in the schema, we decided we might as well break it thoroughly and create something we liked. Thus the categories, post2cat, and link2cat tables were dropped and replaced by three new tables. Plugins that reference the old tables will break. They will need to be updated to either use API, preferably, or use SQL that references the new tables instead of the old ones.
\nThe other two changes are small and low-impact. A new status of ‘pending’ was added to the post_status field of the posts table. This won’t affect most plugins. Plugins that check post status might be affected. Those plugins can do some defensive programming to insulate themselves against new status additions.
\nFinally, several unused fields were dropped from the options table. option_can_override, option_type, option_width, option_height, option_description, and option_admin_level are now gone. These fields have been unused for years. The time had come to finally drop them and clean up the options table.
\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 20:49:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:1430:\"WordPress 2.3 changes the database schema in three places. The biggest change is the taxonomy related changes I discussed earlier. Since taxonomy was going to cause backward compatibility breaks in the schema, we decided we might as well break it thoroughly and create something we liked. Thus the categories, post2cat, and link2cat tables were dropped and replaced by three new tables. Plugins that reference the old tables will break. They will need to be updated to either use API, preferably, or use SQL that references the new tables instead of the old ones.
\nThe other two changes are small and low-impact. A new status of ‘pending’ was added to the post_status field of the posts table. This won’t affect most plugins. Plugins that check post status might be affected. Those plugins can do some defensive programming to insulate themselves against new status additions.
\nFinally, several unused fields were dropped from the options table. option_can_override, option_type, option_width, option_height, option_description, and option_admin_level are now gone. These fields have been unused for years. The time had come to finally drop them and clean up the options table.
\";}i:4;a:7:{s:5:\"title\";s:35:\"Ryan Boren: Post Status Transitions\";s:4:\"guid\";s:60:\"http://boren.nu/archives/2007/09/05/post-status-transitions/\";s:4:\"link\";s:60:\"http://boren.nu/archives/2007/09/05/post-status-transitions/\";s:11:\"description\";s:1562:\"WordPress 2.3 introduces some new actions that plugins can use to hook into status transitions and workflow. Before, WP had a ‘private_to_published’ action that announced that a post moved from private to published, and that’s about it. Now WP has actions for every possible transition. These actions are of the form ’status_to_status’ where status is one of:
\nWhen a ‘pending’ post is published, the action ‘pending_to_publish’ is triggered. The action is accompanied by the post object that is changing status.
\nA generic ‘transition_post_status’ action is also emitted for every status change. It is accompanied by the new status, the old status, and the post object. Plugins can use this action to attach a function that intercepts all status changes.
\nThe final action triggered during a status change is of the form ’status_object’, where status is from the status list above and object is either ‘page’ or ‘post’. For example, when a post is published, a ‘publish_post’ action is triggered. The action is accompanied by the post ID and post object.
\nSee the function wp_transition_post_status() for how these actions are formed. Use add_action() to attach functions to these actions.
\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 17:32:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:1562:\"WordPress 2.3 introduces some new actions that plugins can use to hook into status transitions and workflow. Before, WP had a ‘private_to_published’ action that announced that a post moved from private to published, and that’s about it. Now WP has actions for every possible transition. These actions are of the form ’status_to_status’ where status is one of:
\nWhen a ‘pending’ post is published, the action ‘pending_to_publish’ is triggered. The action is accompanied by the post object that is changing status.
\nA generic ‘transition_post_status’ action is also emitted for every status change. It is accompanied by the new status, the old status, and the post object. Plugins can use this action to attach a function that intercepts all status changes.
\nThe final action triggered during a status change is of the form ’status_object’, where status is from the status list above and object is either ‘page’ or ‘post’. For example, when a post is published, a ‘publish_post’ action is triggered. The action is accompanied by the post ID and post object.
\nSee the function wp_transition_post_status() for how these actions are formed. Use add_action() to attach functions to these actions.
\";}i:5;a:7:{s:5:\"title\";s:52:\"Donncha: Is your eAccelerator cache dir still there?\";s:4:\"guid\";s:72:\"http://ocaoimh.ie/2007/09/05/is-your-eaccelerator-cache-dir-still-there/\";s:4:\"link\";s:72:\"http://ocaoimh.ie/2007/09/05/is-your-eaccelerator-cache-dir-still-there/\";s:11:\"description\";s:1425:\"While looking through this WordPress performance post I realised that eAccelerator might not be running properly on this blog. For some time I’ve noticed this site hasn’t been as quick off the mark as it used to be. Dare I say it, but it was even a little sluggish!
\nIf you’re not familiar with it, eAccelerator is a PHP accelerator. It caches PHP bytecode and performs optimizations to make your PHP site run a lot faster.
\nI verified that eAccelerator was loaded and then checked my php.ini configuration. Sure enough, the eaccelerator.cache_dir directive was set to “/tmp/eacc/” and that directory was deleted the last time my server rebooted.
A permanent fix is to change the location of the cache dir. Put it anywhere the webserver can read, but don’t put it in /tmp/.
\nWhile you’re looking at eAccelerator, upgrade to the latest version, especially if you’re running PHP5.
\napache, eaccelerator, irishblogs, PHP, WordPress\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 15:25:51 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:1425:\"While looking through this WordPress performance post I realised that eAccelerator might not be running properly on this blog. For some time I’ve noticed this site hasn’t been as quick off the mark as it used to be. Dare I say it, but it was even a little sluggish!
\nIf you’re not familiar with it, eAccelerator is a PHP accelerator. It caches PHP bytecode and performs optimizations to make your PHP site run a lot faster.
\nI verified that eAccelerator was loaded and then checked my php.ini configuration. Sure enough, the eaccelerator.cache_dir directive was set to “/tmp/eacc/” and that directory was deleted the last time my server rebooted.
A permanent fix is to change the location of the cache dir. Put it anywhere the webserver can read, but don’t put it in /tmp/.
\nWhile you’re looking at eAccelerator, upgrade to the latest version, especially if you’re running PHP5.
\napache, eaccelerator, irishblogs, PHP, WordPress\";}i:6;a:7:{s:5:\"title\";s:16:\"Matt: Confession\";s:4:\"guid\";s:43:\"http://photomatt.net/2007/09/05/confession/\";s:4:\"link\";s:43:\"http://photomatt.net/2007/09/05/confession/\";s:11:\"description\";s:168:\"I’ve been using IE7 quite a bit lately. It’s a darn-good browser and seems very fast, especially when I have a lot of tabs open, compared to Firefox.
\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 09:33:09 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:168:\"I’ve been using IE7 quite a bit lately. It’s a darn-good browser and seems very fast, especially when I have a lot of tabs open, compared to Firefox.
\";}i:7;a:7:{s:5:\"title\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 9/5\";s:4:\"guid\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-theme-releases-for-95/\";s:4:\"link\";s:85:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-theme-releases-for-95/\";s:11:\"description\";s:835:\"Blog Oh Blog v2.0 is a 3-column, widget-ready, minimalistic theme with support for a sitemap and sIFR.
\nKubrick 3-C is a the popular Kubrick theme in a 3-column, widget-ready layout.
\nMaggiociondolo is a 3-column, minimalist theme built on Sandbox.
\nRestaurant is a 2-column, simple theme that comes in two varieties - AJAX and no AJAX.
\nSynergy is a 2-column, dark-grey theme with blue header and highlights.
\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 05:00:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:835:\"Blog Oh Blog v2.0 is a 3-column, widget-ready, minimalistic theme with support for a sitemap and sIFR.
\nKubrick 3-C is a the popular Kubrick theme in a 3-column, widget-ready layout.
\nMaggiociondolo is a 3-column, minimalist theme built on Sandbox.
\nRestaurant is a 2-column, simple theme that comes in two varieties - AJAX and no AJAX.
\nSynergy is a 2-column, dark-grey theme with blue header and highlights.
\";}i:8;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 9/5\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-plugin-releases-for-95/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/09/05/wordpress-plugin-releases-for-95/\";s:11:\"description\";s:2120:\"Amazon Media Manager lets you add items from Amazon’s catalogue to your wordpress blog.
\nBackupWordPress is a Backup & Recovery Suite for your WordPress website.
\nDelink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.
\nImpress allows your to display/share your blog statistics with your readers.
\nKontera Integration lets you enable or disable Kontera ads on a post-by-post basis.
\nMini-Slides lets you create individually styled mini-slides in your posts and lets you set the default template to be used site-wide.
\nSearch Unleashed extends the standard WordPress search and provides a full text search with wildcards, logical operations, and highlighting across posts, pages, comments, titles, URLs, and meta-data.
\nShashin lets you display Picasa images anywhere in your WordPress site.
\nSign-out Reminder displays a reminder to users to remember to sign out whenever they log in to the admin area.
\nWP-Syslog is a system logging facility for WordPress that ogs core events like user logins, posts and comments publishing, plugin (de-)activation.
\nTextiler lets you place Textile markup in your blog entries in very specific blocks.
\";s:7:\"pubdate\";s:31:\"Wed, 05 Sep 2007 05:00:22 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:2120:\"Amazon Media Manager lets you add items from Amazon’s catalogue to your wordpress blog.
\nBackupWordPress is a Backup & Recovery Suite for your WordPress website.
\nDelink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.
\nImpress allows your to display/share your blog statistics with your readers.
\nKontera Integration lets you enable or disable Kontera ads on a post-by-post basis.
\nMini-Slides lets you create individually styled mini-slides in your posts and lets you set the default template to be used site-wide.
\nSearch Unleashed extends the standard WordPress search and provides a full text search with wildcards, logical operations, and highlighting across posts, pages, comments, titles, URLs, and meta-data.
\nShashin lets you display Picasa images anywhere in your WordPress site.
\nSign-out Reminder displays a reminder to users to remember to sign out whenever they log in to the admin area.
\nWP-Syslog is a system logging facility for WordPress that ogs core events like user logins, posts and comments publishing, plugin (de-)activation.
\nTextiler lets you place Textile markup in your blog entries in very specific blocks.
\";}i:9;a:7:{s:5:\"title\";s:32:\"Ryan Boren: WordPress 2.3 Beta 2\";s:4:\"guid\";s:56:\"http://boren.nu/archives/2007/09/04/wordpress-23-beta-2/\";s:4:\"link\";s:56:\"http://boren.nu/archives/2007/09/04/wordpress-23-beta-2/\";s:11:\"description\";s:995:\"2.3 Beta 2 is now available. We’ve been very active since beta 1. Over 70 commits went into the repository in the past week with many bugs being fixed. New and improved AtomPub was introduced as were tag importers for Jerome’s Keywords and Simple Tagging Plugin.
\nThanks to those who joined us for last week’s bug hunt. We’re having another on Wednesday, September 5, 2007 at 17:00:00 UTC time in the #wordpress-bugs channel.
\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 17:51:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Ryan\";}s:7:\"summary\";s:995:\"2.3 Beta 2 is now available. We’ve been very active since beta 1. Over 70 commits went into the repository in the past week with many bugs being fixed. New and improved AtomPub was introduced as were tag importers for Jerome’s Keywords and Simple Tagging Plugin.
\nThanks to those who joined us for last week’s bug hunt. We’re having another on Wednesday, September 5, 2007 at 17:00:00 UTC time in the #wordpress-bugs channel.
\";}i:10;a:7:{s:5:\"title\";s:30:\"Dev Blog: WordPress 2.3 Beta 2\";s:4:\"guid\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:4:\"link\";s:61:\"http://wordpress.org/development/2007/09/wordpress-23-beta-2/\";s:11:\"description\";s:710:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.
\nStill want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.
\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 06:03:58 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:12:\"Mark Jaquith\";}s:7:\"summary\";s:710:\"WordPress 2.3 will be here before you know it! We’re putting out a beta release every Monday until WordPress 2.3 ships on September 24th. Today the second beta drops for your testing pleasure. We’ve fixed a bunch of bugs in the last week — thanks to everyone who participated! That said, this is still rough code, so you should only test the beta if you are comfortable troubleshooting PHP issues, filing tickets, and backing up your blog’s data.
\nStill want to play? Go ahead and join the wp-testers mailing list and download beta 2 here.
\";}i:11;a:7:{s:5:\"title\";s:36:\"Alex King: Delink Comment Author 1.0\";s:4:\"guid\";s:60:\"http://alexking.org/blog/2007/09/03/delink-comment-author-10\";s:4:\"link\";s:60:\"http://alexking.org/blog/2007/09/03/delink-comment-author-10\";s:11:\"description\";s:1309:\"Here’s a little one-trick pony WordPress plugin. Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.
\nMy comment policy is to allow only personal web site URLs from commenters. From time to time someone will leave a pretty legit comment, but with a pretty non-personal URL. With this plugin I can just remove the URL instead of deleting the entire comment. Not sure how useful this will be to others, but it’s I’ve put it out there if you want to use it.
The download and more information are available on my WordPress Plugins page.
\nIf you have any trouble with this, please open a thread in the WP Support Forums and send me the link.
\n\";s:7:\"pubdate\";s:31:\"Tue, 04 Sep 2007 03:18:00 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1309:\"Here’s a little one-trick pony WordPress plugin. Delink Comment Author adds a link that will remove the URL that the commenter left with their comment to the bottom of your comment notification e-mails and the comments list in your WP admin page.
\nMy comment policy is to allow only personal web site URLs from commenters. From time to time someone will leave a pretty legit comment, but with a pretty non-personal URL. With this plugin I can just remove the URL instead of deleting the entire comment. Not sure how useful this will be to others, but it’s I’ve put it out there if you want to use it.
The download and more information are available on my WordPress Plugins page.
\nIf you have any trouble with this, please open a thread in the WP Support Forums and send me the link.
\n\";}i:12;a:7:{s:5:\"title\";s:18:\"Matt: On Labor Day\";s:4:\"guid\";s:45:\"http://photomatt.net/2007/09/03/on-labor-day/\";s:4:\"link\";s:45:\"http://photomatt.net/2007/09/03/on-labor-day/\";s:11:\"description\";s:108:\"\";s:7:\"pubdate\";s:31:\"Mon, 03 Sep 2007 23:58:32 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Matt\";}s:7:\"summary\";s:108:\"\";}i:13;a:7:{s:5:\"title\";s:37:\"Alex King: Twitter Tools “Brokenâ€\";s:4:\"guid\";s:56:\"http://alexking.org/blog/2007/09/01/twitter-tools-broken\";s:4:\"link\";s:56:\"http://alexking.org/blog/2007/09/01/twitter-tools-broken\";s:11:\"description\";s:822:\"All–
\nI’m very sorry that Twitter Tools is not currently working. The breakage appears to be due to an issue on the Twitter side.
\nThank you kindly for your patience while things get straightened out.
\nYour friend,
\n–Alex King
PS. Thank you to those of you went to the forums as requested, I’m sure you already found this information posted there.\n
\";s:7:\"pubdate\";s:31:\"Sat, 01 Sep 2007 15:09:27 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:822:\"All–
\nI’m very sorry that Twitter Tools is not currently working. The breakage appears to be due to an issue on the Twitter side.
\nThank you kindly for your patience while things get straightened out.
\nYour friend,
\n–Alex King
PS. Thank you to those of you went to the forums as requested, I’m sure you already found this information posted there.\n
\";}i:14;a:7:{s:5:\"title\";s:63:\"Lorelle on WP: Celebrating Two Years: A Month of WordPress Tips\";s:4:\"guid\";s:88:\"http://lorelle.wordpress.com/2007/08/31/celebrating-two-years-a-month-of-wordpress-tips/\";s:4:\"link\";s:88:\"http://lorelle.wordpress.com/2007/08/31/celebrating-two-years-a-month-of-wordpress-tips/\";s:11:\"description\";s:2831:\"
As part of my two month-long party celebrating the two year anniversary of WordPress.com and this blog with guest bloggers, we’re just finishing up month one of non-stop blogging about blogging, and tomorrow begins a whole month of non-stop WordPress tips.
To help get you in the mood, here are some of the tips for WordPress and WordPress.com I’ve covered in the past.
\nThe most important help I can give to WordPress users is knowing where to go for help. The resources for finding help for WordPress issues are:
\nSome articles I’ve written in the past on how to find and get help with WordPress include:
\n (more…)
As part of my two month-long party celebrating the two year anniversary of WordPress.com and this blog with guest bloggers, we’re just finishing up month one of non-stop blogging about blogging, and tomorrow begins a whole month of non-stop WordPress tips.
To help get you in the mood, here are some of the tips for WordPress and WordPress.com I’ve covered in the past.
\nThe most important help I can give to WordPress users is knowing where to go for help. The resources for finding help for WordPress issues are:
\nSome articles I’ve written in the past on how to find and get help with WordPress include:
\n (more…)
\nThis comment was posted automatically using Blog Comment Poster. Check out its site to learn more and start building backlinks to your websites today.
This post was written manually using Donncha’s fingers. Check out the Akismet anti comment-spam plugin to stop the idiot spammer at 75.126.132.23 using “Blog Comment Poster”.
\nakismet, Automattic, blog comment poster, comment spam, irishblogs, WordPress\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 13:04:30 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:7:\"Donncha\";}s:7:\"summary\";s:849:\"\nThis comment was posted automatically using Blog Comment Poster. Check out its site to learn more and start building backlinks to your websites today.
This post was written manually using Donncha’s fingers. Check out the Akismet anti comment-spam plugin to stop the idiot spammer at 75.126.132.23 using “Blog Comment Poster”.
\nakismet, Automattic, blog comment poster, comment spam, irishblogs, WordPress\";}i:16;a:7:{s:5:\"title\";s:31:\"Alex King: Friendly Search URLs\";s:4:\"guid\";s:56:\"http://alexking.org/blog/2007/08/30/friendly-search-urls\";s:4:\"link\";s:56:\"http://alexking.org/blog/2007/08/30/friendly-search-urls\";s:11:\"description\";s:1867:\"I\'ve recently gotten several e-mails asking how I created my friendly search URLs here on alexking.org (also used on the Crowd Favorite web site, etc.); I figured others might be interested in this as well.
\nIt\'s really rather simple, there are just a couple of places to make changes. Note: you must be using nice permalinks with an Apache web server for this to work as described below.
\nAdd this mod_rewrite rule in your .htaccess file:
\nRewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L]UPDATE: Mark informs me that this has actually been built in to WP since 1.5 (meaning this step is not necessary) - who knew? Not me apparently.
Add an onsubmit handler to the form tag in the search form in your theme:
<form action=\"<?php bloginfo(\'wpurl\'); ?>/index.php\" method=\"get\" onsubmit=\"location.href=\'<?php bloginfo(\'home\'); ?>/search/\' + encodeURIComponent(this.s.value).replace(/%20/g, \'+\'); return false;\">Then... you\'re done. Kinda anti-climactic, but it\'s a pretty simple little change.
\nOne thing I\'ve found handy about this is the ability to simply type:
\nhttp://alexking.org/search/your+search+termsto search my site.
\nThere\'s more than one way to skin a cat, suggestions and improvements to this are welcome in the comments.\n
\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 06:40:37 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:4:\"Alex\";}s:7:\"summary\";s:1867:\"I\'ve recently gotten several e-mails asking how I created my friendly search URLs here on alexking.org (also used on the Crowd Favorite web site, etc.); I figured others might be interested in this as well.
\nIt\'s really rather simple, there are just a couple of places to make changes. Note: you must be using nice permalinks with an Apache web server for this to work as described below.
\nAdd this mod_rewrite rule in your .htaccess file:
\nRewriteRule ^search/(.+)?$ /index.php?s=$1 [QSA,L]UPDATE: Mark informs me that this has actually been built in to WP since 1.5 (meaning this step is not necessary) - who knew? Not me apparently.
Add an onsubmit handler to the form tag in the search form in your theme:
<form action=\"<?php bloginfo(\'wpurl\'); ?>/index.php\" method=\"get\" onsubmit=\"location.href=\'<?php bloginfo(\'home\'); ?>/search/\' + encodeURIComponent(this.s.value).replace(/%20/g, \'+\'); return false;\">Then... you\'re done. Kinda anti-climactic, but it\'s a pretty simple little change.
\nOne thing I\'ve found handy about this is the ability to simply type:
\nhttp://alexking.org/search/your+search+termsto search my site.
\nThere\'s more than one way to skin a cat, suggestions and improvements to this are welcome in the comments.\n
\";}i:17;a:7:{s:5:\"title\";s:85:\"WordPress Podcast: Episode 28: WordCamp memories, theme hijackers and vulnerabilities\";s:4:\"guid\";s:64:\"http://wp-community.org/2007/08/31/episode-28-wordcamp-memories/\";s:4:\"link\";s:64:\"http://wp-community.org/2007/08/31/episode-28-wordcamp-memories/\";s:11:\"description\";s:4641:\"| 01:55 | \n\n Opinion: WordCamp San Francisco 2007 \nIn this long-overdue (not to mention overly long) episode, Aaron and Charles share their thoughts on attending WordCamp in San Francisco including: \n
| \n
| 29:19 | \n\n Open question: Would anyone come to a WordCamp in Dallas, Texas? \nI’m interested in spearheading efforts to plan a WordCamp in early 2008 in the Dallas/Fort Worth, Texas area. If there is one, would you attend? \n | \n
| 29:19 | \n\n Announcement: The Baltimore-Washington WordPress Meetup Group \nThe next meeting of The Baltimore-Washington WordPress Meetup Group is scheduled for September 20th. (This wasn’t mentioned in the podcast because we spoke of the first meetup that occurred several weeks ago.) \n | \n
| 30:30 | \n\n News: Templates Browser modifying themes to distribute malware \nTemplates Browser (no, I won’t link to them) is re-distributing public blog themes which are modified in such a way as to exploit the end user by inserting hidden spam or malware links. \n | \n
| 33:18 | \n\n News: Is WordPress vulnerable? \nMark Jaquith answers a charge of 7 security vulnerabilities in WordPress 2.2.x \n | \n
| 37:22 | \n\n Feedback, comments and questions: \n
| \n
| 01:55 | \n\n Opinion: WordCamp San Francisco 2007 \nIn this long-overdue (not to mention overly long) episode, Aaron and Charles share their thoughts on attending WordCamp in San Francisco including: \n
| \n
| 29:19 | \n\n Open question: Would anyone come to a WordCamp in Dallas, Texas? \nI’m interested in spearheading efforts to plan a WordCamp in early 2008 in the Dallas/Fort Worth, Texas area. If there is one, would you attend? \n | \n
| 29:19 | \n\n Announcement: The Baltimore-Washington WordPress Meetup Group \nThe next meeting of The Baltimore-Washington WordPress Meetup Group is scheduled for September 20th. (This wasn’t mentioned in the podcast because we spoke of the first meetup that occurred several weeks ago.) \n | \n
| 30:30 | \n\n News: Templates Browser modifying themes to distribute malware \nTemplates Browser (no, I won’t link to them) is re-distributing public blog themes which are modified in such a way as to exploit the end user by inserting hidden spam or malware links. \n | \n
| 33:18 | \n\n News: Is WordPress vulnerable? \nMark Jaquith answers a charge of 7 security vulnerabilities in WordPress 2.2.x \n | \n
| 37:22 | \n\n Feedback, comments and questions: \n
| \n
ACSearch adds auto-completion to the WordPress search field.
\nAdd to Any Subscribe Button lets readers subscribe to your blog using any feed reader.
\nDuplicate Sidebar Widgets allows a WordPress user to duplicate or copy sidebar widgets and use them on multiple sidebars or use the widgets more than once in the same sidebar.
\nWP Mail SMTP replaces the in-built wp_mail() function with a duplicate function which uses SMTP to localhost instead of PHP mail.
\nthis.player is a a small player written in Flash that allows you to use simple tags to embed FLV, SWF and MP3 files into WordPress posts.
\";s:7:\"pubdate\";s:31:\"Fri, 31 Aug 2007 04:45:35 +0000\";s:2:\"dc\";a:1:{s:7:\"creator\";s:11:\"Jim Stitzel\";}s:7:\"summary\";s:996:\"ACSearch adds auto-completion to the WordPress search field.
\nAdd to Any Subscribe Button lets readers subscribe to your blog using any feed reader.
\nDuplicate Sidebar Widgets allows a WordPress user to duplicate or copy sidebar widgets and use them on multiple sidebars or use the widgets more than once in the same sidebar.
\nWP Mail SMTP replaces the in-built wp_mail() function with a duplicate function which uses SMTP to localhost instead of PHP mail.
\nthis.player is a a small player written in Flash that allows you to use simple tags to embed FLV, SWF and MP3 files into WordPress posts.
\";}i:19;a:7:{s:5:\"title\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 8/31\";s:4:\"guid\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-theme-releases-for-831/\";s:4:\"link\";s:86:\"http://weblogtoolscollection.com/archives/2007/08/31/wordpress-theme-releases-for-831/\";s:11:\"description\";s:1402:\"All Season is a suite of 3-column, widget-ready themes designed to allow bloggers to change their themes on a seasonal, monthly basis. There are currently three themes in the suite with nine more planned for future release.
\nIndependence Day is a 3-column, widget-ready theme with Author Page designed in celebratio