Tag Archives: wordpress

Upgraded to wordpress 3.0

smooth upgrade. ref: http://wordpress.org/development/2010/06/thelonious/

Posted in Default | Tagged | Leave a comment

Upgraded to WP 2.9.2

and added WPtouch.

Posted in Default | Tagged , | Leave a comment

Upgraded to WP 2.9.1

nth new. added a new plugin: light-social to “insert a set of social share links at the bottom of each post, focused on technical blogs.”

Posted in Default | Tagged , | Leave a comment

A WordPress broken link helper

Just an example. For wordpress ppl who changed their perm link. Download: brokenlinkhelper.php<?php require_once( dirname(__FILE__) . ‘/wp-load.php’ );   global $wpdb;   $uri = $_SERVER["REQUEST_URI"]; $pattern = "/^\/(\d{4})\/(\d{2})\/(\d{2})\/([^\d].*|\d+[.^-]*).html$/"; if (preg_match($pattern, $uri, $match) == 1) {     $year = $match[1];     $month … Continue reading

Posted in Default | Tagged , | 7 Comments

Lighttpd url-redirect for WordPress Permlink changes

I changed my wordpress blog entry permlink format. But some link to my blog exists on Internet doesn’t work which results in a HTTP 404 error. Why redirect is better then rewrite Someone may have the same question, but take it … Continue reading

Posted in Default | Tagged , | 1 Comment