<?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; Builder Site Web</title>
	<atom:link href="http://loudsign.com/blog/category/builder-site-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>Church Web Site Building</title>
		<link>http://loudsign.com/blog/2007/church-web-site-building/</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>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build a Web Site</title>
		<link>http://loudsign.com/blog/2007/build-a-web-site-2/</link>
		<comments>http://loudsign.com/blog/2007/build-a-web-site-2/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 15:19:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Builder Site Web]]></category>
<category>build website</category><category>website builder</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/build-a-web-site-2/</guid>
		<description><![CDATA[Okay, you've been sitting on the sidelines watching this whole internet thing grow.  At first, you thought, "Maybe this is a fad."  But you now realize that this is not going away.  The internet is still growing by leaps and bounds both in terms of people getting access and new sites being [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/11/build.jpg" ><img src="http://loudsign.com/blog/wp-content/uploads/2007/11/build.thumbnail.jpg" align="left" /></a>Okay, you've been sitting on the sidelines watching this whole internet thing grow.  At first, you thought, "Maybe this is a fad."  But you now realize that this is not going away.  The internet is still growing by leaps and bounds both in terms of people getting access and new sites being developed.  You want to start from scratch and put a website up.  There are many ways to go, but all of them involve some sort of plan to get you there.  It's kind of like building a house.  Without a plan, that house would turn into a disaster.</p>
<p><span id="more-33"></span></p>
<ol>
<li>Step number one is thinking through what you want to do with your site.  Do you want a place to put your thoughts out there?  Maybe you want a place to post photos of your family and share them with others.  Whatever the case, you need to start there.  Figure out what you want your website to do.</li>
<li>Be honest about your technical ability.  Building and administering websites can be an enormous job.  If you aren't tech savvy, then you will need tools that bridge that technical divide.  Be honest now to save yourself a lot of headache and heartache later.</li>
<li>Think through how much maintenance you want to do.  As you can see, this list really is a lot like house considerations.  Do you want to be updating the site continually or just every once in a while?</li>
</ol>
<p>That's a good start.  More than likely, if you are technically savvy, you can build what you want with some decent upfront planning.  If you are not savvy, let me recommend some tools that we have that could really help you:</p>
<p><strong><a href="https://www.securepaynet.net/gdshop/hosting/hosting_build_website.asp?prog_id=293829&amp;ci=1806&amp;#features"  title="Website Tonight" target="_blank">Website Tonight</a></strong> - This tool allows you to build sites simply, easily, and cheaply.  It functions a lot like other desktop applications that you are probably already using like Word and PowerPoint.  This allows for a point and click website building experience.  Take our <a href="https://products.secureserver.net/products/website_tonight/producttourpl/index.html"  title="Website Tonight Tour" target="_blank">Website Tonight Tour</a>.  Here are the features included:</p>
<p><strong>Building</strong></p>
<ul style="padding: 0px 20px 0px 40px">
<li><strong>NEW!</strong> <a onmouseout="ShowHelp(this,'clicktype',true)" onmouseover="ShowHelp(this,'clicktype',false)" style="text-decoration: underline; color: #0033cc" id="clicktype_source"><strong>Click-&amp;-Type Editing</strong></a></li>
<li><strong>IMPROVED!</strong> <a onmouseout="ShowHelp(this,'accordion',true)" onmouseover="ShowHelp(this,'accordion',false)" style="text-decoration: underline; color: #0033cc" id="accordion_source"><strong>Accordion-Style Interface</strong></a></li>
<li><a onmouseout="ShowHelp(this,'forums',true)" onmouseover="ShowHelp(this,'forums',false)" qaid="19" style="text-decoration: underline; color: #0033cc" id="forums_source"><strong>Forums</strong></a></li>
<li><a onmouseout="ShowHelp(this,'rssfeeds',true)" onmouseover="ShowHelp(this,'rssfeeds',false)" style="text-decoration: underline; color: #0033cc" id="rssfeeds_source"><strong>RSS News &amp; More</strong></a></li>
<li><a onmouseout="ShowHelp(this,'flashtemp',true)" onmouseover="ShowHelp(this,'flashtemp',false)" style="text-decoration: underline; color: #0033cc" id="flashtemp_source"> <strong>Flash Intros - with Music!</strong></a></li>
<li><a onmouseout="ShowHelp(this,'wst_mobi',true)" onmouseover="ShowHelp(this,'wst_mobi',false)" style="text-decoration: underline; color: #0033cc" id="wst_mobi_source"><strong>.mobi-compatible</strong></a></li>
<li><a onmouseout="ShowHelp(this,'wst_video',true)" onmouseover="ShowHelp(this,'wst_video',false)" style="text-decoration: underline; color: #0033cc" id="wst_video_source"><strong>Video</strong></a></li>
<li>HTML Editing</li>
<li>Spell Check</li>
<li>HTML Importing</li>
<li>Copyright Statement</li>
<li>Theme-based Categories</li>
<li><a onmouseout="ShowHelp(this,'wsttemp',true)" onmouseover="ShowHelp(this,'wsttemp',false)" style="text-decoration: underline; color: #0033cc" id="wsttemp_source"><strong>Over 800</strong></a> Professionally Designed Templates</li>
<li><a onmouseout="ShowHelp(this,'csstemp',true)" onmouseover="ShowHelp(this,'csstemp',false)" style="text-decoration: underline; color: #0033cc" id="csstemp_source"> <strong>CSS Based Templates</strong></a></li>
<li>Shared Content</li>
<li>Password-protected pages</li>
<li>Professionally Designed Color Schemes</li>
<li><a href="javascript: openColorCustomizerPopup();" style="text-decoration: underline; color: #0033cc"><strong>Color Customizer</strong></a></li>
<li>Multiple Color Themes</li>
<li>Specialty Content</li>
<li>Site Preview</li>
<li>Image Editing (editor/wysiwyg)</li>
<li>Text Editing (wysiwyg)</li>
<li>Custom Form Builder</li>
<li><a href="https://products.secureserver.net/products/website_tonight/template_showcase/"  qaid="16" target="_info"><strong>Add Images</strong></a> (Over 8,000 free images included)</li>
<li>Publish a "Coming Soon" page in 3 easy steps</li>
<li>Built-in hosting</li>
<li>Expanded Workspace</li>
</ul>
<p><strong>Publishing</strong></p>
<ul style="padding: 0px 20px 0px 40px">
<li>Seamless integration with Google's® <a onmouseout="ShowHelp(this,'googlesmt',true)" onmouseover="ShowHelp(this,'googlesmt',false)" style="text-decoration: underline; color: #0033cc" id="googlesmt_source"><strong>Site Mapping Tool</strong></a></li>
<li>Publishing Times</li>
<li>Publish From Application</li>
<li>Add Meta Tags</li>
<li>Add Page Keywords and Descriptions</li>
<li>Site Analysis</li>
<li>Publish Log</li>
</ul>
<p><strong>Page Elements</strong></p>
<ul style="padding: 0px 20px 0px 40px">
<li>Guestbooks</li>
<li>Customize and Add Label</li>
<li>Supports JavaScripts</li>
<li>Navigation Buttons</li>
<li>Hit Counter</li>
<li>Music Plug-in</li>
<li>Scrolling Marquee</li>
<li>Date / Time Stamp</li>
<li>Add Photo Album Links</li>
<li>Slideshows within Photo Album</li>
<li>Easy Form Builder</li>
</ul>
<p><strong>Web Site Management &amp; Tools</strong></p>
<ul style="padding: 0px 20px 0px 40px">
<li>Secure Hosting with Generous Disk Space/Bandwidth</li>
<li>Spam &amp; Virus-Protected Email Account</li>
<li>256-Bit Encryption provides privacy and protection for your personal information through Web-Based Email</li>
<li>"Phishing" fraud protection with technologies like <a onmouseout="ShowHelp(this,'sender',true)" onmouseover="ShowHelp(this,'sender',false)" style="text-decoration: underline; color: #0033cc" id="sender_source"><strong>Sender ID</strong></a></li>
<li>Email Forwards</li>
<li>Faster Backup and Restore</li>
<li>Rebuild</li>
<li>Fonts</li>
<li><a href="javascript:openGoogleAdWords()" onmouseout="ShowHelp(this,'adwords',true)" onmouseover="ShowHelp(this,'adwords',false)" qaid="19" id="adwords_source"><strong>Google® AdWords® Credit</strong></a></li>
<li><a href="javascript:openMicrosoftAdCenter()" onmouseout="ShowHelp(this,'adcenter',true)" onmouseover="ShowHelp(this,'adcenter',false)" qaid="19" id="adcenter_source"><strong>Microsoft® adCenter Credit</strong></a></li>
</ul>
<p><a href="https://www.securepaynet.net/gdshop/photo/landing.asp?prog_id=293829&amp;ci=7314&amp;"  title="Online Photo Filer" target="_blank">Online Photo Filer</a> - If you have friends or family in a distant location, this application can allow you to share you photos in simple and fun way.  Store your photos online, share them with friends (with no login!), and have them printed and delivered to your door.  Convenient, easy, and fun - those are good combinations.  Check out our <a href="https://products.secureserver.net/products/online_photo_filer/tour/index.html"  title="Online Photo Filer Tour" target="_blank">Online Photo Filer Tour</a>.  Features include:</p>
<ul class="liststyle2">
<li>Login-free photo sharing.</li>
<li>Purchase options for high-quality prints and T-Shirts, delivered directly to your door!</li>
<li>Simple, effective photo editing features, including the ability to return images to their original state</li>
<li>Password Protection for galleries.</li>
<li>Custom photo slideshows.</li>
<li>RSS Feeds</li>
<li>Permalinks to Galleries and Photos</li>
<li>More than <a href="https://www.securepaynet.net/gdshop/redirect/go.asp?prog%5Fid=293829&amp;ci=8678&amp;url=http%3A%2F%2Fthemes%2Eonlinephotofiler%2Ecom"  target="_sample">100 photo gallery themes</a></li>
<li><strong class="red">NEW!</strong> Display your photos on other Web sites! Create a custom photo badge with your choice of layout, color and more and use the HTML code we provide you to show your photos on other Web sites.</li>
<li><strong class="red">NEW!</strong> Mobile-friendly galleries</li>
</ul>
<p>If you are planning on doing an online store, that is a whole other ballgame.  We will talk about that another time.  Happy site building!</p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/build-a-web-site-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Web Site Analytic</title>
		<link>http://loudsign.com/blog/2007/web-site-analytic/</link>
		<comments>http://loudsign.com/blog/2007/web-site-analytic/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 18:52:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Builder Site Web]]></category>
<category>google analytics</category><category>site meter</category><category>statcounter</category>
		<guid isPermaLink="false">http://loudsign.com/blog/2007/web-site-analytic/</guid>
		<description><![CDATA[A big part of running any site is keeping track of your traffic.  Seasoned webmasters are notorious for pouring over traffic stats.  The reason is simple: traffic sources are the lifeblood of any site.  It's akin to water and a riverbed.  Take away the water and the river goes away - [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudsign.com/blog/wp-content/uploads/2007/10/web_counter_stats.jpg" ><img src="http://loudsign.com/blog/wp-content/uploads/2007/10/web_counter_stats.thumbnail.jpg" alt="Web Analytics" align="left" /></a>A big part of running any site is keeping track of your traffic.  Seasoned webmasters are notorious for pouring over traffic stats.  The reason is simple: traffic sources are the lifeblood of any site.  It's akin to water and a riverbed.  Take away the water and the river goes away - and everything tied to it.  So, if you have never thought about tracking website traffic, you should start - yesterday.  When we speak of analytics, we are simply talking about tracking website visitor behavior.  Again, this helps us to know how our site is performing, how we can improve it, and what problems visitors are encountering.</p>
<p><span id="more-31"></span> The advantage of websites is that we can pretty accurately track our visitors.  This information is incredibly valuable.  Offline companies spend millions and millions of dollars to find out who their customers are, where they come from, etc.  You can readily garner some of that information by using a simple statistics tracking program.  This will allow you to see how your visitor entered your site.  Did they use a search engine?  Were they referred by another site?  Did they have your site bookmarked?  You need to know how people are coming to your site.  Next, you can track what the visitor does once they are on your site.  You can see where most people drop off your site.  You can see how long they stay.  That kind of information really is gold.  And this also applies for non-commercial sites.  Afterall, you built a site for a reason - to get people to read it or come to it.</p>
<p>Here are a few free statistics packages:</p>
<p><a href="http://www.statcounter.com/"  title="StatCounter" target="_blank">StatCounter</a> - This free site offers you a host of very nice features.  You can see referrers, entry pages, exit pages, keyword analysis, visitor maps (Google Maps feature), browser-type, etc.</p>
<p><a href="http://sitemeter.com"  title="Site Meter" target="_blank">Site Meter</a> -  Another good, free program that allows you to see similar types of metrics.</p>
<p><a rel="nofollow" href="http://www.google.com/analytics/"  title="Google Analytics" target="_blank">Google Analytics</a> - An incredibly powerful, free program.  Google's analytics program is so powerful, we still can't believe that they offer it for free.</p>
<p><a href="http://http://www.mrunix.net/webalizer/"  title="Webalizer" target="_blank">Webalizer</a> - "<em>The Webalizer</em> is a fast, free web server log file analysis program.  It produces highly detailed, easily configurable usage reports in HTML format, for viewing with a standard web browser.  It was written to solve several problems that I had with currently available analysis packages.  A vast majority of them were written in Perl or some other scripting language, and took forever to run.  Some were not free. Some even produced wrong results, or results that were not in a format  I found very useful."</p>
<p><a rel="nofollow" href="http://awstats.sourceforge.net/"  title="Awstats" target="_blank">Awstats</a> - "AWStats is a free powerful and featureful tool that generates advanced web, streaming, ftp or mail server statistics, graphically. This log analyzer works as a CGI or from command line and shows you all possible information your log contains, in few graphical web pages. It uses a partial information file to be able to process large log files, often and quickly. It can analyze log files from all major server tools like Apache log files (NCSA combined/XLF/ELF log format or common/CLF log format), WebStar, IIS (W3C log format) and a lot of other web, proxy, wap, streaming servers, mail servers and some ftp servers."</p>
<p>What you will find in the preceding list is that some are log file analyzers and others are tagging systems.  They both have their pros and cons.  Wikipedia has a nice summary of the advantages of both of these types:</p>
<h4><span class="mw-headline">"Advantages of logfile analysis</span></h4>
<p>The main advantages of logfile analysis over page tagging are as follows.</p>
<ul>
<li>The web server normally already produces logfiles, so the raw data is already available. To collect data via page tagging requires changes to the website.</li>
<li>The web server reliably records every transaction it makes. Page tagging relies on the visitors' browsers co-operating, which a certain proportion may not do (for example, if JavaScript is disabled).</li>
<li>The data is on the company's own servers, and is in a standard, rather than a proprietary, format. This makes it easy for a company to switch programs later, use several different programs, and analyze historical data with a new program. Page tagging solutions involve vendor lock-in.</li>
<li>Logfiles contain information on visits from search engine spiders. Although these should not be reported as part of the human activity, it is important data for performing search engine optimization.</li>
<li>Logfiles contain information on failed requests; page tagging only records an event if the page is successfully viewed.</li>
</ul>
<p><a title="Advantages_of_page_tagging" name="Advantages_of_page_tagging" id="Advantages_of_page_tagging"></a></p>
<h4><span class="editsection"></span> <span class="mw-headline">Advantages of page tagging</span></h4>
<p>The main advantages of page tagging over logfile analysis are as follows.</p>
<ul>
<li>The JavaScript is automatically run every time the page is loaded. Thus there are fewer worries about caching.</li>
<li>It is easier to add additional information to the JavaScript, which can then be collected by the remote server. For example, information about the visitors' screen sizes, or the price of the goods they purchased, can be added in this way. With logfile analysis, information not normally collected by the web server can only be recorded by modifying the URL.</li>
<li>Page tagging can report on events which do not involve a request to the web server, such as interactions within Flash movies.</li>
<li>The page tagging service manages the process of assigning cookies to visitors; with logfile analysis, the server has to be configured to do this.</li>
<li>Page tagging is available to companies who do not run their own web servers."</li>
</ul>
<p>Source <a rel="nofollow" href="http://en.wikipedia.org/wiki/Web_analytics"  title="Wikipedia Web Analytics" target="_blank">Wikipedia Web Analytics</a></p>
]]></content:encoded>
			<wfw:commentRss>http://loudsign.com/blog/2007/web-site-analytic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

