Hate Your Host?

Lorelle, the consummate WordPress blogger, wants to know what you look for in a WordPress host. She hates hers, and is shopping around.

What do you look for?

WordPress 2.1 Released

WordPress just announced the release of version 2.1, which WebbleYou, as the premier host of WordPress-powered independent weblogs, will be installing and supporting immediately.

New customers who sign up today will have WordPress 2.1 preinstalled, and existing customers may request an upgrade (at no charge) by contacting WebbleYou support.

WP 2.1 has a slew of new features, including:

  • Autosave
  • Tabbed WYSIWYG/HTML editor
  • More time-saving Ajax features, so you can edit your blog without reloading pages
  • Improved Dashboard and Page writing features

WordPress has also announced an aggressive new upgrade schedule, with the next release set for April 23rd. More at the WordPress Development Blog

Note that there are expected to be some plugin compatibility issues, which you can read about and check on.

WordPress 2.0.5 Released

WordPress 2.0.5 is now available, and as always, WebbleYou will be preinstalling, supporting, and (upon request) upgrading to this version.

This is not a major feature release, but the WP team recommends upgrading because of the enhanced security of this release. We will be testing the new version to make sure their are no bugs that will affect users (one remains to be seen).

This is also a good time to remind everyone to use the WordPress database backup plugin, in case something happens while you’re using your site (our systemwide backups aren’t good for restoring individual databases). If you need help with any of this, or have any questions, please contact us.

LogoFriendly Theme Released

WebbleYou is proud to release the alpha edition of the LogoFriendly theme, which is in use on this site. This theme is highly customizable, and very easy to use. Read more

Directing Users from Individual Blogspot to WordPress Posts

If you move from Blog*Spot to WordPress, you’ll likely have many inbound links still pointing at your Blog*Spot site. There’s no reason to take down your Blog*Spot site and lose the traffic those links generate. However, you also want users to find your new site.

If you want to redirect users from a specific post on your Blog*Spot site to that same post on your new site, look for this section of your Blogger template:

<$BlogItemBody$>


And add something like this right below it:

You are viewing my old site. You can my new site.

This will take users to a search results page, which, if you use fairly unique post titles, will lead the user to the correct post.

WebbleYou specializes in helping you move from Blogger to WordPress. Please contact us if you are interested in our services.

Now Offering Private Domain Registration for $10/year

WebbleYou is pleased to offer private domain registration for $10/year. This makes it easier than ever to start a website, with the security of private registration but without the hassle or expense of going through a separate domain registrar. Find and order a domain here.

Hide Outgoing Links with .htaccess

You can use your own link engine to hide outgoing links such as affiliate links. For example, if you wanted to direct visitors to Amazon when they visit yourblog.com/go/books, you could take the following steps:

  1. Login to your site via FTP, and create a folder called go in your webroot (e.g. /www or /public_html or /httpdocs folder).
  2. Create a file containing lines like this:
    Redirect /go/keyword http://www.destination-url.com/affiliate-code
    Name this file .htaccess (note the leading period) and upload it to the new go directory. Note: Windows will not let you name a file .htaccess on your PC. Give it another name and rename it to .htaccess after uploading.
  3. Now we have to make WordPress ignore the “go” folder, or else it will redirect users into a WordPress error page. Open your main .htaccess file (the one in your webroot directory) and look for this line:
    # END WordPress
    Add this line after it:
    RewriteRule ^go/.*$ - [PT]
  4. Add more outgoing link keywords and URLs by editing the .htaccess file in your /go directory whenever you want.

Blix Theme for WordPress - Widgetized Version

WebbleYou was commissioned by a client to widget-ize the excellent Blix theme for WordPress. You can download the widgetized version here: ZIP | tar.gz

WordPress widgets are a project of Automattic. The Widgets plugin requires WP2.0.2 (which we pre-install by default).

Notes:

  • Blix was released for Version 1.5, but it works with WP2.0.x (which is required for using widgets).
  • Blix uses different icons for different sidebar elements. If a sidebar element uses lists other than those specified in the stylesheet, they will be bulleted with the same icon used for categories. I think.

If you notice any issues, please let us know. If you would like WebbleYou to widget-ize a theme for you, we can do so for around $20 (depending on the complexity and your needs). Contact us to discuss details.

Note: This theme was last updated on May 1, 2006. If you downloaded the theme prior to that date, you will have RSS feed problems and other issues; please use the new version, which fixes these problems.

HOWTO Specify a Banner Image for Each WordPress Page

To specify a different banner image for each “page” on your WordPress-powered site, you can use the is_page conditional tag. If you’re using the Kubrick theme or a theme based on Kubrick (about 80% of WP themes are), this code or something like it should do the trick. Edit your header.php and replace the #header { … } style line with:

#header { background: url("/images/ (is_page('1')) {
echo "about.jpg";
} elseif (is_page('2')) {
echo "photos.jpg";
} elseif (is_page('3')) {
echo "calendar.jpg";
} elseif (is_page('4')) {
echo "donate.jpg";
} elseif (is_page('5')) {
echo "contact.jpg";
} elseif (1) {
echo "default-banner.jpg";
} ?>“) no-repeat bottom center; }

You can of course add or delete elseif statements to match the number of pages you have, and change the filenames to match your banners. The number in quotes in each is_page statement is the page ID, which you can see when editing the page.

To use a random header image each time, see Flash JPG rotator.

 

Home | Blog | Blog Network

WebbleYou is not affiliated with WordPress, which is freely available under the GPL