<?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 Kevin Dubois</title>
	<atom:link href="http://kevindubois.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://kevindubois.com/blog</link>
	<description>A LAMP consultant in the greater Salt Lake City Area</description>
	<lastBuildDate>Mon, 23 Nov 2009 21:56:11 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Rotating images using jQuery Ajax by Kevin Dubois</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-441</link>
		<dc:creator>Kevin Dubois</dc:creator>
		<pubDate>Mon, 23 Nov 2009 21:56:11 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-441</guid>
		<description>You may need to give me more information but it sounds like you may need to set your variables in the php and/or the smarty template file.  Does that help?</description>
		<content:encoded><![CDATA[<p>You may need to give me more information but it sounds like you may need to set your variables in the php and/or the smarty template file.  Does that help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by julia</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-440</link>
		<dc:creator>julia</dc:creator>
		<pubDate>Sat, 21 Nov 2009 19:56:03 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-440</guid>
		<description>Hi Kevin and thank you for this great script :)

i have some hard time with it. 
i&#039;m trying to use it in a CMS MS website. 

i did everything well (i thought), i think all my url are good.. 
but i have all those errors :

string(122) &quot;Smarty error: [in tpl_head:24 line 18]: syntax error: unrecognized tag: loadImage(); (Smarty_Compiler.class.php, line 446)&quot; string(111) &quot;Smarty error: [in tpl_head:24 line 18]: syntax error: unrecognized tag &#039;&#039; (Smarty_Compiler.class.php, line 590)&quot; string(436) &quot;Smarty error: [in tpl_head:24 line 20]: syntax error: unrecognized tag: // getimage.php is the php file that gets my images from the images folder $.post(&quot;getimage.php&quot;, function(data){ if(data.length &gt;0) { // evaluate the string to a group of objects myObject = eval(data); // create a slideshow with the image objects and drop them in the placeholder $(&#039;#imgcontainer&#039;).crossSlide({sleep:5,fade:2 (Smarty_Compiler.class.php, line 446)&quot; string(111) &quot;Smarty error: [in tpl_head:24 line 20]: syntax error: unrecognized tag &#039;&#039; (Smarty_Compiler.class.php, line 590)&quot;

a LOT right? if you have any idea where i can search to fix it. 
Thank you</description>
		<content:encoded><![CDATA[<p>Hi Kevin and thank you for this great script <img src='http://kevindubois.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>i have some hard time with it.<br />
i&#039;m trying to use it in a CMS MS website. </p>
<p>i did everything well (i thought), i think all my url are good..<br />
but i have all those errors :</p>
<p>string(122) &#034;Smarty error: [in tpl_head:24 line 18]: syntax error: unrecognized tag: loadImage(); (Smarty_Compiler.class.php, line 446)&#034; string(111) &#034;Smarty error: [in tpl_head:24 line 18]: syntax error: unrecognized tag &#034; (Smarty_Compiler.class.php, line 590)&#034; string(436) &#034;Smarty error: [in tpl_head:24 line 20]: syntax error: unrecognized tag: // getimage.php is the php file that gets my images from the images folder $.post(&#034;getimage.php&#034;, function(data){ if(data.length &gt;0) { // evaluate the string to a group of objects myObject = eval(data); // create a slideshow with the image objects and drop them in the placeholder $(&#039;#imgcontainer&#039;).crossSlide({sleep:5,fade:2 (Smarty_Compiler.class.php, line 446)&#034; string(111) &#034;Smarty error: [in tpl_head:24 line 20]: syntax error: unrecognized tag &#034; (Smarty_Compiler.class.php, line 590)&#034;</p>
<p>a LOT right? if you have any idea where i can search to fix it.<br />
Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by Kevin Dubois</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-436</link>
		<dc:creator>Kevin Dubois</dc:creator>
		<pubDate>Thu, 05 Nov 2009 17:49:13 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-436</guid>
		<description>Austin, resizing the images is kind of out of the scope of this article - you&#039;ll want to resize the images before you upload them to the folder.  As for filtering only image files out of the folder, you can modify the following line to look for only jpg, gif, png etc in the last 3 characters of the string: 
                if (!preg_match(&#039;/^\.+$/&#039;, $file) and preg_match(&#039;/\.(&#039;.$extensions.&#039;)$/&#039;, $file)){</description>
		<content:encoded><![CDATA[<p>Austin, resizing the images is kind of out of the scope of this article &#8211; you&#039;ll want to resize the images before you upload them to the folder.  As for filtering only image files out of the folder, you can modify the following line to look for only jpg, gif, png etc in the last 3 characters of the string:<br />
                if (!preg_match(&#039;/^\.+$/&#039;, $file) and preg_match(&#039;/\.(&#039;.$extensions.&#039;)$/&#039;, $file)){</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by Kevin Dubois</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-435</link>
		<dc:creator>Kevin Dubois</dc:creator>
		<pubDate>Thu, 05 Nov 2009 17:42:44 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-435</guid>
		<description>@Pingitzer: since we&#039;re returning a string of all image paths to ajax it would be hard to parse this.  Take a look at the other more advanced slideshow tutorial in my blog (link is at the top of this article), that will probably be more suited.</description>
		<content:encoded><![CDATA[<p>@Pingitzer: since we&#039;re returning a string of all image paths to ajax it would be hard to parse this.  Take a look at the other more advanced slideshow tutorial in my blog (link is at the top of this article), that will probably be more suited.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database driven jQuery rotating slide show with text navigation and links using the cycle plugin by Kevin Dubois</title>
		<link>http://kevindubois.com/blog/2009/07/29/database-driven-jquery-rotating-slide-show-with-text-navigation-and-links-using-the-cycle-plugin/comment-page-1/#comment-434</link>
		<dc:creator>Kevin Dubois</dc:creator>
		<pubDate>Thu, 05 Nov 2009 17:30:38 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=33#comment-434</guid>
		<description>Nadia, take a look at the website of the cycle plugin (http://malsup.com/jquery/cycle/)  that should help you find what you need (if you haven&#039;t already)</description>
		<content:encoded><![CDATA[<p>Nadia, take a look at the website of the cycle plugin (<a href="http://malsup.com/jquery/cycle/" rel="nofollow">http://malsup.com/jquery/cycle/</a>)  that should help you find what you need (if you haven&#039;t already)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by Austin</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-433</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Mon, 26 Oct 2009 19:57:25 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-433</guid>
		<description>One more question. It looks like if there are non image files in the folder that has the images, the script fails. Any way to have the script ignore non image files? Maybe just a list extensions that are valid?</description>
		<content:encoded><![CDATA[<p>One more question. It looks like if there are non image files in the folder that has the images, the script fails. Any way to have the script ignore non image files? Maybe just a list extensions that are valid?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by Austin</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-432</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Mon, 26 Oct 2009 19:35:37 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-432</guid>
		<description>This is perfect for what I need, except I need to have images resized to fit within a specific size. I can change the box size, but this just crops the images, instead of resizing. Any way to do this?</description>
		<content:encoded><![CDATA[<p>This is perfect for what I need, except I need to have images resized to fit within a specific size. I can change the box size, but this just crops the images, instead of resizing. Any way to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rotating images using jQuery Ajax by Pingitzer</title>
		<link>http://kevindubois.com/blog/2009/03/03/rotating-images-jquery-ajax/comment-page-1/#comment-431</link>
		<dc:creator>Pingitzer</dc:creator>
		<pubDate>Thu, 22 Oct 2009 11:48:43 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=13#comment-431</guid>
		<description>Hey,
Thanks for this slideshow. This is just what I have been looking for.

Just one thing:
funktion getfiles has two paramters: $folder and $extensions
What could stay in $extensions. 

I would need the read out the filename. Is it maybe posibly to read the filename out and put him on the top of the image?

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>Hey,<br />
Thanks for this slideshow. This is just what I have been looking for.</p>
<p>Just one thing:<br />
funktion getfiles has two paramters: $folder and $extensions<br />
What could stay in $extensions. </p>
<p>I would need the read out the filename. Is it maybe posibly to read the filename out and put him on the top of the image?</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database driven jQuery rotating slide show with text navigation and links using the cycle plugin by Nadia</title>
		<link>http://kevindubois.com/blog/2009/07/29/database-driven-jquery-rotating-slide-show-with-text-navigation-and-links-using-the-cycle-plugin/comment-page-1/#comment-430</link>
		<dc:creator>Nadia</dc:creator>
		<pubDate>Thu, 17 Sep 2009 05:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=33#comment-430</guid>
		<description>Hiya,
Thanks so much for this script!  It&#039;s exactly what I needed!  
I was wondering if there was a way to display 125 x 100px thumbnails instead of text links in the navigation bar?
Any help would be appreciated :)</description>
		<content:encoded><![CDATA[<p>Hiya,<br />
Thanks so much for this script!  It&#039;s exactly what I needed!<br />
I was wondering if there was a way to display 125 x 100px thumbnails instead of text links in the navigation bar?<br />
Any help would be appreciated <img src='http://kevindubois.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Database driven jQuery rotating slide show with text navigation and links using the cycle plugin by Rotating images using jQuery Ajax &#171; Kevin Dubois</title>
		<link>http://kevindubois.com/blog/2009/07/29/database-driven-jquery-rotating-slide-show-with-text-navigation-and-links-using-the-cycle-plugin/comment-page-1/#comment-55</link>
		<dc:creator>Rotating images using jQuery Ajax &#171; Kevin Dubois</dc:creator>
		<pubDate>Wed, 29 Jul 2009 18:03:28 +0000</pubDate>
		<guid isPermaLink="false">http://kevindubois.com/blog/?p=33#comment-55</guid>
		<description>[...] There are many ways to rotate images on a website.  In my case, I needed a way to rotate all images from a particular folder, and I wanted it so that I just have to dump images in the folder in order for the slideshow to pick them up.  ** NOTE: if you want a more advanced setup with database driven slides visit my post about database driven slideshows [...]</description>
		<content:encoded><![CDATA[<p>[...] There are many ways to rotate images on a website.  In my case, I needed a way to rotate all images from a particular folder, and I wanted it so that I just have to dump images in the folder in order for the slideshow to pick them up.  ** NOTE: if you want a more advanced setup with database driven slides visit my post about database driven slideshows [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
