<?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>Cameron Priem &#187; Helpful Tips</title>
	<atom:link href="http://cameronpriem.com/category/helpful-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://cameronpriem.com</link>
	<description>Professional Software Development</description>
	<lastBuildDate>Tue, 11 Aug 2009 12:12:06 +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>Forward mail from gmail account to multiple email addresses</title>
		<link>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/</link>
		<comments>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/#comments</comments>
		<pubDate>Wed, 28 Jan 2009 10:49:13 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Helpful Tips]]></category>
		<category><![CDATA[I heart google]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[gmail]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=26</guid>
		<description><![CDATA[In setting up a new web site, broomshead.com, I wanted to be able to forward an email to multiple email addresses. So after a bit of research on the net I found out you could do this by creating filters: &#8230; <a href="http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In setting up a new web site, <a href="http://www.broomshead.com" target="_blank">broomshead.com</a>, I wanted to be able to forward an email to multiple email addresses. So after a bit of research on the net I found out you could do this by creating filters:</p>
<ul>
<li>Login to Gmail</li>
<li>Click on settings (top right)</li>
<li>Click Filters</li>
<li>Click &#8220;Create new filter&#8221;</li>
<li>In the &#8220;To&#8221; field enter your gmail email address</li>
<li>Click Next Step</li>
<li>Tick &#8220;Skip the inbox&#8221; if you want the email archived</li>
<li>Tick &#8220;forward it to&#8221; and enter one of the email addresses you want to forward your mail to</li>
<li>Click Update Filter</li>
</ul>
<p>Repeat this process for each individual email address you want to forward to.  Pretty simple huh?</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2009/01/forward-mail-from-gmail-account-to-multiple-email-addresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Classic ASP session timeout / loss</title>
		<link>http://cameronpriem.com/2008/10/classic-asp-session-timeout-loss/</link>
		<comments>http://cameronpriem.com/2008/10/classic-asp-session-timeout-loss/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 13:30:25 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[ASP]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[Helpful Tips]]></category>
		<category><![CDATA[classic asp session timeout]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=10</guid>
		<description><![CDATA[Session timeout&#8230; this is the bain of my existence in our classic ASP site.  We set it in global.asa, we set it in IIS 6 (properties &#62; home directory &#62; configuration &#62; options tab &#8220;enable session state&#8221;)  we setup the &#8230; <a href="http://cameronpriem.com/2008/10/classic-asp-session-timeout-loss/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Session timeout&#8230; this is the bain of my existence in our classic ASP site.  We set it in global.asa, we set it in IIS 6 (properties &gt; home directory &gt; configuration &gt; options tab &#8220;enable session state&#8221;)  we setup the application pool to only recycle when we want it to.  But still every now and again we have problems.  Maybe the application pool is reaching its memory limit and recycling anyways?</p>
<p>One problem on a clients server took me ages to figure out.  We had initially setup IIS 6 from our stock standard documented configuration, no surprises, no bells &amp; whistles, just stock standard.  A few months later we started receiving notices that users were being &#8220;kicked off&#8221; the system and directed to the log in page.  Session time out seemed to be the issue here.</p>
<p>So I checked the usual suspects that I wrote above, and these were all set fine.  I could not actually reproduce this issue when using my local broswer on the site.  After investigating the user&#8217;s computer I thought it may be something blocking the asp cookie, or removing it.  But this was a dead end.  I eventually gave up and focussed my efforts back on the server.  But i did end up recording my longest showmypc.com session of 2hours +, hi-5&#8242;s all round!  The problem ended up being with the application pool, the sys admins had set the multiple process option in the application pool.</p>
<p><strong>DON&#8217;T setup classic ASP sites to use a web garden ( &gt; 1 worker processes in the application pool). </strong> If you do this, more than one instance of w3wp.exe is started for a given Application Pool. This means two HTTP requests for a given user using the same application within that application pool may be directed to any of the w3wp.exe instances running that application and session data is not shared between w3wp.exe instances because they are separate processes. In the sys admin&#8217;s defence they were trying to improve the performance and scalability of the site.</p>
<p>The purpose for this post is to help point other people in the right direction to set what we have setup, and also to get feedback from other developers out there. Got a suggestion for me? Let me know by leaving a comment!</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2008/10/classic-asp-session-timeout-loss/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to turn off Gtalk in Gmail</title>
		<link>http://cameronpriem.com/2008/09/hello-world/</link>
		<comments>http://cameronpriem.com/2008/09/hello-world/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 02:53:13 +0000</pubDate>
		<dc:creator>Campo</dc:creator>
				<category><![CDATA[Helpful Tips]]></category>
		<category><![CDATA[I heart google]]></category>
		<category><![CDATA[google gmail tips]]></category>

		<guid isPermaLink="false">http://cameronpriem.com/?p=1</guid>
		<description><![CDATA[I was logged onto my Gmail the other day and one after the other, pop-ups of conversations kept appearing.  I&#8217;m not saying I&#8217;m the world&#8217;s most popular guy, it was mostly work related.  So on a Saturday morning my dreams &#8230; <a href="http://cameronpriem.com/2008/09/hello-world/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I was logged onto my Gmail the other day and one after the other, pop-ups of conversations kept appearing.  I&#8217;m not saying I&#8217;m the <a href=" http://gregcookland.com/journal/uploaded_images/picHasselHoff-747711.jpg" target="_blank">world&#8217;s most popular guy</a>, it was mostly work related.  So on a Saturday morning my dreams of having a relaxing work free day was <a href="http://www.youtube.com/watch?v=c4Wm4DXkcj0" target="_blank">smited down like some classic Hollywood battle scene</a>.</p>
<p>I madly scattered around my gmail page and I could not find anywhere in settings to turn off chat while in gmail.  After ironically googling for a way to turn this off and going through endless posts, I found that there is a link right at the bottom of Gmail, &#8220;turn off chat&#8221;.  I hope this can help someone else!</p>
<p>To turn off your G-talk chat in Gmail:<br />
-  Log onto gmail<br />
-  Scroll to bottom and click the link &#8220;turn off chat&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://cameronpriem.com/2008/09/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

