Transferring a Domain Registration
Just the name, not the site

Why is transferring a domain name so complicated?

Every time I set out to do this, something seems to hiccup. So I thought I’d write out the process here.

First, a definition: Registrar

The Registrar is the company you pay money to to own the domain. It might or might not be your hosting company.

Registration should be around $15/year but some registrars (Network Solutions) charge much more  per year and some less. If you pay less, they may try to upsell you with private registration and a bunch of other stuff you may want, or maybe don’t. Dreamhost gives you free private registration so that your email address doesn’t show up for bad robots. (PS: That’s my affiliate account. I’ve been hosting with them since 1999. So I’m confident about their service.)

Second: The Process

So let’s say I own the domain (outgoing/losing registrar) and the Bob (incoming registrar) wants it.

Domain names are locked so that just any old person can’t steal it from you.

So I have to unlock the domain in the cPanel (or where ever this is managed by your registrar) so that someone else can acquire it.

Then I have to supply Bob with the pass code (sometimes called EPP).
That code might just show up in the cPanel, or you might have to request it from the registrar. I’ve seen it both ways.

Next the Bob goes to his registrar and sends a request to transfer the domain to him. Bob gives their registrar the EPP code and probably pays for a year of registration.

He gets an email to approve the incoming transfer. There’s a link in that email that says, essentially, “Click this if it’s ok.” If that link DOESN’T get clicked,  the transfer doesn’t go thru.

Then it’s up to the outgoing/losing registrar to release of the domain for transfer.

Depending on the registrar, this can take a couple hours or a couple days. But in any case, no human is involved in that part.

I recommend that both PEOPLE stay in contact while this is going on. So we know where we are in the process and to ensure that the domain is properly released.

If this process also includes changing hosts, then there is a DNS change and mail set up issue which can be easy or complicated.

That’s a post for a different day.

What goes in the footer of my WordPress sites

Regularly when setting up a new site, I change the footer information.  I have to look up in my files every time exactly what I like it to say and how it works.

I’m posting it here for myself and for any of you who also wonder about this.

I generally forget to go change the copyright dates on all my client sites, so including this little bit of php in the footer will keep all those dates accurate.

<p style="text-align:left">Copyright 2008 - <?php echo date('Y'); ?>, by whoever-this-should-be. All Rights Reserved.  <br />
Site designed and managed by <a href="http://www.yourwebsitehere.com">your-name-here</a></p>

I use my own name as the designer/manager because I find that people might not like the bottom of the page implying that they have or had a broken website.

Sometimes I also add a link to the site admin because it helps clients who can’t remember how to get into the admin panel.

I’ve found that adding the following right before the </p> tag, I get a nifty link to the site admin page.

<a href="<?php $url = admin_url();
echo admin_url(); ?>">Site Admin</a>