<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Florida Belts &#187; godaddy</title>
	<atom:link href="http://www.flbelt.com/tag/godaddy/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flbelt.com</link>
	<description>The personal blogs of Loretta, Wes, Logan, and Gavin Belt.</description>
	<lastBuildDate>Tue, 22 Nov 2011 02:49:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>GoDaddy WordPress permalinks and a custom 404 page</title>
		<link>http://www.flbelt.com/2009/04/12/godaddy-wordpress-permalinks-and-a-custom-404-page/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=godaddy-wordpress-permalinks-and-a-custom-404-page</link>
		<comments>http://www.flbelt.com/2009/04/12/godaddy-wordpress-permalinks-and-a-custom-404-page/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 14:05:03 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[.htaccess]]></category>
		<category><![CDATA[custom 404]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[wordpess]]></category>

		<guid isPermaLink="false">http://www.flbelt.com/?p=187</guid>
		<description><![CDATA[Yesterday, I spent some time configuring permalinks in WordPress and setting up a custom 404 error page. The GoDaddy default 404 page is lame. I also wanted to add some JavaScript that Google provides to make some suggestions and ultimately provide a Google search of the site when the page you are looking for can [...]]]></description>
			<content:encoded><![CDATA[<fb:like href='http://www.flbelt.com/2009/04/12/godaddy-wordpress-permalinks-and-a-custom-404-page/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p>Yesterday, I spent some time configuring permalinks in WordPress and setting up a custom 404 error page.  The GoDaddy <a href="http://sites.securepaynet.net/404.html">default 404 page is lame</a>.  I also wanted to add some JavaScript that <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=93644">Google provides</a> to make some suggestions and ultimately provide a Google search of the site when the page you are looking for can not be found.<br />
<span id="more-187"></span><br />
First, Google provided me with this code block to include in my custom 404.</p>
<pre class="brush: jscript; title: ; notranslate">&lt;script type=&quot;text/javascript&quot;&gt;
var GOOG_FIXURL_LANG = 'en';
var GOOG_FIXURL_SITE = 'http://www.flbelt.com/';
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js&quot;&gt;&lt;/script&gt;
</pre>
<p>I was able to edit my theme 404.php file using WordPress Admin -&gt; Appearance -&gt; Editor, and selecting 404.php on the right.  I added the JavaScript from Google and the php snippet below at the top to make the pages more search engine friendly (so they would return the proper 404 status code, rather than 200 OK when serving up the page)</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
header(&quot;HTTP/1.0 404 Not Found&quot;);
header(&quot;Status: 404 Not Found&quot;);
get_header(); ?&gt;</pre>
<p>Now came the tricky part, when I would go to the GoDaddy control panel choose 404 Error Behavior, select custom and input /index.php?error=404 or /?error=404 as required by WordPress, GoDaddy would return an error and say that my custom page could not contain a question mark!</p>
<p>After searching around a bit, I decided to try to add the error page to .htaccess since GoDaddy would not support the option I was looking for.  So I created a .htaccess in the root of my website with the following.</p>
<pre class="brush: plain; title: ; notranslate">
ErrorDocument 404 /?error=404
</pre>
<p>But in spite of the information in the .htaccess GoDaddy still seemed to redirect to the old error page.  Now I was stumped and turned to Google.</p>
<p>There I found <a href="http://askowen.info/2008/05/make-wordpress-permalinks-work-on-godaddy/">this blog entry</a> showed the way to disable GoDaddy&#8217;s 404 handling and allow requests to pass to your .htaccess was to select the &#8220;Use home page&#8221; option (not documented on GoDaddy&#8217;s help portal btw).</p>
<p>Then I found <a href="http://www.queenofkludge.com/wordpress-permalinks-godaddy-htaccess-file-patience-required/">this blog entry</a> which pointed out the GoDaddy&#8217;s servers only refresh the .htaccess every so often.  Their advice, just wait a little bit (was about 15 minutes for me) after you update/add an .htaccess before testing.</p>
<p>Finally it was working!  After all that I was even able to turn on more descriptive permalinks in WordPress (which rely on .htaccess working properly also) and that is working now too!</p>
<p>You can use <a href="http://www.flbelt.com/wes">this link</a> to see our custom 404 page.  Took a little more time than I had wanted, but im happy with the end result!</p>
<fb:like href='http://www.flbelt.com/2009/04/12/godaddy-wordpress-permalinks-and-a-custom-404-page/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.flbelt.com/2009/04/12/godaddy-wordpress-permalinks-and-a-custom-404-page/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tech Shift</title>
		<link>http://www.flbelt.com/2009/04/10/tech-shift/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tech-shift</link>
		<comments>http://www.flbelt.com/2009/04/10/tech-shift/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 21:16:30 +0000</pubDate>
		<dc:creator>Wes</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[godaddy]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[microsoft exchange]]></category>
		<category><![CDATA[verizon fios]]></category>

		<guid isPermaLink="false">http://www.flbelt.com/?p=155</guid>
		<description><![CDATA[The last week or two I have been working on switching a number of our tech services.  This was primarily an exercise in cost reduction, but there have been some nice functional pickups, but those have been accompanied by minor losses also. Email We have been hosting our own email server (Microsoft Exchange) for a [...]]]></description>
			<content:encoded><![CDATA[<fb:like href='http://www.flbelt.com/2009/04/10/tech-shift/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like><p><img class="alignleft size-full wp-image-244" title="shift" src="http://www.flbelt.com/wp-content/uploads/2009/04/shift1.jpg" alt="shift" width="128" height="100" />The last week or two I have been working on switching a number of our tech services.  This was primarily an exercise in cost reduction, but there have been some nice functional pickups, but those have been accompanied by minor losses also.<br />
<span id="more-155"></span></p>
<p><strong>Email</strong><br />
We have been hosting our own email server (<a href="http://www.microsoft.com/exchange/default.mspx">Microsoft Exchange</a>) for a number of years.  The initial draw to Exchange was the ability to use it for email, contacts, and calendaring as well as its integration to our then Windows Mobile smart phones.  The smart phones have since been replaced with phones that do not sync directly with Exchange.  I have been looking around (over the last 6 months or so) for a good hosted email service.  Since we are running Exchange 2003, I knew an upgrade to 2007 or a full hosted replacement was likely going to be something we needed to do in the next 6-12 months.  I was never able to find something I thought was a good functional replacement at a reasonable (less than $100/year) cost.</p>
<p>A few weeks ago, I stumbled up <a href="http://www.google.com/apps/intl/en/group/index.html">Google Apps</a>.  It offers email with a great web client to a custom domain name (like flbelt.com), calendaring, and contacts.  It also will allow you to connect via IMAP or POP3 from you favorite mail client (like Outlook), but the best part was the price&#8230; its free for family use!  It also offers a functional replacement for email aliases (I like to register on sites with an alias instead of my real email address I use for friends and family) and groups or distribution lists that allow us to set up special email addresses that Loretta and I can share.</p>
<p>After a couple week evaluation with one of our test domains, we decided to make the switch.  We are now happily using email hosted by Google, and so far its working out great!</p>
<p><strong>Domain Registrar</strong><br />
We have been hosting our Internet DNS and using the Domain Registrar services at <a href="http://www.no-ip.com/">No-IP.com</a> for about 5 years.  Overall we have been happy with the service, and their <a href="http://www.no-ip.com/services/managed_mail/backup_mail.html">Backup MX service</a> came in very handy when we were hosting our own email server and had occasional unexpected or extended outages.</p>
<p>Since we no longer needed the backup MX services, I began looking around for a lower cost registrar.  What I found is that we could save a fair amount of money by switching to <a href="http://www.godaddy.com/">GoDaddy.com</a>.  The fact that <a href="http://www.godaddy.com/gdshop/hosting/shared.asp">GoDaddy.com could also do our web hosting for a very reasonable cost</a> just sweetened the deal, so we made the switch.</p>
<p><strong>Web Hosting</strong><br />
We have been hosting our own web sites for the last 5 years.  From web mail, to blogs, to our small business site, to <a href="http://www.worldofwarcraft.com/">World of Warcraft</a> Guild sites, to other miscellaneous experiments, we have taken advantage of the flexibility of hosting our own sites.  Now that we are with GoDaddy.com we were able to move the sites we wanted to keep (including refreshing this blog) for a minimal cost.</p>
<p><strong>Internet Service</strong><br />
We have been a very happy <a href="http://www.verizonfios.com/">Verizon FiOS</a> customer for over 4 years.  We have been using their Small Business class service which costs a bit more than residential, but allowed us to host our own web sites and email server (no inbound port restrictions like there are with residential FiOS) with static IP addresses.  Without the need to host email and web sites any longer (see above), we thought this would be another great opportunity to reduce some costs.  While the techie in me sure does miss the 5 static IPs and wide open hosting opportunities, the additional $ per month just is not worth it for us.</p>
<p><strong>TV Service</strong><br />
We have been <a href="http://www.directv.com">DirecTV</a> customers for the last 9 years.  We have subscribed to a number of their sports offerings, but most recently were NFL Sunday Ticket and MLB Extra Innings customers.  Since we switched to residential FiOS they have some pretty attractive bundles for Internet and TV service combined.  Having already made the decision to forgo the sports packages to reduce costs, it seems like a good time to make the switch to FiOS TV.  They have all the <a href="https://www22.verizon.com/Residential/FiOSTV/HD/HD.htm">HD channels</a> we care about and even one that DirecTV still does not (<a href="http://www.wgnamerica.com/">WGN America HD</a>&#8230; GO CUBS!).  The fact that we wont lose service during heavy rains (with our rainy season approaching) and the <a href="https://www22.verizon.com/residential/fiostv/EquipmentDetails/EquipmentDetails.htm">multiroom DVR</a> where you can watch things recorded shows from any TV, was just icing on the cake.</p>
<fb:like href='http://www.flbelt.com/2009/04/10/tech-shift/' send='false' layout='button_count' show_faces='true' width='450' height='65' action='like' colorscheme='light' font='lucida+grande'></fb:like>]]></content:encoded>
			<wfw:commentRss>http://www.flbelt.com/2009/04/10/tech-shift/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

