<?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>Techie.org &#187; Programming</title>
	<atom:link href="http://techie.org/Blog/category/techiestuff/programming/feed/" rel="self" type="application/rss+xml" />
	<link>http://techie.org/Blog</link>
	<description>Thoughts from Jaysam Thanki</description>
	<lastBuildDate>Fri, 03 Sep 2010 23:36:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Quick way to enable Visual Studio Permissions using Caspol.exe</title>
		<link>http://techie.org/Blog/2008/06/30/quick-way-to-enable-visual-studio-permissions-using-caspolexe/</link>
		<comments>http://techie.org/Blog/2008/06/30/quick-way-to-enable-visual-studio-permissions-using-caspolexe/#comments</comments>
		<pubDate>Mon, 30 Jun 2008 21:38:06 +0000</pubDate>
		<dc:creator>jthanki</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[caspol]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://techie.org/Blog/?p=82</guid>
		<description><![CDATA[I&#8217;ve ran into this a few times, where i&#8217;ve started building console/windows apps in Visual Studio 2005/2008 and the development machine i&#8217;m running on, doesnt have permissions to execute programs from a network share and access (for example) the registry or a sql server. The solution is to tell .net that its ok to let [...]]]></description>
		<wfw:commentRss>http://techie.org/Blog/2008/06/30/quick-way-to-enable-visual-studio-permissions-using-caspolexe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Redirect Permanently with PHP</title>
		<link>http://techie.org/Blog/2007/09/24/how-to-redirect-permanently-with-php/</link>
		<comments>http://techie.org/Blog/2007/09/24/how-to-redirect-permanently-with-php/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 00:08:46 +0000</pubDate>
		<dc:creator>jthanki</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://techie.org/Blog/2007/09/24/how-to-redirect-permanently-with-php/</guid>
		<description><![CDATA[Hi,
To do a permanent redirection using PHP, for whatever SEO needs you may have, the code is
&#60;?php
//Standard 404.php file
//Looking for my tnmailserver?
if(strpos($_SERVER["REQUEST_URI"], &#8220;/Projects/TNMailServer-Full.aspx&#8221;) !== FALSE)
{
header(&#8220;HTTP/1.1 301 Moved Permanently&#8221;);
header(&#8220;Location: /TNMailServer&#8221;);
exit(0);
}
?&#62;
The exit is importantly, especially if you still have other code below this snippet performing other checks, or showing the standard 404 page.
]]></description>
		<wfw:commentRss>http://techie.org/Blog/2007/09/24/how-to-redirect-permanently-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
