Need a WordPress website this weekend? Start here...

Leveraging Localhost WordPress for Learning Webmaster Skills

(Reading time: 10 – 16 minutes)

Long time readers know I run several testing installations of WordPress right on my own computer. This is colossally useful for a number of reasons:

  1. New versions of WordPress are easily installed and tested
  2. New plugins and themes can be developed and tested.
  3. Reduces risk of destroying production installations.
  4. And finally, I can learn new skills in a safe, no-risk environment.

If you have been following along in this series, you will have installed Apache, MySQL, PHP and WordPress independently from separate installer packages, and your configuration should be very close to mine. You should have a working WordPress installation, which means MySQL and PHP work essentially correctly.

As it turns out, your Apache configuration is going to be bare bones, and set to very strict default behavior. This is a good thing. Better to learn how to relax your web security incrementally, than to get your web security beat upside your head by malicious exploits. Of course, running from localhost, it’s not that big of deal… if you get hacked you can just get off the network and deal with it. Thus, in addition to WordPress, we’re going to learn some Apache magic as well.

Quick subdomain setup for Windows Apache Localhost

Suppose you want to move a WordPress installation from one subdomain to another. You will need to know something about setting up subdomains, which is the topic of this section.

Setting up a subdomain on your locally hosted Apache webserver is not difficult. There’s plenty of material on the web explaining exactly how to accomplish this task… for specific and different combinations of Apache and Windows versions. As usual, none of these explanations fit my situation exactly. Most likely, none of them will fit yours either.

So here’s mine, which you can use as yet another resource. I’ll add some links I used for reference at the end of this section.

What you need to know:

  • How to use a plain old ASCII text editor. I use XEmacs. You can use Notepad or whatever you want. Just make sure you stay in plain old text.
  • Where your Apache webserver is installed. Mine is installed in C:\Program Files (x86)\Apache Software Foundation\Apache2.2\. You may be using XAMPP, which is fine, these instructions will be adaptable to your situation.

    I’m going to refer to this location as APACHE_DIR for the rest of this article.

Here’s the steps for creating a subdomain:

  1. Create a subdirectory. For example, APACHE_DIR/htdocs/wptest. Creating a directory or folder should be easy for you. If this is confusing, leave a comment below.
  2. Edit Apache config to add the subdomain. This part can be a little tricky; you need to know something about how configuration in general works. We’ll take a detailed look at this in the next section.
  3. Edit the Windows /etc/hosts file. Again, could be a little tricky. There are a couple of ways to set this up, I’ll discuss in detail below.

Add subdomain to Apache httpd-vhosts.conf

As mentioned, everyone’s installation is going to be slightly different, so the best I can do is walk you through exactly what I did for my installation.

First, open APACHE_DIR/conf/httpd.conf. Find the lines that look like this:

460
461
# Virtual hosts
#Include conf/extra/httpd-vhosts.conf

You want to uncomment line 461, such that you are including conf/extra/httpd-vhosts.conf.

Now open APACHE_DIR/conf/extras/httpd-vhosts.conf. Make sure you’re serving from the correct port, in my case 8080:

17
18
19
# Use name-based virtual hosting.
#
NameVirtualHost *:8080

I have a couple of virtual examples in my conf file, which I’m going to comment out. Below those commented out sections, I added the following (Note: your line numbers will likely be different):

44
45
46
47
48
49
50
51
52
53
54
55
56
<VirtualHost *:8080>
    ServerAdmin admin@localhost
    DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/"
    ServerName localhost
    ErrorLog "logs/error.log"
 </VirtualHost>
 
<VirtualHost *:8080>
    ServerAdmin admin@localhost
    DocumentRoot "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/wptest"
    ServerName wptest.localhost
    ErrorLog "logs/wptest-error.log"
 </VirtualHost>

For my configuration, I need to have my root directory set up explicitly as a VirtualHost. Otherwise, only the wptest subdomain works. Note that I added a specific error log for wptest. This is for my convenience, the webserver doesn’t care.

Use your own email address for ServerAdmin of course.

Adding to Windows etc/hosts

This is an easy step. Your hosts file should be located in or very near C:\Windows\System32\drivers\etc. Open this file in Notepad and add a single line:

127.0.0.1  wptest.localhost

Restart Apache.

Now, if you used “wptest” as your example as I did, you should be able to click the link http://wptest.localhost:8080/ and it will take you to your new subdomain.

Related links for localhost subdomains

These are the articles I used for reference, you should use them too:

  • Team Offshoot on Setting up localhost subdomains
  • Here’s Jared Hocutt’s article setting up subdomains on localhost.
  • After you have read the previous two links, and after you have your subdomain working, go read the official Apache VirtualHost documentation. There is more there than you probably need to know… but you should get familiar with what you don’t know.
  • Zaib Kaleem has an outstanding little article on moving a blog from a subdomain to your main domain. He points out to remember fixing the author’s URLs as well as to update the uploads URLs. There’s another article on the WordPress Codex that covers the same process from a slightly different perspective. The reader will find it easily using Google.
  • RajeshPG.com shows how to move WordPress from root to a subdirectory. This is a pretty good article, which I saved as a pdf for future reference. NOTE: I haven’t checked this article for accuracy, but the information is good enough that I could fix any typos, blunders or small errors easily.

How to move a blog using .htaccess magic

Suppose you have (as I do) a directory you want to rename from “wp28″ to “wordpress28,” perhaps as illustrative example for your blog. Or whatever. Bradley Charbonneau provides a distinctly telegraphic procedure for moving WordPress between subdirectories, which works fine for me, but bears a bit more in-depth examination for some readers.

So you’re moving a bunch of stuff around, say, like a WordPress blog… using .htaccess. Lot’s of wonderful tutorials on the web on rewriting URLs. For our example, the following .htaccess file handles the move:

1
2
3
RewriteEngine On
RewriteBase /wp28/
RewriteRule ^(.*)$ http://localhost:8080/wordpress28/$1 [L,R=301]

But no matter what you try… NOTHING works. Not even a little bit. Are you going crazy? Maybe, but there may be a simpler answer. Open up your httpd.conf file. Does it look like this:

114
115
116
117
118
#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
#LoadModule proxy_http_module modules/mod_proxy_http.so
#LoadModule rewrite_module modules/mod_rewrite.so
LoadModule setenvif_module modules/mod_setenvif.so
#LoadModule speling_module modules/mod_speling.so

So, (my) line 116… you need to uncomment that if you want to use .htaccess for rewriting (which is what you want to do). Then make sure to restart Apache!

Did that do the trick? No? Ok, time to dig deeper.

Check the latest entries in logs/error.log. If you see an error similar to this:

[Mon Jul 20 12:38:19 2009] [error] [client 127.0.0.1] client denied by server configuration: C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/wp28/.htaccess

you’re dead in the water.

But it’s easily fixable, if you know exactly what to do.

The operative phrases here are “client denied by server configuration” and “.htaccess.” Succinctly, you will need to allow Apache to use .htaccess to override default configuration that denies .htaccess usage. It’s not difficult, and there’s a couple of ways to do it. The first way is making the override global. That’s fast and easy, but not as secure. The second way is to override on a per-directory basis, which is what we’re going to do here:

1
2
3
4
5
6
<Directory "C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/wp28">
    Options -Indexes FollowSymLinks
    AllowOverride AuthConfig FileInfo
    Order allow,deny
    Allow from all
</Directory>

Line 3 is the key, and the AuthConfig and FileInfo options will do what we want, namely, allow the redirect from wp28 to wordpress28. Add another one of these Directory modules for wordpress28 to enable permalinks for wordpress28 directory. Otherwise, you will be able to write the .htaccess file, but Apache won’t read it.

There’s even more…

If you’re run a cPanel-hosted site, you can change all the top-level redirects by doing a search and replace in the .htaccess for that site. Here’s the steps:

  1. Log in to cPanel, click on the “Redirects” link. You probably already know how to do this; if you’re changing redirects, you had to put them there in the first place right?
  2. Back up your current .htaccess file. I do it like this: .htaccess → .htaccess_todaysdate.
  3. Use your FTP program to download it for local editing, or edit it on the server if you feel brave. If you have a number of websites, you may already have flock of .htaccess files lurking, so editing on the server helps reduce the confusion.
  4. Do a search and replace to fix all the new URLs. Upload the new .htaccess and test everything out. Refresh your cPanel Redirects page to ensure everything works. That’s it, you’re done!

Giving WordPress it’s own subdirectory

Perhaps you would like to put all your files in a subdirectory, but have WordPress operate from the top level of the domain. For example, you want mycooldomain.com as your URL, but you want to keep all the files safely tucked away in mycooldomain.com/main1 (don’t ask).

This is so easy and common that the WordPress Codex has just the procedure for you: Giving WordPress Its Own Directory.

That’s great if you are just starting out.

But suppose you have a blog that’s been in operation at mycooldomain/main1 for a long time, with dozens of hundreds of posts and pages, and great search engine results. You need to do a little more work to capture all the results going from the old URL to the new. John Godley’s Redirection plugin is just the ticket.

The idea is to set up a new redirection using regular expressions. Using the directions on the Redirection home page, here’s what it looks like:

Setting up redirection regular expression

Setting up redirection regular expression

It’s not difficult, and using your localhost installation for testing is smart.

One last thing: If you already have a sitemap generator installed, such as Google XML Sitemap, make sure you update the location of the resulting sitemap. If you do not, it will attempt to write the sitemap into your old location, and may fail.

And, when you do this “for real” instead of on localhost…

Make sure you change your settings for Google Webmaster Tools!

You will want to ensure the new sitemap uploads and is valid, then you want to examine the details to ensure all the URLs are correct. If you have your redirections set up properly, you may want to leave the existing sitemap in place for a while, until the new one is indexed. Don’t forget about your RSS feeds, feedburner, and URLs you may have in any other places.

Themes, plugins and more!

Having a localhost installation makes it easy and safe to test new themes and plugins. Your new plugins can meddle with the database with impunity. If you crash it or corrupt the database, no problem, just reinstall or re-import a testing database.

With themes, you can go wild with CSS and formatting and nobody will ever see how terrible it looks.

Other advantages of running a localhost webserver:

  • It’s easy to dig into Apache configuration, and no-risk when you mess it up (and you will mess it up).
  • Learning to handle various HTTP issues such as 404 errors and 301 redirects gives you a lot of power on once you apply your newfound knowledge to your production server.
  • You can develop entire maintenance procedures and scripts locally, testing and debugging before deploying live.

So if you haven’t installed a local webserver, block out a couple of hours and jump in. It’s not difficult, and your knowledge will pay you back in the future. Even if you have no plans to be a “professional” web developer, the more knowledge you have the easier it will be to outsource exactly what you need… without getting ripped off by unscrupulous developers.

Unleash WordPress: Your New Blog Checklist For Success

(Reading time: 4 – 6 minutes)

Creating a brand new personal publishing platform (i.e., a blog) on the World Wide Web has become stupendously easy. Creating a blog that doesn’t suck isn’t that difficult either. In fact, it’s as easy as following this checklist:

  1. Install WordPress: It’s simple! Use the Website In A Weekend procedure for 5 minute installation.
  2. Choose an appropriate theme: 2 columns? 3 columns? What makes a good theme anyway? As you probably know already, I use Thesis theme, but there’s many others. Whichever theme you use, ensure it’s well-maintained and works with the current version of WordPress. Look for more on choosing themes in the future.
  3. Install and configure required plugins: There’s only a few plugins that fall into the required category… everyone has their short list… but what they do is all the same: get registered with search engines, block spam, etc. Here’s the Website In A Weekend for “Your Top 4 Plugins for WordPress — Critical infrastructure for your WordPress blog
  4. Handle initial security: Install the WP-Security plugin, follow it’s recommendations and you will be protected from a vast number of dumb mistakes. See, dumb mistakes are exploited by dumb hackers… and dumb hackers will destroy your site accidently! Smart hackers prefer to use your site, not destroy it. Keep the dummies out with simple security precautions.
    Check out “More WordPress Simple Security: 5 Plugins to help you lock out unwanted visitors.”
  5. Add required pages, editorial policy: Every blog needs a certain collection of pages: About, Terms and Conditions, Sitemap, and possibly more. Every blog needs “Web Site Infrastructure — Required posts and pages for your WordPress blog
  6. Ensure correct copyright: Technically, your work is copyrighted as soon as you write it. Declaring your copyright in a visible location helps establish your claim on infringement. For example, here’s “How To Add A Copyright Notice To A WordPress Theme.”

    If you’re really concerned, register important material with Library of Congress, which may allow you to seek damages on infringement. Talk to an attorney if copyright is a critical concern.

  7. Add favicon: Having an appropriate and professional favicon really helps your blog look good. Read more about Adding favicon.ico to WordPress For Professional Appearance.
  8. Create categories: Choose 3 to 7 Posting Categories to More Effectively Focus Your Writing. Categories really help you focus your writing to stay on target, and it’s worth spending the time to create effective category names.
  9. Add pillar content: Every website needs a main theme, established in 4 or 5 “flagship” pages of timeless material. Learn “How To Rapidly And Easily Create Pillar And Flagship Content For Your Blog.”
  10. Blog sitemap: Sitemaps make it easy for visitors to see your whole website at a glance and visit pages whose titles capture their interest. For example, check out Website In A Weekend’s sitemap… make sure you’re not missing anything important.
  11. Google Analytics: get your gmail account, sign up for
    analytics
    , follow the directions carefully, then paste the tracking code number into the correct field using Joost de Valk’s Google Analytics for WordPress plugin.
  12. XML sitemap, Google Webmaster tools: I use the “html” verification process, by creating an empty file on my local computer then transferring that file to the server using FTP. After transferring, I manually submit the sitemap.xml and wait about an hour. Once the sitemap is processed, I check for errors.
  13. Set up your 404 page: When your web server cannot find a web page as requested by the user it sends a “404 Error”. You can specify a page to be served to the user along with the error. The page can provide more information to the user, and direct them to other interesting parts of your website.
  14. Get right with Automattic for your Gravatar, Akismet and blog stats accounts. One registration at wordpress.com, useful for a host of reasons.

If you check off every item in this list… even if you just go through the motions like a mechanical robot… you will end with a blog that doesn’t suck. Really, you will. Do it and see. When you’re finished, compare what you’ve just done with other blogs out there. Remember, search engines don’t care about how your graphics look… blog with fancy graphics and crappy content won’t ever work their way up the search results… not without some serious gaming that is. In contrast, your well-structured blog with accurate and original content will over time accrue permanent authority. Here’s proof: over the last 3 months, Website In A Weekend has moved up from below the top hundred results and on to the first or second page of Google for many search terms related to the intensely competitive WordPress field, including the term “pillar content.” (Note: competitive terms below the top 3 fluctuate in ranking almost daily, being consistently on the first two pages is pretty good!)