<?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 dingobytes</title>
	<atom:link href="http://www.dingobytes.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dingobytes.com</link>
	<description>what your nephew can't make you</description>
	<lastBuildDate>Wed, 03 Feb 2010 18:27:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Show Message 1.0- jQuery Plugin for displaying messages by Tweets that mention dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for displaying messages -- Topsy.com</title>
		<link>http://www.dingobytes.com/tutorial/show-message-1-0-jquery-plugin-for-displaying-messages/comment-page-1#comment-4445</link>
		<dc:creator>Tweets that mention dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for displaying messages -- Topsy.com</dc:creator>
		<pubDate>Wed, 03 Feb 2010 18:27:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/?p=90#comment-4445</guid>
		<description>[...] This post was mentioned on Twitter by Angela Young, Larry King. Larry King said: dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for ... http://bit.ly/aQpJX3 #jQuery [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Angela Young, Larry King. Larry King said: dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for &#8230; <a href="http://bit.ly/aQpJX3" rel="nofollow">http://bit.ly/aQpJX3</a> #jQuery [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Show Message 1.0- jQuery Plugin for displaying messages by dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for &#8230; &#187; KHMER855.COM</title>
		<link>http://www.dingobytes.com/tutorial/show-message-1-0-jquery-plugin-for-displaying-messages/comment-page-1#comment-4417</link>
		<dc:creator>dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for &#8230; &#187; KHMER855.COM</dc:creator>
		<pubDate>Mon, 01 Feb 2010 06:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/?p=90#comment-4417</guid>
		<description>[...] Go here to read the rest: dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Go here to read the rest: dingobytes » Blog Archive » Show Message 1.0- jQuery Plugin for &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dealing with sendmail errors by software developers</title>
		<link>http://www.dingobytes.com/linux/dealing-with-sendmail-errors/comment-page-1#comment-3643</link>
		<dc:creator>software developers</dc:creator>
		<pubDate>Thu, 29 Oct 2009 12:12:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/?p=9#comment-3643</guid>
		<description>Humm... interesting,

Some great advice, 

Thanks for sharing,

Keep up the good work</description>
		<content:encoded><![CDATA[<p>Humm&#8230; interesting,</p>
<p>Some great advice, </p>
<p>Thanks for sharing,</p>
<p>Keep up the good work</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on showMessage by dingobytes &#187; Blog Archive &#187; jQuery username check</title>
		<link>http://www.dingobytes.com/tutorial/showmessage/comment-page-1#comment-3573</link>
		<dc:creator>dingobytes &#187; Blog Archive &#187; jQuery username check</dc:creator>
		<pubDate>Tue, 29 Sep 2009 19:06:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/?p=21#comment-3573</guid>
		<description>[...] I am not going to go into a lot of detail about this as I have already done similar tutorials (see here). In a nutshell, we are just making sure the form is filled out and using AJAX to tell us if we [...]</description>
		<content:encoded><![CDATA[<p>[...] I am not going to go into a lot of detail about this as I have already done similar tutorials (see here). In a nutshell, we are just making sure the form is filled out and using AJAX to tell us if we [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coldfusion Image Rotator by admin</title>
		<link>http://www.dingobytes.com/coldfusion/coldfusion-image-rotator/comment-page-1#comment-1786</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Mon, 22 Jun 2009 18:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/2008/03/03/coldfusion-image-rotator/#comment-1786</guid>
		<description>Had to check the ColdFusion documentation before I responded but the documentation confirmed what I thought. You need to use the absolute path for the CFDirectory tag.

That said, I might have a possible solution for you. I was using two different operating systems for my developement and host. I kept a variable in the Application.cfm that defined the absolute path to the web root. I had one application file for the development environment and one for the live environment. The development.Application.cfm file had &lt;cfset basePath = &quot;/var/www/html&quot; /&gt; while the live.Application.cfm had &lt;cfset basePath = &quot;/home/mySite/public_html&quot; /&gt;

Using this basePath variable you can save your absolute path using something like this:

&lt;cfset folder = &quot;#basePath#/path/to/my/images/&quot; /&gt;
&lt;cfdirectory directory=&quot;#folder#&quot; action=&quot;list&quot; name=&quot;filelisting&quot; /&gt;

Hope that works for you.</description>
		<content:encoded><![CDATA[<p>Had to check the ColdFusion documentation before I responded but the documentation confirmed what I thought. You need to use the absolute path for the CFDirectory tag.</p>
<p>That said, I might have a possible solution for you. I was using two different operating systems for my developement and host. I kept a variable in the Application.cfm that defined the absolute path to the web root. I had one application file for the development environment and one for the live environment. The development.Application.cfm file had &lt;cfset basePath = &#8220;/var/www/html&#8221; /&gt; while the live.Application.cfm had &lt;cfset basePath = &#8220;/home/mySite/public_html&#8221; /&gt;</p>
<p>Using this basePath variable you can save your absolute path using something like this:</p>
<p>&lt;cfset folder = &#8220;#basePath#/path/to/my/images/&#8221; /&gt;<br />
&lt;cfdirectory directory=&#8221;#folder#&#8221; action=&#8221;list&#8221; name=&#8221;filelisting&#8221; /&gt;</p>
<p>Hope that works for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Coldfusion Image Rotator by Brian</title>
		<link>http://www.dingobytes.com/coldfusion/coldfusion-image-rotator/comment-page-1#comment-1782</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Mon, 22 Jun 2009 16:40:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.dingobytes.com/2008/03/03/coldfusion-image-rotator/#comment-1782</guid>
		<description>Hey Andrew,

That&#039;s a very nice script - just what I was looking for this morning. Apparently, I suck at Flash programming and your script came as the savior. Just one question though:

Since my code resides on two machines - my own computer where all the code is developed and the server where the website is actually hosted, would it not be easier to set the variable folder using a relative path rather than an absolute path??

I tried using a relative path for that variable and it doesn&#039;t seem to work. What am I missing here??

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Hey Andrew,</p>
<p>That&#8217;s a very nice script &#8211; just what I was looking for this morning. Apparently, I suck at Flash programming and your script came as the savior. Just one question though:</p>
<p>Since my code resides on two machines &#8211; my own computer where all the code is developed and the server where the website is actually hosted, would it not be easier to set the variable folder using a relative path rather than an absolute path??</p>
<p>I tried using a relative path for that variable and it doesn&#8217;t seem to work. What am I missing here??</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
