<?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>IT Resource &#187; Webmaster Tools</title>
	<atom:link href="http://www.itresource.com.au/category/webmaster-tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itresource.com.au</link>
	<description>Your one stop Information Technology Resource</description>
	<lastBuildDate>Sun, 23 May 2010 03:53:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Using .htaccess to block an IP Address</title>
		<link>http://www.itresource.com.au/2008/03/29/using-htaccess-to-block-an-ip-address/</link>
		<comments>http://www.itresource.com.au/2008/03/29/using-htaccess-to-block-an-ip-address/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 01:12:02 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Webmaster Tools]]></category>

		<guid isPermaLink="false">http://www.itresource.com.au/2008/03/29/using-htaccess-to-block-an-ip-address/</guid>
		<description><![CDATA[For whatever reason, there may come a time when you want or need to block an IP Address or domain name from accessing your website. There are a number of ways to do this and I will demonstrate these below. You need to start off by creating a .htaccess file and placing it in the [...]]]></description>
			<content:encoded><![CDATA[<p>For whatever reason, there may come a time when you want or need to block an IP Address or domain name from accessing your website. There are a number of ways to do this and I will demonstrate these below.</p>
<p>You need to start off by creating a .htaccess file and placing it in the directory for which you want it to take affect on. For example, if you block access to <strong>example.com</strong>, you would place the .htaccess file in the root/home directory of your website.  If you wanted to block access to <strong>example.com/myfiles</strong>, you would place the .htaccess file in the <strong>myfiles</strong> directory.</p>
<p>Once you have worked out what part of your website you want to block access to, you will need to add the following to the .htaccess file:</p>
<p><span style="color: green;">order allow,deny<br />
deny from <span style="color: red;">203.101.101.101</span><br />
allow from all</span></p>
<p>This will refuse all requests made by the IP address 203.101.101.101. An error message similar to the following will be shown instead.</p>
<p><highslide image="http://www.picgeek.com/images/ke048lhfev29zpnpii7p.jpg" thumbnail="http://www.picgeek.com/images/ke048lhfev29zpnpii7p_thumb.jpg" altdesc=".htaccess error" captiontext=".htaccess error" /></p>
<p>Ok, so now lets say you wanted to block multiple IP Addresses from accessing your site. You simply list the IP Addresses one per line:</p>
<p><span style="color: green;">order allow,deny<br />
deny from <span style="color: red;">203.101.101.101</span><br />
deny from <span style="color: red;">203.101.101.102</span><br />
deny from <span style="color: red;">203.101.101.103</span><br />
allow from all</span></p>
<p>You also have the ability to block an entire IP Address range. You can do this by not specifying the last octet in the IP Address:</p>
<p><span style="color: green;">deny from <span style="color: red;">203.101.101</span></span></p>
<p>This will restrict access to anyone who falls in the 203.101.101 to 203.101.101.255 address range.</p>
<p>Instead of using IP Addresses to restrict access, you can also use domain names as well:</p>
<p><span style="color: green;">deny from <span style="color: red;">example.com</span></span></p>
<p>You should be careful when using the .htaccess file to block an entire IP Address range or domain name as it&#8217;s likely to block access to genuine users. Where possible, and unless you have a specific need to block an entire range or domain name, you would be in most cases better off specifying individual IP Addresses or domain names.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/03/29/using-htaccess-to-block-an-ip-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ajaxload &#8211; Ajax loading gif generator</title>
		<link>http://www.itresource.com.au/2008/03/22/ajaxload-ajax-loading-gif-generator/</link>
		<comments>http://www.itresource.com.au/2008/03/22/ajaxload-ajax-loading-gif-generator/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 06:33:17 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Webmaster Tools]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[ajax loading gif]]></category>
		<category><![CDATA[generator]]></category>
		<category><![CDATA[loading gif]]></category>

		<guid isPermaLink="false">http://www.rw.id.au/2008/03/22/ajaxload-ajax-loading-gif-generator/</guid>
		<description><![CDATA[For those of you who have ever created a website incorporating Ajax, you will generally use a animated gif as an indication to the user that things are happening, so please wait/be patient! Well, I recently found myself in a situation where I already had an animated gif but I needed a new one.Â  The [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you who have ever created a website incorporating Ajax, you will generally use a animated gif as an indication to the user that things are happening, so please wait/be patient!</p>
<p>Well, I recently found myself in a situation where I already had an animated gif but I needed a new one.Â  The one I was using was plain and simple and I needed something a little more fancy.Â  So, I hit Google and started searching.Â  It took about 10 seconds and I stumbled across <a href="http://www.Ajaxload.info" title="Ajax Loading Gif Generator">Ajaxload.info</a> &#8211; a website that can generate an Ajax loading/please wait/be patient, gif.</p>
<p>So impressed with this website I was that I decided I would share it with you.</p>
<p>You simply choose the indicator type, a background color (or make it transparent), a foreground color and click generate.Â  In seconds, you have your Ajax loading gif.Â  Best of all, it is completely free!</p>
<p>If you need to generate your own Ajax loading gif, heading on over to <a href="http://www.Ajaxload.info" title="Ajax Loading Gif Generator">www.Ajaxload.info</a> &#8211; I don&#8217;t believe you will be disappointed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/03/22/ajaxload-ajax-loading-gif-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AddThis &#8211; Bookmarking &amp; Sharing Button</title>
		<link>http://www.itresource.com.au/2008/03/20/addthis-bookmarking-sharing-button/</link>
		<comments>http://www.itresource.com.au/2008/03/20/addthis-bookmarking-sharing-button/#comments</comments>
		<pubDate>Thu, 20 Mar 2008 12:43:46 +0000</pubDate>
		<dc:creator>Dave W</dc:creator>
				<category><![CDATA[Webmaster Tools]]></category>
		<category><![CDATA[addthis]]></category>
		<category><![CDATA[bookmarking]]></category>
		<category><![CDATA[sharing]]></category>

		<guid isPermaLink="false">http://www.rw.id.au/2008/03/20/addthis-bookmarking-sharing-button/</guid>
		<description><![CDATA[AddThis is the #1 bookmarking and sharing button on the Internet. AddThis spreads your content across the Web by making it easier for your visitors to bookmark and share it with other people, againâ€¦and againâ€¦and again. Our simple yet powerful button is very easy to install and provides valuable statistics about the bookmarking and sharing [...]]]></description>
			<content:encoded><![CDATA[<p>AddThis is the #1 bookmarking and sharing               button on the Internet.               AddThis spreads your content across the Web by making it easier for your visitors to bookmark and share it with other people, againâ€¦and               againâ€¦and               again. Our simple yet powerful button is very easy to install               and provides valuable statistics about the bookmarking and sharing               activity of your users. AddThis               is the perfect tool to help your visitors create a buzz for your               site and increase its popularity and ranking.</p>
<p><img src="http://s9.addthis.com/button1-addthis.gif" align="absmiddle" border="0" height="16" width="125" /><a href="http://www.addthis.com/bookmark.php" onmouseout="addthis_close()" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onclick="return addthis_sendto()"><br />
</a><img src="http://s9.addthis.com/button1-rss.gif" align="absmiddle" border="0" height="16" width="125" /><br />
<img src="http://s9.addthis.com/button1-share.gif" border="0" height="16" width="125" /><br />
<img src="http://s9.addthis.com/button2-fd.png" align="absmiddle" height="24" width="160" /></p>
<p>Some of the buttons available are pictured above.Â  When you hover your cursor over them, a menu will appear with a group of sites including Digg, Google, Live and so on (all of which are customisable) that you can add your website to quickly and easily.</p>
<p>I highly recommend you check out <a href="http://www.addthis.com" title="AddThis" target="_blank">http://www.addthis.com</a> for more information!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itresource.com.au/2008/03/20/addthis-bookmarking-sharing-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

