<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Casey A. McLaughlin</title>
	<atom:link href="http://www.caseymclaughlin.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.caseymclaughlin.com</link>
	<description>Online Portfolio</description>
	<lastBuildDate>Tue, 08 Nov 2011 11:02:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on How To Use SSH Tunnels with HeidiSQL and Plink by David</title>
		<link>http://www.caseymclaughlin.com/2010/11/how-to-use-ssh-tunnels-with-heidisql-and-plink/comment-page-1/#comment-3371</link>
		<dc:creator>David</dc:creator>
		<pubDate>Tue, 08 Nov 2011 11:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=259#comment-3371</guid>
		<description>Thanks for this.. I was getting crazy trying to figure out why didn&#039;t connect.</description>
		<content:encoded><![CDATA[<p>Thanks for this.. I was getting crazy trying to figure out why didn&#8217;t connect.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setup a local configuration file in Codeigniter by Jerico</title>
		<link>http://www.caseymclaughlin.com/2011/04/setup-a-local-configuration-file-in-codeigniter/comment-page-1/#comment-3191</link>
		<dc:creator>Jerico</dc:creator>
		<pubDate>Fri, 21 Oct 2011 02:54:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=316#comment-3191</guid>
		<description>Great read, thanks!</description>
		<content:encoded><![CDATA[<p>Great read, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command-Line Fridays by McLaughlin Casey</title>
		<link>http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/comment-page-1/#comment-1780</link>
		<dc:creator>McLaughlin Casey</dc:creator>
		<pubDate>Mon, 23 May 2011 15:42:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/#comment-1780</guid>
		<description>Found these recently: http://kkovacs.eu/cool-but-obscure-unix-tools</description>
		<content:encoded><![CDATA[<p>Found these recently: <a href="http://kkovacs.eu/cool-but-obscure-unix-tools" rel="nofollow">http://kkovacs.eu/cool-but-obscure-unix-tools</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setup a local configuration file in Codeigniter by Ivan kristianto</title>
		<link>http://www.caseymclaughlin.com/2011/04/setup-a-local-configuration-file-in-codeigniter/comment-page-1/#comment-1727</link>
		<dc:creator>Ivan kristianto</dc:creator>
		<pubDate>Mon, 16 May 2011 06:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=316#comment-1727</guid>
		<description>You have a nice technique up there. But i have another solution and i don&#039;t know if it is better than your solution.
I&#039;m using &quot;ENV&quot; constant which i delcared in constants.php.
ENV value can be local, dev, qa and live.
I develop a simple script to switch between them (i put it in constants.php), 
if my SERVER_NAME contain localhost, then ENV=&#039;local&#039;, if SERVER_NAME contain development.* then ENV=&#039;dev&#039; and so on.

And in my database setting have it like this:
.....
$db[&#039;local&#039;][&#039;hostname&#039;] = &#039;localhost&#039;;
$db[&#039;local&#039;][&#039;username&#039;] = &#039;root&#039;;
$db[&#039;local&#039;][&#039;password&#039;] = &#039;&#039;;
$db[&#039;local&#039;][&#039;database&#039;] = &#039;mydb&#039;;
$db[&#039;local&#039;][&#039;dbdriver&#039;] = &#039;mysql&#039;;
......
$db[&#039;dev&#039;][&#039;hostname&#039;] = &#039;localhost&#039;;
$db[&#039;dev&#039;][&#039;username&#039;] = &#039;root&#039;;
$db[&#039;dev&#039;][&#039;password&#039;] = &#039;&#039;;
$db[&#039;dev&#039;][&#039;database&#039;] = &#039;&#039;;
$db[&#039;dev&#039;][&#039;dbdriver&#039;] = &#039;mysql&#039;;
............ so on ......

so when i move my script to another host it will automatically detect the environment and load the settings for me. 

Well i&#039;m just a begginner in CodeIgniter and i love to read your blog about CI to improve my skill.

Thanks

Ivan</description>
		<content:encoded><![CDATA[<p>You have a nice technique up there. But i have another solution and i don&#8217;t know if it is better than your solution.<br />
I&#8217;m using &#8220;ENV&#8221; constant which i delcared in constants.php.<br />
ENV value can be local, dev, qa and live.<br />
I develop a simple script to switch between them (i put it in constants.php),<br />
if my SERVER_NAME contain localhost, then ENV=&#8217;local&#8217;, if SERVER_NAME contain development.* then ENV=&#8217;dev&#8217; and so on.</p>
<p>And in my database setting have it like this:<br />
&#8230;..<br />
$db['local']['hostname'] = &#8216;localhost&#8217;;<br />
$db['local']['username'] = &#8216;root&#8217;;<br />
$db['local']['password'] = &#8221;;<br />
$db['local']['database'] = &#8216;mydb&#8217;;<br />
$db['local']['dbdriver'] = &#8216;mysql&#8217;;<br />
&#8230;&#8230;<br />
$db['dev']['hostname'] = &#8216;localhost&#8217;;<br />
$db['dev']['username'] = &#8216;root&#8217;;<br />
$db['dev']['password'] = &#8221;;<br />
$db['dev']['database'] = &#8221;;<br />
$db['dev']['dbdriver'] = &#8216;mysql&#8217;;<br />
&#8230;&#8230;&#8230;&#8230; so on &#8230;&#8230;</p>
<p>so when i move my script to another host it will automatically detect the environment and load the settings for me. </p>
<p>Well i&#8217;m just a begginner in CodeIgniter and i love to read your blog about CI to improve my skill.</p>
<p>Thanks</p>
<p>Ivan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command-Line Fridays by McLaughlin Casey</title>
		<link>http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/comment-page-1/#comment-1463</link>
		<dc:creator>McLaughlin Casey</dc:creator>
		<pubDate>Mon, 04 Apr 2011 21:54:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/#comment-1463</guid>
		<description>Poor NANO, the underappreciated, often mocked, but highly usable sister of VIM.</description>
		<content:encoded><![CDATA[<p>Poor NANO, the underappreciated, often mocked, but highly usable sister of VIM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Command-Line Fridays by Alexander Ane</title>
		<link>http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/comment-page-1/#comment-1461</link>
		<dc:creator>Alexander Ane</dc:creator>
		<pubDate>Mon, 04 Apr 2011 20:47:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/2011/04/command-line-fridays-4/#comment-1461</guid>
		<description>Hooray VIM, but what about Nano? Not as popular as the rest but still a contender. Very cool post.</description>
		<content:encoded><![CDATA[<p>Hooray VIM, but what about Nano? Not as popular as the rest but still a contender. Very cool post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Biting the Distributed Development Bullet by mahalie</title>
		<link>http://www.caseymclaughlin.com/2009/12/make-codeigniter-svn-friendly/comment-page-1/#comment-1217</link>
		<dc:creator>mahalie</dc:creator>
		<pubDate>Wed, 02 Mar 2011 20:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=129#comment-1217</guid>
		<description>Thanks a lot for this article. For various reasons I&#039;m going with Git but I&#039;m new to source control in general and this helped me understand and explain (to my coworkers) the system much better.</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this article. For various reasons I&#8217;m going with Git but I&#8217;m new to source control in general and this helped me understand and explain (to my coworkers) the system much better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Use SSH Tunnels with HeidiSQL and Plink by xerxes</title>
		<link>http://www.caseymclaughlin.com/2010/11/how-to-use-ssh-tunnels-with-heidisql-and-plink/comment-page-1/#comment-1198</link>
		<dc:creator>xerxes</dc:creator>
		<pubDate>Sat, 26 Feb 2011 13:08:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=259#comment-1198</guid>
		<description>Apart from allowing direct remote connections for MySQL being considered a security concern, is there any practical difference between connecting through SSH and SSL, assuming the server version you&#039;re using is SSL-enabled?</description>
		<content:encoded><![CDATA[<p>Apart from allowing direct remote connections for MySQL being considered a security concern, is there any practical difference between connecting through SSH and SSL, assuming the server version you&#8217;re using is SSL-enabled?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Teaching PHP: Course Curriculum by Shawana Tellis</title>
		<link>http://www.caseymclaughlin.com/2009/08/teaching-php-course-curriculum/comment-page-1/#comment-1191</link>
		<dc:creator>Shawana Tellis</dc:creator>
		<pubDate>Thu, 24 Feb 2011 18:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=108#comment-1191</guid>
		<description>Nice post. I was checking constantly this blog and I am impressed! Very useful info particularly the last part :) I care for such information a lot. I was looking for this particular information for a long time. Thank you and good luck.</description>
		<content:encoded><![CDATA[<p>Nice post. I was checking constantly this blog and I am impressed! Very useful info particularly the last part <img src='http://www.caseymclaughlin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I care for such information a lot. I was looking for this particular information for a long time. Thank you and good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How To Use SSH Tunnels with HeidiSQL and Plink by Juan Treminio</title>
		<link>http://www.caseymclaughlin.com/2010/11/how-to-use-ssh-tunnels-with-heidisql-and-plink/comment-page-1/#comment-1188</link>
		<dc:creator>Juan Treminio</dc:creator>
		<pubDate>Wed, 23 Feb 2011 21:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.caseymclaughlin.com/?p=259#comment-1188</guid>
		<description>Thanks for the information - been looking for an answer to this problem for over an hour and you solved it immediately.</description>
		<content:encoded><![CDATA[<p>Thanks for the information &#8211; been looking for an answer to this problem for over an hour and you solved it immediately.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

