<?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>Starting an Online Business &#187; Website Starting</title>
	<atom:link href="http://www.internetstarting.com/category/website-starting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.internetstarting.com</link>
	<description>How to Bootstrap on the Internet</description>
	<lastBuildDate>Sun, 03 Jan 2010 05:34:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to Send E-mail from a Web Form</title>
		<link>http://www.internetstarting.com/2009/07/how-to-send-e-mail-from-a-web-form/</link>
		<comments>http://www.internetstarting.com/2009/07/how-to-send-e-mail-from-a-web-form/#comments</comments>
		<pubDate>Wed, 01 Jul 2009 11:00:43 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[intermediate]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web form]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=62</guid>
		<description><![CDATA[I regularly get asked how to send e-mail from an HTML form.  Now in 4 lines of PHP you can have the details of your web forms e-mailed to you or your clients.]]></description>
			<content:encoded><![CDATA[<p>I can&#8217;t tell you how many times I&#8217;ve been asked about how to do this.  It makes sense though.  Designers often have small clients that just want a simple web form, but don&#8217;t have a database to store the data in.  How do you get information from the website visitors to your client?  The simplest way is probably e-mail.</p>
<p>It&#8217;s been said that Dreamweaver has a way to do this, but no one has been able to tell me what that way is.  Frankly, I&#8217;m a developer so I don&#8217;t really care about what Dreamweaver has or doesn&#8217;t have, I just want it to work.  Turns out, there&#8217;s a really easy script that you can add to your site (or your client&#8217;s) that will allow visitors to fill out a form and then have that data e-mailed to the appropriate recipient.<br />
<span id="more-62"></span><br />
First, you&#8217;ll need to setup a form on a page called userinfo.html.  This should be fairly easy to do whether you&#8217;re creating the site freehand or with web editing software.  When you name each element, that&#8217;s how our script will label them in the e-mail, so be sure to label them clearly.  Dreamweaver seems to like to label things a37_infrared, so let&#8217;s just make sure they&#8217;re human readable names.  For example, to create a field to receive the users first name, it should look something like:</p>
<pre>&lt;input name="firstname" type="text" /&gt;</pre>
<p>In the e-mail, this will output something like &#8220;Firstname: Joe&#8221;.  That should be close enough for our purposes.  Once you&#8217;ve finished the form, just set the action to the PHP script we&#8217;re about to create.  That makes our form tag (in userinfo.html) look something like this:</p>
<pre>&lt;form name="userform" action="processform.php" method="POST"&gt;</pre>
<p>Now, for the part you&#8217;ve been waiting for.  Make processform.php (this is a new page and separate from userinfo.html) a nice HTML page that let&#8217;s the user know that you have received their information.  Again, do this in any way that is easy for you to create your HTML pages.</p>
<p>For this to work, it does require that the server can run PHP.  The server also needs the ability to send e-mail, but most servers do both of these just fine.  It shouldn&#8217;t be a problem for most people, but it seemed worth mentioning.</p>
<p>Now, at the very top of the processform.php add the following lines:</p>
<p>&lt;?<span>php</span><br />
$body = &#8220;&#8221;;<br />
$subject = &#8220;You received a new request from example.com&#8221;;<br />
foreach ($_POST as $key =&gt; $value) $body .= ucwords($key) . &#8220;: $value\n&#8221;;<br />
mail (&#8216;<a href="mailto:kbresse3@gmail.com" target="_blank">myname@example.com</a>&#8216;, $subject, $body);<br />
?&gt;</p>
<p>You can now replace the text after &#8220;$subject&#8221; with the subject line of the e-mail you would like to receive.  Then replace &#8220;myname@example.com&#8221; with your e-mail address (or obviously that of your client&#8217;s).  Now every time they fill out your form it will send you e-mail with their details.</p>
<p>Not bad for 4 lines of PHP, eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/07/how-to-send-e-mail-from-a-web-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Understanding Links &#8211; Posting Thumbnails and Text</title>
		<link>http://www.internetstarting.com/2009/06/understanding-links-posting-thumbnails-and-text/</link>
		<comments>http://www.internetstarting.com/2009/06/understanding-links-posting-thumbnails-and-text/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 11:00:35 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[anchor tag]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[web101]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=55</guid>
		<description><![CDATA[In this article, we're just going to touch on the basics and we can fill in the gaps in a later post.
Links are just a way of referencing material online. In order to do that, you need 2 things.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 330px"><a href="http://www.csh.rit.edu/~geisel/car/index.html"><img title="3000GT Example Thumbnail" src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg" alt="Using a thumbnail image for attractive links" width="320" height="188" /></a><p class="wp-caption-text">Use a thumbnail image for attractive links</p></div>
<p>It&#8217;s time for a beginner post.  Mostly because my brother has been asking about how to post thumbnails, but also just because it seemed like other people probably had the same questions.  There are a lot of things that can be done with links online.  In this article, we&#8217;re just going to touch on the basics and we can fill in the gaps in a later post.<br />
Links are just a way of referencing material online.  In order to do that, you need 2 things: 1) The address of the material you are referencing.  2) The content which will send the user to that material.  By content, we refer to either text or a graphic.  When you click that text or graphic, you then go to the referring webpage.</p>
<p>So first, let&#8217;s look at a simple link:</p>
<pre>&lt;a href="http://www.internetstarting.com"&gt;Helpful Website&lt;/a&gt;</pre>
<p>This link starts with a tag, which opens &lt;a.  We must end the tag with a greater than (&gt;), but not until we specify the address to which we link.  That is specified in the href parameter of the a-tag (&lt;a&gt;).  In this case, our address is http://www.internetstarting.com.  Always be sure to enclose the address in quotes.  Then we end the a-tag (which is short for Anchor, BTW).    So far we&#8217;ve covered:</p>
<pre>&lt;a href="http://www.internetstarting.com"&gt;</pre>
<p>Next, we have &#8220;Helpful Website&#8221;.  This is the content of our link, or the anchor text.  In our case it is just text, but we&#8217;ll add images later.  This anchor text is what is going to actually be displayed to our user.  Finally, the &lt;a&gt; tag we opened must be closed.  HTML tags are closed with a forward-slash in front of the tag.  Our closing anchor tag would then look like this: &lt;/a&gt;.  Now, when shown online, our link will look like the following:<br />
<a href="http://www.internetstarting.com">Helpful Website</a></p>
<p>Now, let&#8217;s go about adding an image in there.  To do that, we&#8217;ll need to use the image tag, which is simply, &lt;img&gt;.  Similar to the link, we need to supply a parameter to the image tag and that is the location of our image.  This is usually on our site, but it could be anywhere on the web.  In the image tag, that address will be put into the &#8220;src&#8221; attribute.  So, we&#8217;re going to have something that looks like this:</p>
<pre>&lt;img src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg"</pre>
<p>Again, notice that we have to put the parameter to &#8220;src&#8221; in quotation marks.  Finaly, we&#8217;ll close the image tag.  This is a little different than closing the anchor tag because we&#8217;re going to use some HTML shorthand.  Because the img doesn&#8217;t have any content (only the src attribute here), we can close it immediately.  So, we&#8217;re just going to add &#8220;/&gt;&#8221; instead of our nomal &#8220;&gt;&#8221; followed by &#8220;&lt;/img&gt;&#8221;.  Our entire image tag now looks like this:</p>
<pre>&lt;img src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg" /&gt;</pre>
<p>Now, let&#8217;s make that a link.  All we&#8217;re going to do, is take our anchor text (which was Helpful Website) and replace it with our image tag.  Now we have:</p>
<pre>&lt;a href="http://www.internetstarting.com"&gt; &lt;img src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg" /&gt; &lt;/a&gt;</pre>
<p>or</p>
<p>&lt;a href=&#8221;http://www.internetstarting.com&#8221;&gt;</p>
<p>&lt;img src=&#8221;http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg&#8221; /&gt;</p>
<p>&lt;/a&gt;</p>
<p>Now, we have an image used as the content for our link.  When you click the image, it will still take you to the homepage for InternetStarting.com.  One last thing before we show you the image and link.  It would be a little big to add to this post again, so let&#8217;s shrink our image.  We could use photo editing software to shrink the image, or for images that are reasonably small we can just cheat a bit.  We&#8217;re going to add two more parameters to the image tag.  They are &#8220;height&#8221; and &#8220;width&#8221; and you can probably imagine what they do.  Let&#8217;s make our new thumbnail image 80&#215;47 (1/4 the size of the original).  The code would now look like this:</p>
<pre>&lt;a href="http://www.internetstarting.com"&gt; &lt;img src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg" width="80" height="47" /&gt; &lt;/a&gt;</pre>
<p><a href="http://www.internetstarting.com"> <img src="http://www.csh.rit.edu/~geisel/car/3kgt-md.jpg" alt="" width="80" height="47" /> </a></p>
<p>There, now you can see what the thumbnail will look like at 1/4 of its size.  This is not recommended for very large images however as it will slow down your site.  We&#8217;re actually using a big image and displaying it as a small image.  For example, if you were to take an image directly from your camera and &#8220;cheat&#8221; the image tag, it might take 15 or 30 seconds to load this tiny image on your site.  That&#8217;s not very efficient and why it would then be better to use some photo editing software to actually save the picture in a smaller format and just use that instead.</p>
<p>One last thing on links for the beginner.  Sometimes you will see a very, very long link.  These especially show up at affiliate sites like Amazon.com.  In fact, you might even see a full web address inside the web address which is in the href.  Don&#8217;t let this confuse you!  We&#8217;re only concerned with what&#8217;s between the quotation marks.  So, &lt;a href=&#8221;someReallyReallyLongStringIsOK&#8221;&gt; &#8212; even if it&#8217;s several lines long.  Just look for the closing quotation mark and you will be fine.</p>
<p>For anyone still having trouble with links or who has other questions, use the comment link below.  Let us know what trouble you&#8217;re having with links and we&#8217;ll see if I, or someone in the community here, can help you out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/06/understanding-links-posting-thumbnails-and-text/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PageRankSubmit Review &#8211; Good for SEO?</title>
		<link>http://www.internetstarting.com/2009/06/pageranksubmit-review-good-for-seo/</link>
		<comments>http://www.internetstarting.com/2009/06/pageranksubmit-review-good-for-seo/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 23:56:48 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Web Services Reviews]]></category>
		<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[business marketing]]></category>
		<category><![CDATA[google pagerank]]></category>
		<category><![CDATA[PageRank]]></category>
		<category><![CDATA[pageranksubmit]]></category>
		<category><![CDATA[search engine marketing]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[sem]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[serps]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[webtraffic]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=35</guid>
		<description><![CDATA[Many sites boast PageRank increases.  Can PageRankSubmit measure up to the hype?  Check out our complete review of their service and it's impact on our own Google PageRank.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 236px"><img title="PageRankSubmit" src="/i/prscom.png" alt="Does PageRankReview Measure Up?" width="226" height="76" /><p class="wp-caption-text">Does PageRankSubmit Measure Up?</p></div>
<p>There are so many sites out there advertising how they will provide you with great SEO, it&#8217;s hard to wade through the muck.  Every site has big promises, and more often than not they end up disappointing on those promises.  For better or for worse, I&#8217;ll do my best to keep you updated on my experiences so you can avoid the disasters and flock to the successes.  It&#8217;s nice to sit in my blogging lair today and bang out an article on the latter, a website that successfully delivered on (at least some of) the hype.</p>
<p>You probably found this site in a search for a review of PageRankReview.com, so I&#8217;ll do my best to cut to the chase.  If my reviews are honest and thorough, you&#8217;ll hopefully come back to check out my other reviews.  I was happy with PageRankReview and I&#8217;m in the process of using them for all of the sites I manage (see the Blogroll on right).  In my opinion I got $100 to $200 of SEO for $29.  It didn&#8217;t save the world, but it did get my site to show up in the first few pages of Google.</p>
<p>The claim from PageRankSubmit.com is that they will submit you to 100 Internet directory sites for $29 (price as of this post).  They say the sites all have a PageRank of PR4 or higher.  When you are finished, they will send you an Excel spreadsheet containing a list of the sites to which you were submitted and their PageRank.  All entries are manually submitted by their team, so you don&#8217;t have to worry about CAPTCHA issues blocking non-human entries.</p>
<p>In reality, I found they were pretty close to their promise.  They actually submitted my site to 101 directory sites.  I did a PageRank lookup and not all of the sites were still at their advertised PageRank, but remarkably most of them were.  My biggest concern was that some of the directories would be in Google so-called &#8220;bad neighborhoods&#8221; and that I would be penalized for it.  As far as I can tell, none of the directories had bad reputations with Google.<br />
<span id="more-35"></span><br />
PageRankSubmit.com doesn&#8217;t guarantee that you will actually get listed in the directories, however, I again found that most of the sites did add me to their listings.  There are a few that didn&#8217;t, or that say they&#8217;re entirely too busy to get around to your post for the next ump-teen months.  Whatever.  There are always a few bad apples, but I prefer not to throw the baby out with the bath water.</p>
<p>A note to those who still have nascent SEO skills: be sure to pick a good title.  For example, Internet Starting would work, but it wouldn&#8217;t get me the Google exposure I&#8217;m looking for.  Find your top keywords (preferably from your Google Analytics account) and try to work them into your title.  For example, I used <a href="http://www.internetstarting.com">InternetStarting &#8211; Internet Business Starting</a>.  Because PageRankSubmit is actually handled by real people, they tend to adjust the title according to the directories rules.  If this were run by a bot (an automated submission robot), for example, they might try to submit anchor text that was too long and got my submission disqualified.  Another example is for DVDCorral.com, I used <a href="http://www.dvdcorral.com">DVDCorral &#8211; Personal DVD Library</a>.  After submitting this, Google started to show DVDCorral in search results for &#8220;Personal DVD Library&#8221; &#8212; In fact, after just checking I found DVDCorral ranked #2 in Google for &#8220;Personal DVD Library&#8221;.  Looks like it worked very well!  Be sure to create a title that includes a few good keywords for your own site as well as the actual name of your site.</p>
<p>What happens next?  Well, prepare to get about 100 e-mails from these directory sites confirming your submissions.  I find that it usually takes 15 minutes in 3 or 4 different increments to finalize all of the submissions.  Usually it&#8217;s just clicking a link to complete the process.  A word to the wise, setup an e-mail account specifically for this submission if at all possible.  For example, I typically use first.last@mywebsite.com whenever I do a new submission.  That way if any of the sites decides to sell your e-mail you don&#8217;t have to get it in your general mailbox.  Setting up a similar account should be pretty simple to do with your web provider.</p>
<p>For the first couple of weeks you&#8217;ll see confirmations continue to roll in.  Google, Yahoo, Bing and the other search engines will continue to find these sites over time and adjust your rank accordingly.  It will take about a month for everything to eventually settle out.  In fact, I just received a notification recently for a site I submitted a few months ago.  That&#8217;s just a little more link love Google will be sending my way.</p>
<p>In all, I felt PageRankSubmit offers a pretty good service for a very fair price.  In fact, I felt it was good enough to go join their affiliate program.  Disclaimer: While I do participate in their affiliate program, that is because I feel they have a good product at a good price.  I have had other affiliate sites that I gave a negative review to and those sites won&#8217;t appear under our &#8220;Recommended Sponsors&#8221; section.  This is my honest review and if you liked it, hopefully you&#8217;ll follow this link and:<img src="http://www.is1.clixgalore.com/Impression.aspx?BID=78968&amp;AfID=197427&amp;AdID=9015" border="0" alt="" width="0" height="0" /><br />
<a onmouseover="javascript:window.status='';return true;" rel="nofollow" href="http://www.clixGalore.com/Sale.aspx?BID=78968&amp;AfID=197427&amp;AdID=9015&amp;LP=pageranksubmit.com"><br />
Boost Your Page Rank!</a><br />
<!-- End clixGalore Code--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/06/pageranksubmit-review-good-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting a Blog &#8211; A Quick Guide to Blogging</title>
		<link>http://www.internetstarting.com/2009/06/starting-a-blog-a-quick-guide-to-blogging/</link>
		<comments>http://www.internetstarting.com/2009/06/starting-a-blog-a-quick-guide-to-blogging/#comments</comments>
		<pubDate>Sun, 14 Jun 2009 03:37:42 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=23</guid>
		<description><![CDATA[It's now easier than ever to start your own blog.  In a recent article in Inc. Magazine, Matt Mullenweg (founder of Wordpress) said, "My mom started a blog a couple of weeks ago.  Six years into this, and we finally made it easy enough for my mom to use." ]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 310px"><img title="How to start your own blog online" src="/i/blogstarting.jpg" alt="Start your own Blog" width="300" height="199" /><p class="wp-caption-text">Start your own Blog</p></div>
<p>Thanks to hardworking people at several major internet sites, it&#8217;s now easier than ever to start your own blog.  In a recent article in Inc. Magazine, Matt Mullenweg (founder of WordPress) said, &#8220;My mom started a blog a couple of weeks ago.  Six years into this, and we finally made it easy enough for my mom to use.&#8221;  He&#8217;s absolutely right.</p>
<p>Blogging has finally come to a point where it depends more on your ability as a writer than it does your technical skills.  Between sites that will allow you to freely host your blog and software to run the blog, you&#8217;re pretty much left with the writing &#8212; Oh, and the setup, but we can help you with that.</p>
<p>First, let&#8217;s briefly understand what a blog is and is not.  The term comes from the initial use of the term Web-log.  A lot of internet users (especially students) were starting to keep journals online, and now we&#8217;ve got tools that allow for much more.  Now blogs are often used as a primary source of news on the internet, but they can just as easily be used for posting information online.  Blogs should not be confused with forums where many users participate in a conversation.  If it&#8217;s a topic you&#8217;re interested in and ready to talk about, blogs are a great way to get your information out.</p>
<p>The blog will need to be hosted somewhere (see <a href="http://www.internetstarting.com/2009/04/starting-a-website-choosing-a-webhost/">Starting a Website</a> for more information) and there are several sites online that will host your blog for free.  The two easiest are probably WordPress.org and Blogger.com and both are free.  I do have a small blog that I setup on blogger.com and it only took a few minutes to do so.  I haven&#8217;t set one up with WordPress.org, but given how well-written their software is, I can&#8217;t image their hosting is any different.</p>
<p>For basic blogs, you should just be able to setup an account with one of those sites and get started.  However, if you&#8217;re planning on doing some serious blogging (i.e. considering part or full-time work) you may want to have it hosted somewhere you have more control.  When you host a site with a webhosting company, you have more control about the speed of your blog and where you store images.  For anyone just starting, the free-hosted solution is probably just fine and you can always transfer your blog later.  It&#8217;s always good to have a solution you can revise later.<br />
<span id="more-23"></span><br />
From what I can tell, you can&#8217;t install custom themes on WordPress.com or Blogger.com&#8217;s free hosting.  In order to install custom themes (explained later), you will need to use a webhost solution.  Finally, if you host with WordPress or Blogger your blog will be myblog.blogger.com or newblogname.wordpress.org.  Again, if you&#8217;re just testing the waters, this is perfect.  For a more formalized approach, you can register a domain name and attach it to your hosted blog.  Both WordPress and Blogger allow this, though I believe WordPress charges a small fee ($10-20 dollars a year).</p>
<p>To add a blog to an existing site, or if you decide to get your own webspace right from the beginning then you will need to get blogging software.  There is plenty of free software available for blogging, but I prefer WordPress (and run 3 different blogs on it).  Feel free to start with any blog software you like, but I&#8217;ll cover a basic WordPress install here.  First, <a href="http://wordpress.org/download/">download WordPress</a>.  You will need to uncompress it and upload it to your webhost (again, this is only for those who have chosen to install a blog on a webhost, and not on one of the free hosting services).  Then, follow the step-by-step <a href="http://codex.wordpress.org/Installing_WordPress">instructions from WordPress</a>.  Note, you will need to edit some of the files on your webserver, so you&#8217;ll need to know how to do this before continuing.  You will also need a webhost that provides MySQL support (most &#8212; but not all &#8212; do provide it with basic packages).</p>
<p>Now, you&#8217;ve got your blog installed &#8212; either by using one of the free hosting options, or by installing it onto a webserver.  At this point, you&#8217;ll just need to customize your blog and start writing.  For those who use Blogger.com, you&#8217;ll be using their own software.  If you downloaded WordPress or are using the free hosting on WordPress.com, then you&#8217;ll obviously be using the WordPress software.  Most of these steps are similar for all blogs, but I&#8217;ll specifically be taking you through WordPress customization for the sake of brevity.</p>
<p>You can start blogging right away, using the default theme from WordPress.  However, you will probably want to customize the blog to make it your own.  The first step to customizing your blog is to find and install a theme.  The great thing about WordPress themes is that they&#8217;re easy to find and even easier to install.  The downside is, not all themes measure up.</p>
<p>A quick Google search of WordPress themes will bring up more sites than you can shake a stick at (even a virtual stick!).  In my experience, paid themes aren&#8217;t necessarily written better than free themes.  So, you should find the theme that you like and go with it.  There are plenty of free themes out there, but you may find a paid theme that you like.  Generally, paid themes run from $15 &#8211; $50 and that will be for a non-exclusive license (someone else might be blogging with the same theme).  Until you have really customized a theme, it&#8217;s not a big deal as you can always replace it relatively easily.</p>
<p>Find a theme and get started, but there are a few rules that may make the process less painful.  If these are confusing, don&#8217;t worry too much about it, you can always change it up later when you run into issues.  The main problem I have found is poor CSS.  Usually, sites will allow you to view a live blog using the theme they&#8217;re advertising.  Make sure you resize your browser window and that the blog looks reasonable as you&#8217;re resizing it.  You don&#8217;t want to make your screen get really wide and have the blog design (template) go nuts.  Also, be certain that the blog doesn&#8217;t use hard-coded text in graphics that you will need to change.  A good example of this would be the name of the blog.  If you&#8217;re a graphic artist, you don&#8217;t care.  For everyone else, we don&#8217;t want a theme with a hard-coded name in a graphic somewhere.</p>
<p>Install your theme by uploading it into the themes directory on your website.  This will be located in /wp-content/themes.  If the theme comes in a .zip or .tgz file, make sure you uncompress it first and upload all of the files and folders it was storing.  Now, you&#8217;re going to return to your WordPress console and click &#8220;Appearance&#8221; on the left side  (if your lost at this stage, remember that you logged in when you were following the WordPress installation instructions).  From there you should see the themes displayed and you can now select your newly installed theme (first click on the theme, then click &#8220;Activate&#8221; from the theme preview window).</p>
<p>Once installed, you may use the Appearance menu to manually edit the HTML or CSS for your blog.  This is where you can edit some of the things like where your login menu appears or where the logo for RSS shows up.  Most themes will have at least an &#8220;About&#8221; page, which you can fill in with information about yourself or your company.  Check through some of these pages and familiarize yourself with them.  Also, make sure you fill out the information so none of your pages say &#8220;This is an example of a WordPress Blog&#8221;.</p>
<p>At this point, you should be ready to blog away.  In the top left is a menu labeled &#8220;Posts&#8221; and this is where you can go to edit, create, or delete posts.  Start writing posts and get on your way to having a great internet blog.  Once you&#8217;ve spent between a couple of weeks to a couple of months of posting content (depending on how studious you are with it), it will be time to advertise your blog.  We&#8217;ll cover that in another post, but for now you should have a blog up and running.</p>
<p>If you started a blog with this post &#8212; leave a comment to let us know.  Or, if you have problems, post your questions and I&#8217;ll do my best to answer them and maybe update this post if it&#8217;s a relevant question for everyone.</p>
<p>Oh, and Matt, my mom&#8217;s starting a blog too!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/06/starting-a-blog-a-quick-guide-to-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Google Analytics</title>
		<link>http://www.internetstarting.com/2009/05/starting-google-analytics/</link>
		<comments>http://www.internetstarting.com/2009/05/starting-google-analytics/#comments</comments>
		<pubDate>Thu, 07 May 2009 15:31:01 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[101]]></category>
		<category><![CDATA[analytics]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google analytics]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[webtraffic]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=8</guid>
		<description><![CDATA[Google Analytics is a powerful tool for analyzing the web traffic coming to your website.  In this article we'll walk step-by-step through the process of setting up an Analytics so you can have the tools necessary to analyze and improve your own website.]]></description>
			<content:encoded><![CDATA[<div class="wp-caption alignleft" style="width: 194px"><a rel="nofollow" href="http://analytics.google.com"><img title="Google Analytics" src="/i/logo_ga.gif" alt="Setup Google Analytics" width="184" height="47" /></a><p class="wp-caption-text">Setup Google Analytics</p></div>
<p>Besides being such a great search engine, Google has some phenomenal tools.  Before you do anything else, it&#8217;s important to be able to track what&#8217;s happening on your website.  You can&#8217;t grow your website without knowing where it is right now.  To understand where your website is, who is coming to it and other useful marketing information, we&#8217;re going to use Google Analytics.</p>
<p>Analytics is not only completely free, it probaby is the best tracking tool on the internet for your site.  With Google Analytics, we&#8217;ll be able to understand who is coming to our website, where they are coming from and what they do when they are there.  You will be absolutely amazed at the amount of data you can gather about your visitors and how we can use that information to make our website better.  Without further adieu, let&#8217;s get started and you&#8217;ll pick up more features along the way.<br />
<span id="more-8"></span></p>
<h2>Create a Google Account</h2>
<p>For whatever reason, when I hear &#8220;Create a Google Account&#8221;, I automatically think of a Gmail account.  While Gmail is also a great tool, you don&#8217;t need to have a Gmail account to get started.  You do need a google account.  So, start by heading to <a href="http://analytics.google.com">analytics.google.com</a> to get started.  Click on &#8220;Sign Up Now&#8221;.  For those of you who <strong>do</strong> have a google account already (be it Gmail or otherwise), you can use that account here.  Just type in your Gmail address on the right side and your Gmail password and you&#8217;re in.  For those who don&#8217;t have a Gmail account, just click on &#8220;Sign Up Now&#8221; (yes, again) to create your google account.  You&#8217;ll just enter your current e-mail address and give google a password and that will become your google account for Analytics.</p>
<p>Now you have a google account; click &#8220;Click Here to Continue&#8221; at the bottom of the page (bet you didn&#8217;t see that one coming!).  Before you use the account, you&#8217;ll need to check your e-mail (of the address you used to sign up for a google account).  Find the google e-mail and click the link inside to activate your google account.  Now go back to the previous Analytics window and let&#8217;s continue.</p>
<p>Next, you&#8217;ll be taken to a page where you click &#8220;Sign Up Now&#8221;.  See, this isn&#8217;t so bad, just keep clicking the cookie-crumb-trail of links that Google lays out.  Now, we&#8217;ll be taken to a screen where you need to enter your internet site information.  Go ahead and fill that out (if you have more than one site, just pick one for now you can fill the others in later).  When you fill out the account name, use whatever you want.  For www.internetstarting.com I&#8217;m actually just using www.internetstarting.com as the account name.  This is only for you and it&#8217;s so you can associate this account with a website (useful if you have several).</p>
<p>Continue through the Google steps, providing answers as needed.  Stop once you come to the page called &#8220;Analytics: Tracking Instructions&#8221;.  You&#8217;re going to need this code later, so copy and paste it somewhere useful (maybe make a new Word or Notepad document on your desktop somewhere).  You can get it again later, but it&#8217;s easier if you don&#8217;t loose it in the first place.</p>
<p>Click &#8220;Continue&#8221; and whala!  You are brought to the Google analytics screen.  You&#8217;re almost finished.  By the way, you will notice a small yellow alert next to your account.  Don&#8217;t panic, it&#8217;s supposed to be there.  It just means Google doesn&#8217;t know about any visitors to your website yet.  It will go away once we finish and you start getting visitors.</p>
<p>Now, what do we do with all that code we cut/pasted earlier.  Well, now you&#8217;ll need to add it to your website.  How you do that will depend on how you created your website, but we&#8217;ll try to give you a couple of tips here.</p>
<ol>
<li>If you had someone design your website, just ask them to add the code before the &lt;/body&gt; tag on all of your pages.  They&#8217;ll know what that means.</li>
<li>For WordPress users, go to &#8220;Appearance&#8221; and &#8220;Edit&#8221;.  Now find your &#8220;footer.php&#8221; and place it in that file.  Again, look for a line that says &lt;/body&gt; &#8212; you want to put it right before that line (but make sure &lt;/body&gt;) is the first thing on the next line.</li>
<li>If you used a website builder of some kind, they may have a Google Analytics Plugin (there&#8217;s probably one for WordPress also).  Otherwise, find out how to edit your HTML and do the same thing the WordPress users did in #2.</li>
<li>If you created your own website, you already know how to do this.  Just make sure it&#8217;s at the end of the body because you don&#8217;t want your whole website to have to wait for analytics to load.</li>
</ol>
<p>Bam!  That&#8217;s it, you&#8217;ve successfully installed Analytics now.  If you figured out how to install it on a particular webhost or website builder program, please leave a comment for our other users.  If you&#8217;re stuck, check the comments and see if someone else has solved this for the webhost you&#8217;re using.  It&#8217;s like &#8220;Take a Penny.  Leave a Penny.&#8221;  Except without the penny.</p>
<p>We&#8217;ll write a 201 article soon on what you can do inside Analytics and how you can block your own IP (so you aren&#8217;t analyzing yourself connecting to your own website!).  In the meanwhile, just play around with the settings and menus in Analytics&#8230; and don&#8217;t worry!  It&#8217;s a read only tool, you can&#8217;t break anything on your website by playing around in Analytics.  So take some time and get to know the system.</p>
<p>Alright, now I have to go paste the code into www.internetstarting.com.  I&#8217;ve done this on other websites plenty of times, but seriously with internetstarting.com, I&#8217;m walking through the steps right with you.  Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/05/starting-google-analytics/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Starting a Website, Choosing a Webhost</title>
		<link>http://www.internetstarting.com/2009/04/starting-a-website-choosing-a-webhost/</link>
		<comments>http://www.internetstarting.com/2009/04/starting-a-website-choosing-a-webhost/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 02:41:18 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Website Starting]]></category>
		<category><![CDATA[beginner]]></category>
		<category><![CDATA[dedicated server]]></category>
		<category><![CDATA[isp]]></category>
		<category><![CDATA[shared hosting]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[webhosting]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[webspace]]></category>

		<guid isPermaLink="false">http://www.internetstarting.com/?p=3</guid>
		<description><![CDATA[Starting a web-based business or launching a website can be a daunting task.  Brian breaks down the major questions you'll need to ask to choose the proper webhosting company to best launch your website.]]></description>
			<content:encoded><![CDATA[<p>Any web-based business is obviously going to need a website.  There are a lot of choices out there, and it&#8217;s easy to get lost in the details.  The good news is, you can start small without losing the ability to grow quickly in the future.  Some of the questions you may find yourself asking are:</p>
<ul>
<li>How much webspace do I need?</li>
<li>Can I just choose based on price, or is there a significant difference between internet providers?</li>
<li>My friend said I should go with XYZ internet provider, which package do I need?</li>
<li>If I make the wrong choice now, how long do I get stuck with it?</li>
</ul>
<p>Alright, so there are probably a hundred other questions I can think of, but let&#8217;s just start with these.  Below, we&#8217;ll link to additional posts that describe more details like how do process credit cards, getting your site marketed, and more advanced questions.  For now, let&#8217;s get you a website!</p>
<h2>Everyone wants to know</h2>
<p>First, let&#8217;s answer the questions that are going to be the same for everyone.  Then, we&#8217;ll move on to answers that will vary depending on the type of site your planning to setup.<br />
<span id="more-3"></span><br />
Certainly different webhosting companies can offer different services, and some are better than others.  There are some basic principles that hold true in nearly all cases.  One is that larger companies regularly have better systems and support.  That doesn&#8217;t mean the smaller companies don&#8217;t, but if you know anything about economies of scale, then you already understand why this is.  If I hosted one machine and paid $20,000 / month for a full diesel generator, I probably wouldn&#8217;t make very much money.  On the other hand, companies who are hosting thousands of websites have the abilities to do such things.</p>
<p>Generally, this is why you&#8217;ll find companies like 1and1, Yahoo, or GoDaddy have very inexpensive plans, sometimes costing less than $5/month.  There isn&#8217;t anything wrong with these hosting plans, it&#8217;s just that you&#8217;re sharing resources with (likely) hundreds of other customers.  &#8220;Is that bad?&#8221;, you ask.  Not necessarily, but we&#8217;ll get to that later.  In general though, I&#8217;ve found that the larger companies have better support and a better ability to fix problems when they occur.</p>
<p>It&#8217;s unfortunate, but you will often find that companies don&#8217;t have time to help you setup your website.  This happens to be especially true of larger companies, but smaller companies aren&#8217;t always better.  Thankfully, you have internetstarting.com to help you with that part!  Just make sure that the webhost provider you choose does solve problems when there are actual technical issues with your website.  I&#8217;ll give you some details on a few of them later, but just search google for reviews on websites to get a better idea of who is good at what.</p>
<h3>Caveat Emptor!</h3>
<p>Beware when reading reviews!  Most sites collect a commisssion on sites when you purchase your webhosting after visiting their site (called a click-through).  Some companies pay a higher commission, so these &#8220;review&#8221; sites have an incentive to promote a particular company as their #1 recommendation.  As I write this article, we haven&#8217;t signed up any sponsors yet.  Once we do, I will publish a list of rank in terms of our commission in an effort to provide full disclosure.  I refuse to promote anyone that I feel would hurt your business though, irrespective of how much commission I might make off of such a recommendation.  It&#8217;s just not good business.</p>
<h2>Linux or Windows?</h2>
<p>You may be used to using Windows on your home PC and now you have to decide if you want to use Linux or Windows for your webserver.  (You could also be running Linux, in which case you have already answered this question.  I suppose you could also be using a Mac, but Mac users are already used to being ignored.)  It really has nothing to do with what you&#8217;re used to using.  Unless you&#8217;re running a major application on the web (in which case you&#8217;ve already hired a team of engineers to do this work for you), you won&#8217;t have any interaction with the Operating System on the webhost at all.</p>
<p>That being said, I will recommend that you choose Linux in most cases.  Windows just happens to be a bit slower and more prone to crashes.  This usually won&#8217;t affect you, but because your webhosting provider has to deal with it, they may actually charge you more for a Windows plan.  You&#8217;re actually paying more for the system to be serviced more often because it will be down more.  That&#8217;s not what you need.</p>
<p>If you were going to interact with the system, I might recommend you stick with what you know.  In the case of a webserver, it just isn&#8217;t the case.  Unless you have a really good reason to go with Windows (i.e., you need ASP or VB Scripts on your webserver), I recommend you stick with the Linux option.</p>
<h2>Do I need a Terabyte? &#8230; what&#8217;s a Terabyte?</h2>
<p>Alright, now let&#8217;s dig into the nitty-gritty of what you&#8217;ll actually need on your site.  This is going to be an experiment you&#8217;ll have to play with in order to find the right fit, but there are some simple principles that you should know and will help you along the way.  Now, read down and pick the site that best describes you.</p>
<h3>Standing Page &#8211; Personal or Business</h3>
<p>This describes your page if you just want to make sure you have some kind of internet presence.  You&#8217;d like to make sure your customers or clients can find you online and can find your hours of operation or perhaps your resume.</p>
<p>Relative to the major sites on the internet, this kind of a site is going to get a small amount of traffic.  If all of your pages are static (that means they don&#8217;t automatically change every couple of minutes or hours), then you don&#8217;t even need to worry about things like PHP or MySQL support.</p>
<p>Good news, you&#8217;re going to be fine with the minimum hosting requirements of most of the major services.  You can probably find the package you need for around or under $5 / month.  This will allow you to change your content as needed, but you don&#8217;t have to worry about a lot of traffic or storage space (i.e. you aren&#8217;t storing hundreds of videos here).  Check out some of our sponsors on the side and pick the one that feels right to you.  You can always upgrade your site later.</p>
<p>In terms of storage space, you probably don&#8217;t need more than 10-20 MB and most of these hosting accounts come with 50-300 GB (1GB = 1024MB).  Some hosts have a very cheap account that only allows for 10 or 20MB.  This is plenty if you only have 1 or 2 pages with very little graphics.  If you&#8217;re going to do much more it won&#8217;t hurt to bump up to that $5 (or so) plan.</p>
<h3>Creating a Blog or Unique Source of Information</h3>
<p>For those who are starting a blog or want to use the internet to get unique information out to the world, you may have slightly larger requirements.  The good news is, this still isn&#8217;t going to be very expensive.  However, you will have to dig a little deeper to make sure they provide you with everything you need in terms of technology.</p>
<p>For most applications (incuding blog software), you&#8217;ll just need a hosting provider that runs PHP and MySQL.  In the case that you&#8217;re using WordPress (the blog software we use here), some hosting companies even support a one-click wordpress option.</p>
<p>I still wouldn&#8217;t recommend going with a VPS (Virtual Private Server).  For most applications you won&#8217;t need it.  Most webhosting companies will give you 100MB per MySQL database and that will certainly be plenty when you&#8217;re starting off.</p>
<p>As for storage space, you still won&#8217;t need much here &#8212; especially if you&#8217;re running a blog.  Almost all of your blog data will be stored in a database, so the storage space of the account is insignificant.  If you&#8217;re running a site that will be pretty active or has a significant amount of images, flash, etc. then maybe you need a bit more.  It will depend on your application, but usually 50GB is more than enough (when large pictures can sometimes consume less than half a MB!).</p>
<h3>Internet Application Companies / Mid-size Companies</h3>
<p>For those of you with a Mid-size company (say, larger than 100 employees) or who are making an internet application, you may want a dedicated server or a VPS.  Even as a Mid-size company, you may only need this because it&#8217;s hard to explain how a $100 Million company can get away with paying $20 / month for web space.  If you need a bigger number, a) think about a VPS, because they&#8217;re less expensive and will still probably meet your needs and b) Please, make sure you click our affiliate link so we can share in the excess profit you&#8217;re bleeding!</p>
<p>In all seriousness, you may eventually need to go to a VPS or dedicated server in this case.  Be careful though, very often shared hosting solutions are actually under-utilized and you will lose resources by upgrading.  The key to VPS and dedicated server offerings is two-fold.  1) You don&#8217;t have to worry about some one else&#8217;s traffic spiking right when you need the bandwidth (this is slightly less applicable to VPS) and 2) You need more processing power or specialized requirements like large MySQL databases, etc.</p>
<p>To give you an example, I run a <a href="http://www.dvdcorral.com/">DVD Catalog and Organizing</a> site.  It ran for a year and a half on a shared hosting solution, and only after our database grew from 100,000 movies to over 200,000 did we need to shift to a VPS.  Obviously every application is different, but hopefully that will give you a little bit of perspective.</p>
<h4>VPS vs. Dedicated Server</h4>
<p>A Dedicated Server means that your webhost actually sets up a physical machine dedicated to serving only your website.  You may use the machine for anything you want, as long as it complies with your webhost&#8217;s terms and conditions (usually just things like spam and illegal activites are not permitted).  This is a good solution if you really need the processing power, and most webhosts will allow you some level of configuration of the machine.</p>
<p>Because it is a dedicated server, you essentially are paying the lease on the hardware as well as the webhosting fees.  These packages generally start at around $99/month, but you can sometimes find specials for less.  Be careful, I have seen dedicated plans costing as little as $29 / month, but they actually come with no support.  If the machine shuts down, you&#8217;re on your own bub!</p>
<p>VPS stands for &#8220;Vitual Private Server&#8221; and operates similarly to a dedicated server.  In the case of a VPS, there is only one physical server which hosts several VPS accounts.  Usually these are pretty beefy machines with quad processors or even 8-way processors, but they are also usually serving between 16 and 64 VPS accounts.  This puts you half-way between a dedicated server account and a shared hosting plan.  Prices usually float somewhere between as well.</p>
<p>If you just don&#8217;t quite need the processing power of a dedicated machine, VPS systems are a nice way to go.  They will get a bit sluggish if another member is crunching away on a task, but usually some amount of RAM and processing power is always reserved for each machine so you should never get resource starved.</p>
<p>The VPS is also a nice way to go if you need to do something besides just a webhost.  For example, if you need to run software that hosts an online multiplayer game you likely couldn&#8217;t do that on a shared hosting account.  VPS setups are still cheap enough that it may fit your budget, but because it acts like an independent machine you should also be able to run whatever other types of server you may need (proxy, STUN, game host to name a few).</p>
<p>For VPS or a dedicated server, you&#8217;ll have to decide how much RAM and/or processing power you need.  There&#8217;s no real way to gauge this, it&#8217;s just going to depend on your application.  256MB of RAM isn&#8217;t a lot, but if you are hosting an application that isn&#8217;t very busy or that has a small database footprint, then maybe it&#8217;s enough (I&#8217;m speaking in terms of a Linux VPS here, Windows VPS accounts &#8212; you&#8217;re on your own).  The best thing I can recommend is to make sure your web host allows a simple upgrade path.  Then if the allocation isn&#8217;t enough or your requirements grow it will be easy to migrate to a larger account.</p>
<h2>It All Comes Down to This</h2>
<p>Remember, it&#8217;s not a big deal to upgrade.  I wouldn&#8217;t recommend doing it every week, but it won&#8217;t kill you to upgrade once or twice in this process.  So, while I might make less commission off of it, I recommend starting small and moving up as required.</p>
<p>As for which host to go with, I can tell you that I host 3 sites on 1and1 at this point.  They&#8217;ve done a pretty good job of it so far and their technical support has always been responsive (I usually get through in 1 to 3 minutes).  I also checked throughput (how fast they download) and 1and1 wasn&#8217;t the absolute fastest out there, but they&#8217;re almost always near the top.  That was one of the big factors for me &#8212; if it loads slowly, people will move on.</p>
<p>When reading through internet archives I&#8217;ve probably read more bad about Dreamhost than good, but I don&#8217;t have any personal experience, so you&#8217;ll have to make your own judgement there.  GoDaddy seems to have similar plans and features to 1and1, but they&#8217;re usually just a tad more expensive.</p>
<p>Finally, if you are going with a dedicated server, you may want to check out ThePlanet.  They do dedicated servers almost exclusively and they seem to do it very well.  When I look at who is running what, the big sites seem to frequent ThePlanet.  Again, if you&#8217;re looking for shared hosting (the smaller plans), this isn&#8217;t the company for you.  Check out one of the previously mentioned companies.</p>
<p>Also, check out our advertiser list.  I don&#8217;t blindly signup advertisers, so if they&#8217;re in our list there&#8217;s a good chance they know what they&#8217;re doing.  If I ever hear otherwise (from reliable sources), I&#8217;ll be sure to remove the offending companies from our list.  We believe you&#8217;ll come back if we&#8217;re honest and upfront with you, so you can trust our advertisers!</p>
<h2>Tools and Resources</h2>
<p>I need to add a whois database lookup to this blog, so if you are reading this and it&#8217;s not on the right &#8212; shoot me a reminder.  We&#8217;ll try to add useful tools to this section as we find them.</p>
<p>Thanks for reading and thanks for making InternetStarting.com your place for online business information!</p>
<p><a rel="me" href="http://technorati.com/claim/zp5f82xxr2">Technorati Profile</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.internetstarting.com/2009/04/starting-a-website-choosing-a-webhost/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
