<?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>Web Design and SEO Blog - Blizzard Digital</title>
	<atom:link href="http://www.bliznet.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bliznet.com</link>
	<description>Internet marketing and web design experience.</description>
	<lastBuildDate>Fri, 18 Jun 2010 19:32:33 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>The Pesky iframe and XHTML Strict</title>
		<link>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/</link>
		<comments>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 19:30:44 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Conditional Comments]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Iframe]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Object]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=736</guid>
		<description><![CDATA[If you&#8217;ve done much web work before, you&#8217;ve probably, at some time or another, had to use an iframe. It&#8217;s not pretty, but sometimes it&#8217;s the only choice, such as embedding a widget from another site or displaying things such as real estate listings. One of my biggest problems with it is that it doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve done much web work before, you&#8217;ve probably, at some time or another, had to use an <code>iframe</code>. It&#8217;s not pretty, but sometimes it&#8217;s the only choice, such as embedding a widget from another site or displaying things such as real estate listings. One of my biggest problems with it is that it doesn&#8217;t exist in the spec for XHTML Strict! It exists in Transitional, but I don&#8217;t like to use it. That may be good enough for some developers, but certainly not for me. How about you?</p>
<p>In Internet Explorer 8 (and possibly IE7, but I have not tested it) and Firefox, you can use the <code>object</code> element to embed a web page just like an <code>iframe</code>; however, IE gives it a thick, lovely border that seems impossible to remove. Here&#8217;s the trick: employing IE&#8217;s conditional comments, use an <code>iframe</code> for IE and an <code>object</code> for everything else. Here&#8217;s an example:</p>
<pre><code>&lt;!--[if !IE]&gt;--&gt;&lt;object data="http://www.bliznet.com/" width="320" height="240" /&gt;
	&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;&lt;iframe frameborder="0" src="http://www.bliznet.com/" width="320" height="240" /&gt;
	&lt;![endif]--&gt;</code></pre>
<p>Valid XHTML Strict! Make sure to keep your settings the same across both elements to keep it consistent.</p>
<p>Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/the-pesky-iframe-and-xhtml-strict/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Valid Flash Embed and Preloaders in Internet Explorer</title>
		<link>http://www.bliznet.com/valid-flash-embed-and-preloaders/</link>
		<comments>http://www.bliznet.com/valid-flash-embed-and-preloaders/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:56:32 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Conditional Comments]]></category>
		<category><![CDATA[Embed]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Preloader]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=731</guid>
		<description><![CDATA[Hello once again, web friends. Today I bring tidings of Flash preloaders and validity. You may have noticed that with the embed code from my YouTube article that Flash movie preloaders don&#8217;t work in Internet Explorer, and the movie has to load entirely before it even displays at all. This is because Internet Explorer requires [...]]]></description>
			<content:encoded><![CDATA[<p>Hello once again, web friends. Today I bring tidings of Flash preloaders and validity.</p>
<p>You may have noticed that with the embed code from my <a href="/valid-flash-embed/">YouTube article</a> that Flash movie preloaders don&#8217;t work in Internet Explorer, and the movie has to load entirely before it even displays at all. This is because Internet Explorer requires a different attribute and the removal of another in the <code>object</code> tag to let preloaders work properly. However, with different attributes, the Flash movie will not display at all in Firefox, so we must use Internet Explorer&#8217;s <a href="http://msdn.microsoft.com/en-us/library/ms537512(VS.85).aspx">conditional comments</a> to utilize two different opening <code>object</code> tags. Behold:</p>
<pre><code>&lt;!--[if !IE]&gt;--&gt;&lt;object data="yourmovie.swf" type="application/x-shockwave-flash"
	width="320" height="240"&gt;&lt;!--&lt;![endif]--&gt;
&lt;!--[if IE]&gt;&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
	width="320" height="240"&gt;&lt;![endif]--&gt;
	&lt;param name="movie" value="yourmovie.swf" /&gt;
	&lt;param name="quality" value="high" /&gt;
&lt;/object&gt;</code></pre>
<p>The first line is the original that works in both IE and Firefox but doesn&#8217;t allow preloaders in IE. The second is the IE-only method that works with preloaders. Note the lack of a <code>data</code> attribute and the addition of a <code>classid</code> attribute.</p>
<p>Well, there you have it. Venture forth and embed Flash validly with preload animations!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/valid-flash-embed-and-preloaders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trouble-&#8221;Shooting&#8221; A Malfunctioning Printer &#8211; Solves Privacy Issues Too!</title>
		<link>http://www.bliznet.com/printer-troubleshooting/</link>
		<comments>http://www.bliznet.com/printer-troubleshooting/#comments</comments>
		<pubDate>Tue, 18 May 2010 13:52:43 +0000</pubDate>
		<dc:creator>Clint Blizzard</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Videos]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=687</guid>
		<description><![CDATA[We execute an excessive final solution to our malfunctioning Xerox multi-function printer.]]></description>
			<content:encoded><![CDATA[<p>Update! This is the new method to prevent privacy and security issues related to the <a href="http://www.youtube.com/watch?v=iC38D5am7go">copier salvage industry</a>.</p>
<p><object data="http://www.youtube.com/v/fHNOH0NguOI&amp;hl=en_US&amp;fs=1&amp;start=7" type="application/x-shockwave-flash" width="640" height="385"><param name="movie" value="http://www.youtube.com/v/fHNOH0NguOI&amp;hl=en_US&amp;fs=1&amp;start=7" /></object></p>
<p>Let me tell you a tale. For the longest time, we used a Xerox  WorkCentre PE16 multi-function printer/scanner/copier/fax here in the  office. It was an utter nightmare, and every time we tried to use it,  the people next door could hear the screams of frustration.</p>
<p>For some reason, we lived with the thing for months&#8211;maybe years. The  simple solution would have been to just replace it, but we just  wouldn&#8217;t. Perhaps we were stubborn, perhaps we just never got around to  it. We would always eventually get it to do what we wanted it to do and  then get back to work.</p>
<p>Tensions mounted. The printer would ruin entire days and make the air  of the office thick with anger. Finally, we couldn&#8217;t take it anymore,  so yesterday, we finally did some troubleshooting.</p>
<p>We&#8217;d like to share this quick how-to with you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/printer-troubleshooting/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Internet Marketing &#8211; Recipe For Failure</title>
		<link>http://www.bliznet.com/internet-marketing-failure/</link>
		<comments>http://www.bliznet.com/internet-marketing-failure/#comments</comments>
		<pubDate>Sat, 10 Apr 2010 19:31:19 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[FaceBook]]></category>
		<category><![CDATA[Internet Magic]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=600</guid>
		<description><![CDATA[Find out why you might fail on the Internet if you try to sell without a good product and a business plan.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-609" src="http://www.bliznet.com/wp-content/uploads/2010/04/internet-recipe.jpg" alt="internet recipe" width="300" height="225" />Some ideas have no chance of succeeding, or should I say profiting since that is measurable. Success, like beauty, is in the eye of the beholder. Profit is a measurable result. Some people will say they are successful because they quit their job and started baking cookies at home and sell them on Sunday at church.</p>
<p>Let&#8217;s call the cookie lady Betty. Betty has no ambition, at least not anymore. Her husband makes a hefty income, she finally quit her crappy job and she likes to bake cookies. Betty is done, take her out of the oven, that&#8217;s everything she wanted.</p>
<p><strong>Friends and Family</strong> &#8211; Betty&#8217;s brother-in-law, Eddie, comes along and woofs down a dozen of her sugar cookies. High on the sugar, he tells her she could sell these cookies on the Internet and make a fortune. Betty asks Eddie if he really thinks she can sell them on the net. Eddie says his &#8220;Worm Farming in a Box&#8221; pyramid site is really taking off (Lie) so he is sure she can do it too. Now the rest of the friends and family join in cheering Betty on, telling her how much money she could make on the Internet (It&#8217;s Magic). So now Betty is pumped, all she has to do is almost nothing and she can get rich on the Internet. &#8220;Almost nothing&#8221; is a little more ambition than she has, but maybe she can muster up the strength.</p>
<p><strong>Web Designer</strong> &#8211; Betty finds out her cousin Cindy&#8217;s kid just graduated high school and he has the most popular website on the planet, and he built it from scratch. Right away they hit it off because Betty builds cookies from scratch (box). Plus this kid knows more about the internet than Al Gore. So for $200 bucks, Betty is hooked up with a website to sell cookies. Her cousin&#8217;s kid used all the latest technology, including those cascading tables, so it is going to be a surefire success.</p>
<p><strong>Social Media Expert</strong> &#8211; Someone tells Betty that the Pastor&#8217;s sister is a big deal on Twitter and Facebook. She gets the story about how she can have tens of thousands of followers in a month and followers are better than pixie dust. So she pays the Twit $60 for a 2 hour lesson on &#8220;how to use Twitter&#8221; and away she goes. Next week, for $75 she can find out how to share her high school and wedding photos with thousands of strangers on Facebook.</p>
<p><strong>Pay-Per-Click</strong> &#8211; It&#8217;s been 4 months and no sales. Betty is discouraged, but brother-in-law Eddie is back to the rescue. His worm sales had &#8220;slowed&#8221; last month after he got banned from Twitter, so he set up a Google AdWords account and he has never looked back. Betty whips out the credit card, and she and Eddie set up an AdWords account. Eddie hooks her up with all the best keywords: &#8220;cookies&#8221;, &#8220;sugar cookies&#8221;, &#8220;baked goods&#8221;, &#8220;recipes&#8221;, &#8220;housewife&#8221;&#8230; They start the budget at $200 per day as Eddie quotes from memory the PPC website he read, &#8220;You get every PPC dime you spend back in sales.&#8221;</p>
<p><strong>Reality Check</strong> &#8211; The $6000 credit card bill comes in. Lucky for Betty, the ads have stopped on their own because of the expiration date on the card. Betty&#8217;s husband gets involved because he now has an investment in a sugar cookie website. He calls and talks to some Internet Marketing companies. Company #1 tells him they are sure they can turn this disaster around for $3000 per month with their awesome directory submission and secret link building service. Company #2 tells him he has nothing they can work with. He will need a business plan and a niche because he isn&#8217;t going to sell Betty&#8217;s sugar cookies unless he can make them unique. He argues that the congregation loves them. Company #2 continues &#8220;unless you have time lapse photos of the cookies transforming into images of Mary or Jesus then we can&#8217;t help you. Even if they are miracle cookies you would be better off on eBay than hiring us.&#8221; He swears at them, slams down the phone and hires company #1.</p>
<p><strong>The End</strong> &#8211; Three months later Betty calls Internet Company #2 and says they are all out of money, in serious debt, and they really need help. She then asks if she can pay for their services after they turn her cookie business around&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/internet-marketing-failure/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Web SPAM &#8211; Should We All Snitch For Google?</title>
		<link>http://www.bliznet.com/web-spam-snitch/</link>
		<comments>http://www.bliznet.com/web-spam-snitch/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 22:52:19 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Search Engine News]]></category>
		<category><![CDATA[AdSense]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Advertising]]></category>
		<category><![CDATA[Matt Cutts]]></category>
		<category><![CDATA[Web SPAM]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=560</guid>
		<description><![CDATA[Should I report Web SPAM? What is Web SPAM and am I part of the problem?]]></description>
			<content:encoded><![CDATA[<h3><img class="alignright size-full wp-image-568" title="Snitch to Google" src="http://www.bliznet.com/wp-content/uploads/2010/03/snitch-250-width.jpg" alt="" width="250" height="165" />To snitch or not to snitch, that is the question.</h3>
<p>Should we report our competition or sites we come across for Web SPAM, or is it Taboo? Does it make you a snitch or a rat? Is it OK to publicly point it out but not in a private report?</p>
<p>I think everyone would have a somewhat different opinion of what the Utopian Web would be like. Ask 100 people the question, &#8220;What is Web SPAM?&#8221; and see how many answers you get. Some will tell you it&#8217;s the ocean of scraper sites that steal data for content so they can run ads. Others say it&#8217;s the numerous sites that come up top 10 for unrelated content or that come up top ten but have little or no content, just a big funnel towards AdSense. Just like we won&#8217;t all agree on that question we also don&#8217;t agree on how to police the web and whose job it is to fight webspam. This is another example of  how <a href="http://www.bliznet.com/seo-meets-politics/">SEO and search mirrors politics</a>.</p>
<h3>What are SPAM reports?</h3>
<p>Matt Cutts recently<a href="http://www.mattcutts.com/blog/calling-for-link-spam-reports/"> asked for SPAM reports</a> but what are they? Are they reports that show people buying links? Is Web SPAM really sites that buy or sell links? Maybe indirectly, because people buying links can, in many cases, have their sites rank higher than those that don&#8217;t. I&#8217;m sure by now you have heard some stories about what kind of links you can buy for the price of a MacBook Air <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>SPAM is not just those buying links and in many cases a purchased link should not be considered a bad thing, in my opinion. I&#8217;m sure there are a lot of people who paid to be in <a href="http://botw.org">Best of the Web</a> that don&#8217;t actually use the site or expect others to, they just wanted the link.</p>
<p>Should content scraping and 100% pure funnel to AdSense type SPAM sites be included and addressed in SPAM reports too? Is Google&#8217;s AdSense partly responsible for creating the Web SPAM they claim they want to get rid of?</p>
<h3>Can the community police itself?</h3>
<p>If Microsoft&#8217;s Bing Team and Google&#8217;s Web SPAM team listen then I think so. When the MacBook issue hit TechCrunch the pages that may have benefited were pulled down (as far as I know), and I think this can be credited to the web community and peer pressure, partly. Score one for the community. Now there is a ton of talk about Mahalo and SPAM. Some claim that something is being done, others say no. I like to think that Google has acted as Big Daddy and contacted Mahalo and we are in a holding pattern, just waiting to see the response. This is speculation on my part and many will argue that this isn&#8217;t fair because their little $500 per month MFA site would just get burned down without warning if they violated the terms of service. Let&#8217;s not be naive, you aren&#8217;t Mahalo, you don&#8217;t count and the big boys always play by different rules. That said, we do expect after numerous warnings have not been addressed that action will be taken. If not, the community will not be capable of policing itself. Bing and Google must listen and take action for that to work. If they don&#8217;t, the top 10 search positions for all but the smallest niche markets will eventually be filled with corporate built, Made-For-Adsense or advertising websites. Don&#8217;t get me wrong, not all MFA sites are SPAM. There are some bright people building useful sites and their original intention was to make money from AdSense or other ads; they chose to do it by providing &#8220;real&#8221; content.</p>
<p>Let me know, should we snitch publicly, privately, or not at all? Tell me what you consider to be the worst type of Web SPAM or at least what your definition is.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/web-spam-snitch/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Link Farms and Link Swaps</title>
		<link>http://www.bliznet.com/link-farms-swaps/</link>
		<comments>http://www.bliznet.com/link-farms-swaps/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 22:32:55 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Link Building]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Link Farms]]></category>
		<category><![CDATA[Link Swap]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=564</guid>
		<description><![CDATA[Are link farms getting smarter? Do link exchanges still make sense?]]></description>
			<content:encoded><![CDATA[<h3>What is a link farm?</h3>
<p>If I own 10 websites and link them all together do I own a link farm? Will my competition report me? What if all 10 have unique content? Let’s extrapolate that over 200 websites. What if they all have unique, valuable, content but also have links between each other? See where the problem comes in? Many individuals and companies own 10, 20, or maybe hundreds of websites. If someone reports you for owning 20 websites that all link to each other at what point or through what checks are they considered a farm? What if they are all on the same IP address or registered to the same individual or company? We can only hope that content value and link purpose is a big consideration when judging a group of web sites as a farm. It would be great if we knew the answers but Google, for fear of aiding &#8220;the bad guys&#8221; rarely goes into detail. The best I can find from Google is this <a href="http://www.google.com/support/webmasters/bin/answer.py?answer=66356">Link Schemes</a> article at Google Webmaster Central. I saw a comment once where it was suggested one ask himself &#8220;Would I be doing this if the search engines didn&#8217;t exist?&#8221;. Well, yeah! How else would anyone find my other 50 websites if there was no search engine.</p>
<h3>What about link swaps?</h3>
<p><img class="alignleft size-full wp-image-571" title="Link swaps could drag you down" src="http://www.bliznet.com/wp-content/uploads/2010/03/ball-and-chain-250-width.jpg" alt="" width="250" height="179" />Are SEOs moving away from link swaps? One thing I can see in some search results reports is that Google has made some headway with link swaps. In some niche markets I monitor, I see some top sites losing position, sites that counted heavily on link management software for the past few years to build thousands of inbound links. I hope the decline in position for sites that use blatant, irrelevant link swapping continues but it must be done with consideration for context, content, and value of the swap. To penalize a two way link swap just because it is two-way goes against some of the finer points of valuing links. If I link to my local Chamber of Commerce and then join that Chamber at a later date will I be penalized because they now link back? If so then that becomes a real issue. I know search algorithms have evolved but maybe sometimes we need to remind the brainiacs of the simple and obvious.</p>
<h3>New attempts to cheat the system.</h3>
<p>A new practice I see with some big SEO agencies is 3-way link swaps between those in their portfolio. I&#8217;m not talking about a few clients who know each other and trade links. As far as I can tell these are large numbers of 3-way link swaps being managed with an application. It&#8217;s a genius idea for these big companies with 100 or more SEO clients where they can manage links without any two-way trades. I was able to detect this because of their public portfolio pages but imagine the really bright ones that don&#8217;t offer a portfolio page. If they keep the swaps between relevant markets then this might just be the one that works. Once they build a reputation of &#8220;page one results&#8221; then it becomes perpetual and they could really dominate the SEO field with this tactic. One caveat for their clients is that once they stop paying that marketing company they potentially lose two dozen or more quality links. It&#8217;s a little scary for the little guys (me).</p>
<p>Remember, <a href="http://www.bliznet.com/bing-seo/">Bing Search</a> is not too  far behind, if it doesn&#8217;t work with Google then it won&#8217;t be long before  it doesn&#8217;t work with Bing.</p>
<p>What do you think, do link exchanges still make sense? Have you noticed some high-tech link farms? <a href="http://www.bliznet.com/web-spam-snitch/">Should we report SPAM to Google</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/link-farms-swaps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress and PHP on Windows Server 2008</title>
		<link>http://www.bliznet.com/wordpress-php-windows-2008/</link>
		<comments>http://www.bliznet.com/wordpress-php-windows-2008/#comments</comments>
		<pubDate>Tue, 09 Mar 2010 06:05:19 +0000</pubDate>
		<dc:creator>David Blizzard</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Web Platforms]]></category>
		<category><![CDATA[IIS7]]></category>
		<category><![CDATA[Joomla]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[windows server 2008]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=552</guid>
		<description><![CDATA[How to install and configure Wordpress on Windows Server 2008. Also includes PHP, MySql, FastCGI and the IIS URL ReWrite Module.]]></description>
			<content:encoded><![CDATA[<p>Guess what? WordPress rocks on Windows Server 2008 and IIS7. Congratulation to Microsoft for the effort. If you didn&#8217;t know Microsoft created the FastCGI component to address previous performance issues with PHP on Windows. At the same time Zend worked to make PHP more stable on Windows. The two combined to make reliable and high performance PHP on Windows. FastCGI support is now built in to Windows Server 2008. There is plenty of documentation available for setting everything up manually but let me tell you this, don&#8217;t waste your time. Microsoft is really getting serious about PHP on Windows. They have created the <a href="http://www.microsoft.com/web/Downloads/platform.aspx">Web Platform Installer 2.0</a> and that&#8217;s all you really need. Once you install the Web Platform Installer you can run it and choose to install applications like WordPress and Joomla. The installer checks to see if you have the necessary components, if you don&#8217;t then it downloads and installs them. This includes PHP, MySQL, and the application, like WordPress. It also installs an IIS URL ReWrite module so you can have pretty permalinks for your WordPress Blog. For novice or inexperienced Windows server admins I recommend you let the Platform Installer take care of everything for you.</p>
<p>For advanced users I will warn you that, at the time of my last install you could not change the default install path for MySql or PHP. This is easy to get around, just download and install PHP and MySql before you use the Platform Installer for the first time to set up WordPress. The Platform Installer will recognize your installations. Happy Blogging.</p>
<p>Almost forgot, here is how you create <a href="http://www.bliznet.com/301-redirect-iis/">301 redirects on Windows Server 2008</a> (and server 2003 with IIS6) if you are migrating from an existing site to a CMS platform.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/wordpress-php-windows-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semantic Markup &#8211; Why Should You Use It?</title>
		<link>http://www.bliznet.com/semantic-markup/</link>
		<comments>http://www.bliznet.com/semantic-markup/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 16:00:42 +0000</pubDate>
		<dc:creator>Kyle Blizzard</dc:creator>
				<category><![CDATA[Web Standards]]></category>
		<category><![CDATA[Data Extraction]]></category>
		<category><![CDATA[Semantic Markup]]></category>
		<category><![CDATA[Semantics]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[XHTML]]></category>

		<guid isPermaLink="false">http://www.bliznet.com/?p=529</guid>
		<description><![CDATA[Why should you use semantic markup when designing your website pages?]]></description>
			<content:encoded><![CDATA[<p>Your markup should have meaning. Markup your content appropriately (e.g. put your address and phone number in the <code>address</code> element) and it becomes much more readable to search engines and other software used for data extraction. Using only <code>div</code> and <code>span</code> elements leaves much to be desired, semantically speaking. These elements are certainly indispensable, however, there are some cases where there are more meaningful elements to use. For example:</p>
<ul>
<li>Use <code>h1</code> as your page title; use <code>h2</code> and on appropriately as sub-headings on the page. This provides an outline of your document.</li>
<li>Use lists (<code>dl</code>, <code>ol</code>, <code>ul</code>) instead of manually placing numbers or bullets.</li>
<li>Use <code>address</code> for any contact information on your page, including physical address, email address, phone numbers, and whatever else you would consider to be contact info.</li>
<li>Use <code>table</code> on data best represented in rows and columns. Use <code>thead</code> and <code>th</code> to markup the column headings and <code>tbody</code> for the data itself.</li>
</ul>
<p>Check the <a href="http://www.w3.org/TR/html401/struct/text.html">HTML spec</a> for additional meaningful elements and get to work! <img src='http://www.bliznet.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can use the W3&#8242;s handy <a href="http://www.w3.org/2003/12/semantic-extractor.html">Semantic Data Extractor</a> tool to test your new semantic web site to give you an idea of how it would be seen by software.</p>
<p>That does it for now. See you next time! Until then, read <a href="http://www.bliznet.com/seo-and-validation/">SEO and Validation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bliznet.com/semantic-markup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
