<?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>Andrew Taylor &#187; Web</title>
	<atom:link href="http://www.andrewtaylor.me.uk/blog/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andrewtaylor.me.uk</link>
	<description></description>
	<lastBuildDate>Wed, 28 Apr 2010 18:02:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>WordPress permalinks on IIS with a 404 handler &#8211; with working querystrings</title>
		<link>http://www.andrewtaylor.me.uk/blog/2008/06/wordpress-permalinks-on-iis-with-a-404-handler-with-working-querystrings/</link>
		<comments>http://www.andrewtaylor.me.uk/blog/2008/06/wordpress-permalinks-on-iis-with-a-404-handler-with-working-querystrings/#comments</comments>
		<pubDate>Mon, 02 Jun 2008 09:17:20 +0000</pubDate>
		<dc:creator>ataylor</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andrewtaylor.me.uk/blog/2008/06/permalinks-on-iis-with-a-404-handler-with-working-querystrings/</guid>
		<description><![CDATA[I have been using this very useful tip from Keyboard Face to provide WordPress permalinks on IIS without having to worry about an URL rewrite filter. I didn&#8217;t even have this option with my previous host, but I&#8217;ve stuck with it now I&#8217;ve moved this site. However, as you&#8217;ll see in the comments, this doesn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p>I have been using this <a href="http://www.keyboardface.com/archives/2007/09/07/update-for-wordpress-permalinks-on-iis">very useful tip from Keyboard Face</a> to provide WordPress permalinks on IIS without having to worry about an URL rewrite filter. I didn&#8217;t even have this option with my previous host, but I&#8217;ve stuck with it now I&#8217;ve moved this site.</p>
<p>However, as you&#8217;ll see in the comments, this doesn&#8217;t pass through the querystring parameters (e.g. <code>?page=2</code>). I&#8217;ve added in a section of code to cater for this:<br />
<span id="more-128"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
<span style="color: #990000;">error_reporting</span><span style="color: #009900;">&#40;</span>E_NONE<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$qs</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'QUERY_STRING'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs</span><span style="color: #339933;">,</span> <span style="color: #990000;">strpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">':80'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'PATH_INFO'</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$qs_vars</span> <span style="color: #339933;">=</span> <span style="color: #990000;">substr</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #990000;">strrpos</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_SERVER</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">'REQUEST_URI'</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'?'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$qs_vars_arr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$qs_vars</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #990000;">unset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$_GET</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">foreach</span> <span style="color: #009900;">&#40;</span><span style="color: #000088;">$qs_vars_arr</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$qs_var_entry</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$qs_vars_entry_arr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;=&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$qs_var_entry</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$_GET</span><span style="color: #009900;">&#91;</span><span style="color: #000088;">$qs_vars_entry_arr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$qs_vars_entry_arr</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #b1b100;">include</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'index.php'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>This may not be the most efficient way to achieve what I want, but it does the job. Comments appreciated so I can optimise.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewtaylor.me.uk/blog/2008/06/wordpress-permalinks-on-iis-with-a-404-handler-with-working-querystrings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linking to a specific page in an Adobe PDF document</title>
		<link>http://www.andrewtaylor.me.uk/blog/2008/01/linking-to-a-specific-page-in-an-adobe-pdf-document/</link>
		<comments>http://www.andrewtaylor.me.uk/blog/2008/01/linking-to-a-specific-page-in-an-adobe-pdf-document/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 10:51:58 +0000</pubDate>
		<dc:creator>ataylor</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[pdf]]></category>

		<guid isPermaLink="false">http://www.andrewtaylor.me.uk/dev/blog/2008/01/14/linking-to-a-specific-page-in-an-adobe-pdf-document/</guid>
		<description><![CDATA[If you want to create an HTML link to a specific page in an Adobe PDF file, this is easily achieved with the following syntax: &#60;a href="file.pdf#page=4"&#62;Link to page 4&#60;/a&#62; For example, this link to the official Adobe documentation on this.]]></description>
			<content:encoded><![CDATA[<p>If you want to create an HTML link to a specific page in an Adobe PDF file, this is easily achieved with the following syntax:</p>
<p><code>&lt;a href="file.pdf#page=4"&gt;Link to page 4&lt;/a&gt;</code></p>
<p>For example, <a href="http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf#page=5" target="_blank">this link to the official Adobe documentation on this</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewtaylor.me.uk/blog/2008/01/linking-to-a-specific-page-in-an-adobe-pdf-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook-WordPress integration</title>
		<link>http://www.andrewtaylor.me.uk/blog/2008/01/facebook-wordpress-integration/</link>
		<comments>http://www.andrewtaylor.me.uk/blog/2008/01/facebook-wordpress-integration/#comments</comments>
		<pubDate>Fri, 11 Jan 2008 15:37:41 +0000</pubDate>
		<dc:creator>ataylor</dc:creator>
				<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andrewtaylor.me.uk/dev/blog/2008/01/11/facebook-wordpress-integration/</guid>
		<description><![CDATA[Does it work? If you&#8217;re reading this on Facebook, then yes]]></description>
			<content:encoded><![CDATA[<p>Does it work? If you&#8217;re reading this on Facebook, then yes <img src='http://www.andrewtaylor.me.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewtaylor.me.uk/blog/2008/01/facebook-wordpress-integration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Wonders of Google Apps</title>
		<link>http://www.andrewtaylor.me.uk/blog/2006/07/the-wonders-of-google-apps/</link>
		<comments>http://www.andrewtaylor.me.uk/blog/2006/07/the-wonders-of-google-apps/#comments</comments>
		<pubDate>Wed, 26 Jul 2006 16:01:54 +0000</pubDate>
		<dc:creator>ataylor</dc:creator>
				<category><![CDATA[Computers and Internet]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web 2.0]]></category>

		<guid isPermaLink="false">http://www.andrewtaylor.me.uk/dev/?p=73</guid>
		<description><![CDATA[I&#8217;ve recently rediscovered the various applications &#8211; whether Win32 or Web Based &#8211; that Google provide. I&#8217;ve converted my personal email account to GMail to take advatage of the web based and POP3 interface, 2Gb storage, conversation feature &#8211; and above all, excellent spam filtering. I&#8217;m also using Google CalendarÂ to manage my work in-out schedule [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently rediscovered the various applications &#8211; whether Win32 or Web Based &#8211; that Google provide.</p>
<p>I&#8217;ve converted my personal email account to <a href="http://www.gmail.com/" target="_blank">GMail</a> to take advatage of the web based and POP3 interface, 2Gb storage, conversation feature &#8211; and above all, excellent spam filtering.<span id="more-73"></span></p>
<p>I&#8217;m also using <a href="http://www.google.com/calendar/" target="_blank">Google Calendar</a>Â to manage my work in-out schedule and use it to view my collegues schedules using shared calendars. Once I can get an Outlook-to-Google-Calendar sync going I&#8217;ll also be using it for my personal calendar. The requirement to keep Outlook in the loop is due to my mobile phone and PDA both syncronising to the same source.</p>
<p><a href="http://www.google.com/notebook/" target="_blank">Google Notebook</a> is keeping track of all sorts of information for me, withÂ it&#8217;s WebÂ 2.0 interfaceÂ and Internet Explorer add-in and the <a href="http://toolbar.google.com/T4/" target="_blank">Google Toolbar</a> (along with <a href="http://www.google.com/bookmarks" target="_blank">&#8216;hosted&#8217; bookmarks</a>) is allowing me to search a wide range of sources and keep track of my favourite sites extremely easily. Scarily easy.</p>
<p><a href="http://desktop.google.com/" target="_blank">Google Desktop</a> is indexing all my emails and data files and the search interface is very handy. Almost forgot to mention <a href="http://www.google.com/talk/" target="_blank">Google Talk</a> for the occasional text chat with various friends and colleagues. An uncluttered and simple interface is quite refreshing.</p>
<p>I suggest if you haven&#8217;t made use of these tools, you take a look. Everything is accessed via a single &#8216;Google account&#8217; which can either be linked to GMail or if you already have an email address, it can use that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewtaylor.me.uk/blog/2006/07/the-wonders-of-google-apps/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Delicious Links</title>
		<link>http://www.andrewtaylor.me.uk/blog/2006/02/delicious-links/</link>
		<comments>http://www.andrewtaylor.me.uk/blog/2006/02/delicious-links/#comments</comments>
		<pubDate>Fri, 10 Feb 2006 12:22:15 +0000</pubDate>
		<dc:creator>ataylor</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.andrewtaylor.me.uk/dev/?p=56</guid>
		<description><![CDATA[Have finally got round to using del.icio.us for my central bookmarks repository. http://del.icio.us/heypresto]]></description>
			<content:encoded><![CDATA[<p>Have finally got round to using del.icio.us for my central bookmarks repository.</p>
<p><a href="http://del.icio.us/heypresto" target="_blank">http://del.icio.us/heypresto</a></p>
<p><script src="http://del.icio.us/feeds/js/tags/heypresto?size=13-31;color=0000CC-FF4000;title=" type="text/javascript"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andrewtaylor.me.uk/blog/2006/02/delicious-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

