<?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>Loud Sign &#187; Cheap Hosting Web</title>
	<atom:link href="http://loudsign.com/blog/category/cheap-hosting-web/feed/" rel="self" type="application/rss+xml" />
	<link>http://loudsign.com/blog</link>
	<description>::Internet Services Blog::</description>
	<lastBuildDate>Tue, 09 Feb 2010 21:59:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML Introduction</title>
		<link>http://loudsign.com/blog/2008/html-introduction/</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>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Web Hosting</title>
		<link>http://loudsign.com/blog/2007/free-web-hosting/</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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FTP Beginner Explanation</title>
		<link>http://loudsign.com/blog/2007/ftp-beginner-explanation/</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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Manually Installing Wordpress</title>
		<link>http://loudsign.com/blog/2007/manually-installing-wordpress/</link>
		<comments>http://loudsign.com/blog/2007/manually-installing-wordpress/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 15:59:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cheap Hosting Web]]></category>
		<category><![CDATA[Wordpress Host]]></category>
<category>affordable web hosting</category><category>linux hosting</category><category>mydomain</category><category>tugzip</category><category>web hosting account</category><category>windows hosting</category><category>wordpress</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/manually-installing-wordpress/</guid>
		<description><![CDATA[Wordpress is an elegant blogging platform.  Wordpress allows you to blog easily.  But it also allows you to extend the platform very easily.  You can find massive amounts of free themes readily available.  And the amount of plugins is almost bewildering.  You can find plugins to handle feeds, adsense, spam filters, etc.  If you can [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/10/wordpress-logo.jpg"  title="wordpress-logo.jpg"><img src="http://loudsign.com/blog/wp-content/uploads/2007/10/wordpress-logo.jpg" title="wordpress-logo.jpg" alt="wordpress-logo.jpg" align="left" /></a>Wordpress is an elegant blogging platform.  Wordpress allows you to blog easily.  But it also allows you to extend the platform very easily.  You can find massive amounts of free themes readily available.  And the amount of plugins is almost bewildering.  You can find plugins to handle feeds, adsense, spam filters, etc.  If you can imagine it, the Wordpress community has probably developed it.  One of the hurdles in getting Wordpress going, however, is just installing it.  This can be intimidating to the novice.  We offer <a href="http://www.loudsign.com"  title="affordable web hosting" target="_blank">affordable web hosting</a> for Wordpress and so we want to show you how to install it quickly.</p>
<p><span id="more-17"></span></p>
<p>First things first.  To install Wordpress - you have to have a <a href="http://www.loudsign.com"  title="linux hosting account">linux hosting account</a>.  You cannot install Wordpress on a <a href="http://www.loudsign.com"  title="Windows hosting account">Windows hosting account</a>.</p>
<p>Alright, the first thing you will want to do is head on over to Wordpress and <a href="http://wordpress.org/download/"  title="Wordpress download" target="_blank">download the zip file</a>.  You will need something like <a href="http://www.tugzip.com/"  title="Tugzip" target="_blank">Tugzip</a> to extract all the files.  Once you have extracted all the files, you should have a bunch of files and folders sitting somewhere.  You should see folders like wp-admin, wp-content, and wp-includes.  Okay, here's where it gets fun.</p>
<p>Now, you will need to download all of these files to your web hosting account.  Note, that these files should not be in a folder like "wordpress."  They should be in the root folder for your host.  This will allow Wordpress to be served up straight on your domain like http://www.mydomain.com.  If you put them in a folder, it would be served like http://www.mydomain.com/wordpress.  Okay, now you have your files uploaded to your hosting account.  Now, you need to set up the database for your wordpress installation.</p>
<p>Simply create a database in your hosting account management interface.  Call it something easy like "wordpress" and give it a strong password.  Please don't make the password something like "wordpress" or "password."  Hackers will guess that in 5 minutes.  Now, you have your files uploaded and your database created.  Now, we need to tell the Wordpress install where all this can be found.  To do this, open up wp-config-sample.php in a document editor like notepad.  Don't open it up in something like Word because it may mess it up.</p>
<p>Okay, when you open up that file you will see this at the top:</p>
<p>// ** MySQL settings ** //<br />
define('DB_NAME', 'putyourdbnamehere');    // The name of the database<br />
define('DB_USER', 'usernamehere');     // Your MySQL username<br />
define('DB_PASSWORD', 'yourpasswordhere'); // ...and password<br />
define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value<br />
define('DB_CHARSET', 'utf8');<br />
define('DB_COLLATE', '');</p>
<p>Now, you want to put in your database name where it says 'putyourdbnamehere'  So, in our example we would put this:</p>
<p>define('DB_NAME', 'wordpress');    // The name of the database</p>
<p>Now, you will put in the database username in the next line.  You put this in when you created the database.  If you forgot, just look at your hosting account and the database details.  Now, put in your database password.  Finally, put in your host in the line that says:</p>
<p>define('DB_HOST', 'localhost');    // 99% chance you won't need to change this value</p>
<p>Of course, we fall into that 1% chance where you put something other than localhost.  It will be something like secureserver....  You can again find this in your database details.</p>
<p>Now, and this is important, save this file as <strong>wp-config.php</strong> not wp-config-sample.php.  Now, upload this to your hosting account.  Okay, you're almost done.</p>
<p>Now, go to http://www.mydomain.com/<span class="file">wp-admin/install.php</span>  Obviously, replace "mydomain.com" with whatever your web site address is.  Now, walk through the installation wizard.  This takes less than a minute.  <strong>And write down your admin password at the end</strong>.  Once you login, you can go to your profile page and change that horrid password there.</p>
<p><em><strong>*** The Lazy Man's Wordpress Installation***</strong></em></p>
<p>Now, if this sounds too complicated, we also offer auto-installs on all our hosting accounts.  You can find Wordpress in the Value Applications package.  Remember, you need a linux hosting account for Wordpress to be available.  This auto installer will install Wordpress in just a few minutes.  All you have to do is answer a few questions and you're off.  Gotta love it</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/manually-installing-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

