<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><!-- generator="wordpress/2.3.1" --><rss 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:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Loud Sign</title>
	<link>http://loudsign.com/blog</link>
	<description>::Internet Services Blog::</description>
	<pubDate>Mon, 14 Jan 2008 20:37:14 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.1</generator>
	<language>en</language>
			<creativeCommons:license>http://creativecommons.org/licenses/by-nc-nd/2.5/</creativeCommons:license><image><link>http://creativecommons.org/licenses/by-nc-nd/2.5/</link><url>http://creativecommons.org/images/public/somerights20.gif</url><title>Some Rights Reserved</title></image><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/LoudSign" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Robots.txt Tutorial</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/_I5JY1oFQgI/</link>
		<comments>http://loudsign.com/blog/2008/robotstxt-tutorial/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 20:37:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Private Server Virtual]]></category>

		<category><![CDATA[tutorials]]></category>
<category>private directories</category><category>robot</category><category>robots txt</category><category>spiders</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2008/robotstxt-tutorial/</guid>
		<description><![CDATA[Once folks start administering their own web server, they immediately understand the enormity of the task.  There are so many new things to learn.  The task can seem daunting.  You start encountering things that you didn&#8217;t know about.  One such thing is robots.txt.  What is this file and what does [...]]]></description>
			<content:encoded><![CDATA[<p>Once folks start administering their own web server, they immediately understand the enormity of the task.  There are so many new things to learn.  The task can seem daunting.  You start encountering things that you didn&#8217;t know about.  One such thing is robots.txt.  What is this file and what does it do?</p>
<p><span id="more-55"></span> To understand what the robots.txt file does, it&#8217;s important to take a quick step backward.  The internet contains many robots.  These are programs that scour the internet.  They are also called spiders, crawlers, etc.  Basically, they go out and try to find what&#8217;s out there.  In the case of someone like Google, they are trying to see what content is on the web so that it can index it.  It can then present that information to people searching the internet in a organized fashion.  I hope that makes sense.</p>
<p>Well, the robots.txt file tells participating robots what to and what not to index.  So, you can tell a robot that you don&#8217;t want it to see anything.  The problem with this in terms of completely hiding parts of your site is that the robots.txt file is easy to find.  Anyone can read it.  But it&#8217;s a good way to keep certain parts of your site out of search engines.  And that is part of the battle to securing site.  Now, let&#8217;s  look at a sample robots.txt file:</p>
<p>User-agent: *<br />
Disallow: /cgi-bin/<br />
Disallow: /images/<br />
Disallow: /tmp/<br />
Disallow: /private/</p>
<p>This robots.txt file tells robots to stay out of the cgi-bin, images, tmp, and private directories.  There are many thing you can do with a robots.txt file, including specifying where a sitemap is located.  Hmmm, maybe we should cover that topic sometime in the near future.  So, the robots.txt file is a simple text file that tells internet spiders where they can and cannot go.  It&#8217;s that simple.  Well, unless you get more involved.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2008/robotstxt-tutorial/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2008/robotstxt-tutorial/</feedburner:origLink></item>
		<item>
		<title>HTML Introduction</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/lOMCbQPrZRU/</link>
		<comments>http://loudsign.com/blog/2008/html-introduction/#comments</comments>
		<pubDate>Thu, 03 Jan 2008 19:54:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Builder Site Web]]></category>

		<category><![CDATA[Business Hosting Web]]></category>

		<category><![CDATA[Cheap Hosting Web]]></category>

		<category><![CDATA[Web Hosting]]></category>
<category>html page</category><category>html tag</category><category>hyper text markup</category><category>hyper text markup language</category><category>page meta tags</category><category>web pages</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2008/html-introduction/</guid>
		<description><![CDATA[If you're a seasoned web designer/programmer, this is definitely not for you.  But, if you're new to the web and have no idea what HTML is or how web pages function, then this short primer will get you pointed in the right direction.

HTML is simply an acronym that stands for Hyper Text Markup Language. [...]]]></description>
			<content:encoded><![CDATA[<p>If you're a seasoned web designer/programmer, this is definitely not for you.  But, if you're new to the web and have no idea what HTML is or how web pages function, then this short primer will get you pointed in the right direction.</p>
<p><span id="more-54"></span></p>
<p>HTML is simply an acronym that stands for Hyper Text Markup Language.  It is simply a file that contains tags that tell a web server what to spit out.  You can create a web page in any text editor.  This includes notepad.  All you have to do is save it with the .html or .htm extension.  Well, you need tags in the document as well, but that goes without saying.</p>
<p>Okay, so you know that html is just an acronym.  And you know that html pages are simply text documents with tags in them.  Now, let me show you the bare bones html structure you need to use:</p>
<div class="igBar"><span id="lhtml-2"><a href="#" onclick="javascript:showPlainTxt('html-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span>
<div id="html-2">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/html.html"><span style="color: #000000; font-weight: bold;">&lt;html&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/head.html"><span style="color: #000000; font-weight: bold;">&lt;head&gt;</span></a></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/title.html"><span style="color: #000000; font-weight: bold;">&lt;title&gt;</span></a></span>My first title<span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/title&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/head&gt;</span></span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/body.html"><span style="color: #000000; font-weight: bold;">&lt;body&gt;</span></a></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">My first page and I'm stoked!</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/body&gt;</span></span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><span style="color: #000000; font-weight: bold;">&lt;/html&gt;</span></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Everything in brackets is a tag.  You have to have opening and closing tags.  We use the open tag first and then close it with the slash symbol in front of the tag name, enclosed with brackets.  It's the way the markup language works.  You have to start and end your pages with the html tag.  That just tells the web server, "Here comes my html page."  The header tag contains the title of the page, meta tags (we will explain in a later post), etc.  The body tag lets the server know that the main part of the page is coming.  This can contain text, pictures, tables, etc.  We will have to cover that at a later point.  But that's really the bare bones for you.  We'll also cover some free tools soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2008/html-introduction/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2008/html-introduction/</feedburner:origLink></item>
		<item>
		<title>Free Web Hosting</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/uqsddRY8Q1E/</link>
		<comments>http://loudsign.com/blog/2007/free-web-hosting/#comments</comments>
		<pubDate>Thu, 20 Dec 2007 10:54:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Builder Site Web]]></category>

		<category><![CDATA[Cheap Hosting Web]]></category>

		<category><![CDATA[Web Hosting]]></category>
<category>free email</category><category>free web host</category><category>free web hosting</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/free-web-hosting/</guid>
		<description><![CDATA[One of the things that is highly sought after is free web hosting.  It seems that we always want something for free.  Well, we just so happen to offer free hosting when you buy a domain - but we don't just stop there!
 That's right, we offer a ton of extra stuff, including free web [...]]]></description>
			<content:encoded><![CDATA[<p>One of the things that is highly sought after is <a href="http://www.loudsign.com" title="Free Web Hosting" target="_blank">free web hostin</a>g.  It seems that we always want something for free.  Well, we just so happen to offer free hosting when you buy a domain - but we don't just stop there!</p>
<p><span id="more-53"></span> That's right, we offer a ton of extra stuff, including <a href="https://www.securepaynet.net/gdshop/domain_offer.asp?isc=wwbb42&amp;prog%5Fid=293829&amp;ci=545&amp;app%5Fhdr=" title="Free Web Hosting" target="_blank">free web hosting</a>, when you buy or tranfer a domain through us!  This includes:</p>
<ul>
<li>Online Photo Filer</li>
<li>25MB email account</li>
<li>Free hosting</li>
<li>Web Site Builder</li>
<li>Quick Blogcast</li>
<li>100 Pack Email Forwarding</li>
<li>ETC!</li>
</ul>
<p>So, why not get started and <a href="https://www.securepaynet.net/gdshop/registrar/search.asp?isc=wwbb42&amp;ci=6935&amp;prog%5Fid=293829" title="Register a Domain Name" target="_blank">register a domain name</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/free-web-hosting/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/free-web-hosting/</feedburner:origLink></item>
		<item>
		<title>Understanding Sitemaps</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/4B_d3BbsZWY/</link>
		<comments>http://loudsign.com/blog/2007/understanding-sitemaps/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 19:53:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Internet Marketing]]></category>
<category>search engines</category><category>sitemaps</category><category>spiders</category><category>xml file</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/understanding-sitemaps/</guid>
		<description><![CDATA[Once you get into building sites, you will be confronted with the disconcerting truth that no one knows about your site.  And isn't that why you started your site in the first place?  It's a hard reality that any web site owner has to face.  One of the ways that you can [...]]]></description>
			<content:encoded><![CDATA[<p>Once you get into building sites, you will be confronted with the disconcerting truth that no one knows about your site.  And isn't that why you started your site in the first place?  It's a hard reality that any web site owner has to face.  One of the ways that you can get people coming is to utilize sitemaps.</p>
<p><span id="more-51"></span> So, what are sitemaps?  Sitemaps are just sets of links that help people or spiders to see the site more clearly.  Now, there are, as I already alluded to, two main types of sitemaps - those that are geared toward people and those geared toward search engines.  The type for people are usually done in html and make it easy to see how the site is structured.  It's a visual map.  The other kind is usually an xml file.  It's not pretty looking to humans typically, but search engine spiders love them.  This allows them to quickly update their listing of what is on your website.  Then you can use things like <a href="https://www.google.com/webmasters/tools/docs/en/about.html" title="Google Webmaster Tools" target="_blank">Google Webmaster Tools</a> or <a href="https://siteexplorer.search.yahoo.com/mysites" title="Yahoo Site Explorer" target="_blank">Yahoo Site Explorer</a> to submit it.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/understanding-sitemaps/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/understanding-sitemaps/</feedburner:origLink></item>
		<item>
		<title>Does Your Business Need a Blog?</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/X0LklBqPqaE/</link>
		<comments>http://loudsign.com/blog/2007/does-your-business-need-a-blog/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 21:50:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Business Hosting Web]]></category>
<category>building relationships</category><category>business relationships</category><category>customer relationship</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/does-your-business-need-a-blog/</guid>
		<description><![CDATA[I am often asked if businesses need blogs.  The short answer would be a definitive "Yes!"  The problem with most business owners is that they view blogs as frivolous.  I'm here to tell you that blogs are anything but frivolous - if you plan and execute it well.

"But aren't blogs for whiny [...]]]></description>
			<content:encoded><![CDATA[<p>I am often asked if businesses need blogs.  The short answer would be a definitive "Yes!"  The problem with most business owners is that they view blogs as frivolous.  I'm here to tell you that blogs are anything but frivolous - if you plan and execute it well.</p>
<p><span id="more-50"></span></p>
<p>"But aren't blogs for whiny little teenagers who have nothing else to do?"  Well, sure they are for whiny teenagers, but they can also be used for a ton of other things.  This also goes for businesses.  You see, businesses are horrendous at engaging customers.  That's because it's hard to have a public/private space for a company.  It's hard to arrange a place where owners, executives, directors, and employees can interact with multitudes of customers.  Well, blogs enable you to do this.</p>
<p><strong>Building Business Relationships<br />
</strong></p>
<p>Blogs excel at connecting people.  And if there is one thing that any business would love more of - it's building relationships.  You can connect with current customers and also build new relationships with potential customers.  But, and this is a big one, that relationship must be taken hand in hand with transparency.</p>
<p><strong>Business Transparency</strong></p>
<p>Before you launch a blog, you need to understand that doing so will open your business to a certain level of transparency.  This means that your posting <em>says and shows</em> something about who you are, what you value, and what you provide.  But, if you allow commenting, there is another level of transparency.  As soon as you allow folks to provide positive and negative feedback, you have an opportunity.  This opportunity is to build more trust and deepen the customer relationship.  But this kind of transparency can be very unnerving for established "brick 'n mortar" businesses.  This means that you must be willing to take criticism and answer to your customer base at times.  That's the way it goes.  But, the dividends for that type of transparency are invaluable.  Now, let's move onto how a blog can increase your visibility.</p>
<p><strong>Search Engines Love Blogs</strong></p>
<p>It's true.  They just love them.  Blogs create a steady stream of fresh content.  If you plan correctly, you can leverage this search engine love for your business.  This does take time, but it is really helpful.  You can set up link and marketing strategies that will increase your bottom line.</p>
<p><strong>Say "NO" to Perfection</strong></p>
<p>I know, I know - this sounds crazy.  But in the current age, you must throw this idea right out the window.  People are skeptical of institutions, businesses included.  And people are especially skeptical of "happy, shiny people."  That means that they expect non-perfection.  It's good to shed that marketed image and be personal.  Now, folks want you to deliver on your product.  Just be willing to let your guard down a little.</p>
<p>If you see the value of this idea, head on over to our <a href="https://www.securepaynet.net/gdshop/hosting/shared.asp?prog_id=293829&amp;ci=1783&amp;" title="Hosting Plans" target="_blank">hosting plans</a> to get your blog going today.  I highly recommend signing up for Linux hosting plan and using the "value applications" to auto-install Wordpress.  Wordpress is the blogging platform we use for this blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/does-your-business-need-a-blog/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/does-your-business-need-a-blog/</feedburner:origLink></item>
		<item>
		<title>Church Web Site Building</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/SjseMInxSVA/</link>
		<comments>http://loudsign.com/blog/2007/church-web-site-building/#comments</comments>
		<pubDate>Thu, 06 Dec 2007 03:13:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Builder Site Web]]></category>
<category>build website</category><category>church site</category><category>church web site</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/church-web-site-building/</guid>
		<description><![CDATA[Planning a church web site can be a lot daunting.  That's because you are walking a balancing act.  You have to keep in consideration pricing, design, functionality, etc.  Let's look at three main ways that you can get that site going.
 Option #1 - Hire a website designer
This road is going to [...]]]></description>
			<content:encoded><![CDATA[<p>Planning a church web site can be a lot daunting.  That's because you are walking a balancing act.  You have to keep in consideration pricing, design, functionality, etc.  Let's look at three main ways that you can get that site going.</p>
<p><span id="more-49"></span><strong> Option #1 - Hire a website designer</strong></p>
<p>This road is going to cost you.  But, you will be gaining expert consultation and speed.  You will offset that most valuable of assets - time.  And most people these days are severely lacking in time.  And you will get the look and feel that will best express your church.  That alone should cause you to pause.  But remember - it will cost you a lot of money if done by a good designer.</p>
<p><strong>Option #2 - Get a Volunteer to Donate Their Time &amp; Skill</strong></p>
<p>If you have someone in your congregation who is a designer, maybe they will donate their gifts.  Now, let me be very upfront about this.  You have to be extremely upfront about your expectations.  Both parties need to delineate how much time will be involved, the end result, etc.  First and foremost, you want to protect the relationships of those involved.  I can't underscore that enough.</p>
<p><strong>Option #3 - Utilize an online website builder</strong></p>
<p>A couple of years ago, I would have shied away from this option.  The tools were clunky and very generic.  But now, we have tools that can really provide a lot of help and a lot of power.  This allows you to build a site that is uniquely you without incurring big costs and without jeopardizing relationships.  I try to steer most folks toward this option because it really dovetails most positives well.</p>
<p>We have a great <a href="https://www.securepaynet.net/gdshop/hosting/hosting_build_website.asp?prog_id=293829&amp;ci=1806&amp;" title="Online Website Builder" target="_blank">online website builder</a>.  We provide many options, templates, and pricing plans.  We also have a <a href="https://products.secureserver.net/products/website_tonight/producttourpl/index.html" title="Website Tonight Tour" target="_blank">nice product tour</a> that will show you just how it works.  I hope that helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/church-web-site-building/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/church-web-site-building/</feedburner:origLink></item>
		<item>
		<title>FTP Beginner Explanation</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/QdNHBOX0tyU/</link>
		<comments>http://loudsign.com/blog/2007/ftp-beginner-explanation/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 16:41:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Business Web Hosting]]></category>

		<category><![CDATA[Cheap Hosting Web]]></category>

		<category><![CDATA[Web Hosting]]></category>
<category>file transfer protocol</category><category>free ftp clients</category><category>ftp tutorial</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/ftp-beginner-explanation/</guid>
		<description><![CDATA[It's fun getting your first website up.  It's exciting finally creating a design, or grabbing a blog template, or working in html.  But then comes the question of uploading that content to your hosting server.  And, for most beginners, this is where they don't understand where to go.  Don't worry, this step is incredibly easy, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/12/header-logo.jpg" title="header-logo.jpg"><img src="http://loudsign.com/blog/wp-content/uploads/2007/12/header-logo.jpg" alt="header-logo.jpg" align="left" /></a>It's fun getting your first website up.  It's exciting finally creating a design, or grabbing a blog template, or working in html.  But then comes the question of uploading that content to your hosting server.  And, for most beginners, this is where they don't understand where to go.  Don't worry, this step is incredibly easy, once you understand what's going on.</p>
<p><span id="more-45"></span> The first thing you will need is your <strong>FTP</strong> login information.  <strong>FTP</strong> just stands for File Transfer Protocol.  It's just how files are transferred over the internet.  You don't need to know any more than that.  You may not know what your FTP login is.  Most of the time, you can find this if you login to your <a href="http://www.loudsign.com" title="Web Host" target="_blank">web host</a>.  You will probably find that under your hosting information.  If not, give them a call and ask what your ftp info will be.  It is usually tied to your hosting login somehow.  Okay, once you have your FTP login it's time to get a FTP client.  The FTP client program will allow you to connect to the FTP server on your web hosting account.  Let me suggest some great, free FTP clients:</p>
<p><a href="http://www.smartftp.com/" title="SmartFTP" target="_blank">SmartFTP</a> - I love this program and use it constantly.  It's free and easy to use.  It has a familiar file and folder look.  I highly recommend this FTP client.</p>
<p><a href="http://filezilla-project.org/download.php?type=client" title="FileZilla" target="_blank">FileZilla</a> - A great program with a great name.  I know many people using this FTP program.  It's easy to use, but powerful.</p>
<p>Now, all you have to do is enter your site name and your FTP login information into one of these programs.  This will connect you to where you can upload your files.  If you are on a shared web host, then it should connect you straight into your web server file structure.  Just remember, if you are on windows, you will need an index.html file.  If you are on linux, you will need an index.php file if you are utilizing a php environment.  That's about it.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/ftp-beginner-explanation/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/ftp-beginner-explanation/</feedburner:origLink></item>
		<item>
		<title>Buying and Selling Domains</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/uVbnNbMwhJw/</link>
		<comments>http://loudsign.com/blog/2007/buying-and-selling-domains/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 20:28:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Domain Name Register]]></category>
<category>domaineering</category><category>domaining</category><category>domain names</category><category>internet gold</category><category>millionaire</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/buying-and-selling-domains/</guid>
		<description><![CDATA[
Many folks are now getting into the internet "gold strike" or "real estate boom" of domain names.  Folks usually try to get lucrative domain names to buy and sell.  You may have already come across folks trying to sell you services or "insider knowledge" in this market.  What are you to think of this type [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/11/gold.jpg" title="gold.jpg"><img src="http://loudsign.com/blog/wp-content/uploads/2007/11/gold.jpg" alt="gold.jpg" /></a></p>
<p>Many folks are now getting into the internet "gold strike" or "real estate boom" of domain names.  Folks usually try to get lucrative domain names to buy and sell.  You may have already come across folks trying to sell you services or "insider knowledge" in this market.  What are you to think of this type of practice?</p>
<p><span id="more-42"></span>If you have green in your eyes when it comes to domain investing, you are probably going to be disappointed.  Yes, if you would have thought of this option in, say, 1985 - you would probably be a millionaire.  But now the game is very very different.  That's because a lot of people are in the domain investing game.  Many top notch .com domains are already gone.  And it's much like old real estate markets.  Unless something catastrophic happens, getting deals is all the numbers game.  You have to do lots of research, lots of buying, lots of selling, and lots of deal-making.  In other words, it's a lot of work that requires dedication and resources.  Sorry to burst your bubble.</p>
<p>Now, let's think of domain investing a little differently.  Most people seem to go into the domaineering or domaining arena looking to flip domain names.  I think that's an accurate term.  They want to simply be the middle man with little to no work.  But you can also appreciate the value of a domain.  People will pay for good Google page rank, alexa rank, and traffic in a certain niche.  Yeah, I know, now you are thinking "But that takes work!" Stop whining, get real, and stop thinking get rich quick.  It's usually a pipe dream anyway.  How could you do this without burning up a ton of time?  Well, now it's time to get creative.  How about you farm out everything?  That includes design, implementation, etc.  Get a good domain name and build it from there.  Location, location, location.  Now you have a good domain name that you have rehabbed.  I know of several folks who do this full time.  Yes, it does require work, but they seem to think their freedom is worth it!</p>
<p>Get a plan and then <a href="https://www.securepaynet.net/gdshop/registrar/search.asp?prog_id=293829&amp;ci=1774&amp;" title="Register Domain Name" target="_blank">register a domain name</a>, <a href="https://www.securepaynet.net/gdshop/hosting/shared.asp?prog_id=293829&amp;ci=1783&amp;" title="Get Web Hosting" target="_blank">get web hosting</a>, and you are off.  Know of any other good nuances to the domaineering idea?  Let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/buying-and-selling-domains/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/buying-and-selling-domains/</feedburner:origLink></item>
		<item>
		<title>Great Wordpress Plugins</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/L5S82cer8Jo/</link>
		<comments>http://loudsign.com/blog/2007/great-wordpress-plugins/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 02:44:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Wordpress Host]]></category>
<category>google adsense</category><category>wordpress</category><category>wordpress plugins</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/great-wordpress-plugins/</guid>
		<description><![CDATA[Wordpress offers a great blogging experience.  One of the best things about Wordpress is the plugins.  Plugins allow you to extend the blog platform.  And these plugins are authored by the Wordpress community.  And, guess what - they are free!  Well, probably 99% of them.  Anyway, here are some [...]]]></description>
			<content:encoded><![CDATA[<p>Wordpress offers a great blogging experience.  One of the best things about Wordpress is the plugins.  Plugins allow you to extend the blog platform.  And these plugins are authored by the Wordpress community.  And, guess what - they are free!  Well, probably 99% of them.  Anyway, here are some great plugins that I use regularly.</p>
<p><span id="more-41"></span><br />
<a href="http://unknowngenius.com/blog/wordpress/spam-karma/" title="Spam Karma" target="_blank">Spam Karma</a> - Hands down one of the best plugins for Wordpress.  One of the first things you will notice about Wordpress is comment spam.  Comment spam racks up quickly.  And this little plugin packs a wallop on that nasty stuff.</p>
<p><a href="http://firestats.cc/wiki/WordPress" title="Firestats" target="_blank">FireStats</a> - A nice stats plugin that gives you a bird's eye view of what's going on for your blog.  You need to know how people to your blog, where they go, and how they exit.  This is a nice way for you to see that information right in your blog.</p>
<p><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/" title="Wordpress Sitemaps" target="_blank">Sitemaps</a> - If you don't know the value of sitemaps, you need to look into it.  This dandy of a plugin generates a sitemap for you and then pings search engines for you.  Very, very nice plugin.</p>
<p><a href="http://alexking.org/blog/2007/11/08/sharethis-20" title="Share This Wordpress Plugin" target="_blank">ShareThis</a> - Again, if you don't know the value of social network, boy - have you got some learning to do!  But, don't fret, it's all good for your blog.  This gem gives your users an easy way to submit your content to those social network.</p>
<p><a href="http://txfx.net/code/wordpress/subscribe-to-comments/" title="Subscribe to Comments" target="_blank">Subscribe to Comments</a> - A great way to keep people coming back to your blog is through comments.  An even better way to keep them coming back is to enable way to subscribe to them.  Now they can get an email notification when someone else comments.</p>
<p><a href="http://www.dagondesign.com/articles/secure-form-mailer-plugin-for-wordpress/" title="Wordpress Form Plugin" target="_blank">Secure Form Mailer</a> - Ever need a secure, easy way for folks to contact you?  How about an easy to customize form?  Dagon has created a plugin that does both.  It's super easy to use and very powerful.  Did I mention that it will email you the results of the form - mmmm good.</p>
<p><a href="http://www.acmetech.com/blog/adsense-deluxe/" title="Adsense Deluxe" target="_blank">Adsense Deluxe</a> - So, you want to put ads on your blog?  Well, let me point you to this great plugin.  It will give you an easy way to insert Google Adsense, Yahoo Ads, etc. into your blog posts, sidebars, etc.</p>
<p><a href="http://wasabi.pbwiki.com/Related%20Entries" title="Wordpress Related Entries" target="_blank">Related Entries</a> - Wow, yet another wonderful plugin.  You want to keep your readers on your blog as long as possible.  This plugin offers up related posts to your readers.  They came there for a reason - give some others that may interest them.</p>
<p>Oh, I have more up my sleeve, but they can wait.  This should get you off to a nice blog experience.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/great-wordpress-plugins/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/great-wordpress-plugins/</feedburner:origLink></item>
		<item>
		<title>Upgrading Wordpress</title>
		<link>http://feedproxy.google.com/~r/LoudSign/~3/IqRMdhXj3NI/</link>
		<comments>http://loudsign.com/blog/2007/upgrading-wordpress/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 21:00:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Wordpress Host]]></category>
<category>wordpress</category><category>wordpress update</category><category>wordpress upgrade</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/upgrading-wordpress/</guid>
		<description><![CDATA[If you installed Wordpress by yourself, then the time will inevitably come when you need to update.  Keep in mind that you could opt to never update, but you will want to reconsider that position.  Wordpress is constantly providing upgrades that enhance the functionality of the blogging platform.  But, intermittently, you will [...]]]></description>
			<content:encoded><![CDATA[<p>If you installed Wordpress by yourself, then the time will inevitably come when you need to update.  Keep in mind that you could opt to never update, but you will want to reconsider that position.  Wordpress is constantly providing upgrades that enhance the functionality of the blogging platform.  But, intermittently, you will see security updates.  You need to install these.  If you don't, this opens a security hole in your blogging platform and opens your site to attack.  Let's walk through the upgrade process.</p>
<p><span id="more-39"></span> The first thing you will want to consider, is getting the <a href="http://wordpress.org/extend/plugins/maintenance-mode/" title="Maintenance Mode" target="_blank">Maintenance Mode</a> plugin.  This plugin posts a message to users that your site is under maintenance.  This is really helpful in times like this.  Now, before you do a thing, back up your blog in its entirety.  This includes the database and the content.  If you have no idea how to backup your database, you're in luck.  Here is a nice guide to help you <a href="http://data-recovery.contentquake.com/2007/03/05/exporting-your-mysql-database-via-phpmyadmin/" title="PhpMyAdmin Backup" target="_blank">back up your database via PhpMyAdmin</a>.</p>
<p>Now, go grab the latest version of Wordpress.  Unzip the files and upload them to your server.  Once it is done, you will have to click on the upgrade link to update your database.  If anything goes wrong, you have a nice full backup!  Also, once you are done and it is working, make sure you turn Maintenance Mode off.</p>
<p>The official upgrade instructions tell you to turn off plugins and so forth.  I don't like that method and troubleshoot it after the fact if something goes wrong.  You may prefer to disable them before.  That's your call.</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/upgrading-wordpress/feed/</wfw:commentRss>
		<feedburner:origLink>http://loudsign.com/blog/2007/upgrading-wordpress/</feedburner:origLink></item>
	</channel>
</rss>
