<?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 dragffy.com</title>
	<atom:link href="http://dragffy.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://dragffy.com/blog</link>
	<description>The development, documentation, and blogging domain of Gabriel Dragffy.</description>
	<lastBuildDate>Mon, 11 Jan 2010 20:06:34 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on An alternative img() helper function for CodeIgniter by Jeremy</title>
		<link>http://dragffy.com/blog/posts/an-alternative-img-helper-function-for-codeigniter/comment-page-1#comment-3596</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Mon, 11 Jan 2010 20:06:34 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=103#comment-3596</guid>
		<description>Golden, this is how img() should&#039;ve been written to begin with. Great work, thank you.</description>
		<content:encoded><![CDATA[<p>Golden, this is how img() should&#8217;ve been written to begin with. Great work, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails Production Environment Using Mongrel Cluster, Apache 2.2 mod_proxy, and Capistrano on Ubuntu Gutsy by Rup</title>
		<link>http://dragffy.com/blog/posts/rails-production-environment-using-mongrel-cluster-apache-22-mod_proxy-and-capistrano-on-ubuntu-gutsy/comment-page-1#comment-3594</link>
		<dc:creator>Rup</dc:creator>
		<pubDate>Thu, 07 Jan 2010 00:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/posts/rails-production-environment-using-mongrel-cluster-apache-22-mod_proxy-and-capistrano-on-ubuntu-gutsy#comment-3594</guid>
		<description>I have a problem of setting the rails environment to production after deployment to the server. By default the application runs in development mode after deployment. I want to set the mode to production but when I do that by changing the environment.rb, the application gets message 500.
Is there any way to set the environment to production after deployment to server?</description>
		<content:encoded><![CDATA[<p>I have a problem of setting the rails environment to production after deployment to the server. By default the application runs in development mode after deployment. I want to set the mode to production but when I do that by changing the environment.rb, the application gets message 500.<br />
Is there any way to set the environment to production after deployment to server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Inserting large blobs in MySQL by Rich Duzenbury</title>
		<link>http://dragffy.com/blog/posts/inserting-large-blobs-in-mysql/comment-page-1#comment-3590</link>
		<dc:creator>Rich Duzenbury</dc:creator>
		<pubDate>Wed, 04 Nov 2009 16:01:34 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=77#comment-3590</guid>
		<description>Or, create a separate table and split large documents into several smaller ones.  Our app has the concept of documents and pages.  As in real life, the documents table owns all of the rows in the pages table for one document.  We split each document into pages, and store each page in a blob. In our case, the document is a multipage tiff file.  A 10 page tiff file becomes one document record and 10 page records, with each page stored in a blob in the pages table.  The client app splits the documents up for storing and reassembles them for viewing.  Something like 20 lines of code to store and 20 lines of code to reassemble. 

If your blobs don&#039;t lend themselves to pages like a multi page tiff file, simply declare a page to be a certain size, say 1MB.</description>
		<content:encoded><![CDATA[<p>Or, create a separate table and split large documents into several smaller ones.  Our app has the concept of documents and pages.  As in real life, the documents table owns all of the rows in the pages table for one document.  We split each document into pages, and store each page in a blob. In our case, the document is a multipage tiff file.  A 10 page tiff file becomes one document record and 10 page records, with each page stored in a blob in the pages table.  The client app splits the documents up for storing and reassembles them for viewing.  Something like 20 lines of code to store and 20 lines of code to reassemble. </p>
<p>If your blobs don&#8217;t lend themselves to pages like a multi page tiff file, simply declare a page to be a certain size, say 1MB.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter 1.7: The URI you submitted has disallowed characters. by Gabe</title>
		<link>http://dragffy.com/blog/posts/codeigniter-17-the-uri-you-submitted-has-disallowed-characters/comment-page-1#comment-3559</link>
		<dc:creator>Gabe</dc:creator>
		<pubDate>Fri, 11 Sep 2009 08:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=134#comment-3559</guid>
		<description>You can&#039;t just be spontaneously XSSed, you would have to manipulate and preserve the data somehow, then redisplay it. I hope nobody relies on the URI allowed character string only, before saving to a database, all input should be thoroughly validated using your own methods and/or the included validation class.

I normally only pass numeric IDs around in a codeigniter URI, so a preg_replace() removing all non-numeric characters is a good start...</description>
		<content:encoded><![CDATA[<p>You can&#8217;t just be spontaneously XSSed, you would have to manipulate and preserve the data somehow, then redisplay it. I hope nobody relies on the URI allowed character string only, before saving to a database, all input should be thoroughly validated using your own methods and/or the included validation class.</p>
<p>I normally only pass numeric IDs around in a codeigniter URI, so a preg_replace() removing all non-numeric characters is a good start&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter 1.7: The URI you submitted has disallowed characters. by Saurabh Sahni</title>
		<link>http://dragffy.com/blog/posts/codeigniter-17-the-uri-you-submitted-has-disallowed-characters/comment-page-1#comment-3558</link>
		<dc:creator>Saurabh Sahni</dc:creator>
		<pubDate>Thu, 10 Sep 2009 17:56:18 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=134#comment-3558</guid>
		<description>This mean you can be easily XSSed, its equal to allowing everything in the input!</description>
		<content:encoded><![CDATA[<p>This mean you can be easily XSSed, its equal to allowing everything in the input!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Making CodeIgniter&#8217;s Profiler AJAX compatible by 9 Ways to Integrate Ajax with CodeIgniter &#124; Choose Daily</title>
		<link>http://dragffy.com/blog/posts/making-codeigniters-profiler-ajax-compatible/comment-page-1#comment-3556</link>
		<dc:creator>9 Ways to Integrate Ajax with CodeIgniter &#124; Choose Daily</dc:creator>
		<pubDate>Tue, 01 Sep 2009 13:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=80#comment-3556</guid>
		<description>[...] Making CodeIgniter&#8217;s Profiler Ajax Compatible Modern web applications almost all make use of AJAX to enhance their user appeal. However, AJAX can be hard to debug, especially when all the traditional tools do little to help. When doing standard PHP coding CodeIgniter (CI) offers a profiler which will be appended to the bottom of generated pages. This article will show you how to make CodeIgniter&#8217;s profiler Ajax compatible. [...]</description>
		<content:encoded><![CDATA[<p>[...] Making CodeIgniter&#8217;s Profiler Ajax Compatible Modern web applications almost all make use of AJAX to enhance their user appeal. However, AJAX can be hard to debug, especially when all the traditional tools do little to help. When doing standard PHP coding CodeIgniter (CI) offers a profiler which will be appended to the bottom of generated pages. This article will show you how to make CodeIgniter&#8217;s profiler Ajax compatible. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails Production Environment Using Mongrel Cluster, Apache 2.2 mod_proxy, and Capistrano on Ubuntu Gutsy by Sophy</title>
		<link>http://dragffy.com/blog/posts/rails-production-environment-using-mongrel-cluster-apache-22-mod_proxy-and-capistrano-on-ubuntu-gutsy/comment-page-1#comment-3555</link>
		<dc:creator>Sophy</dc:creator>
		<pubDate>Thu, 27 Aug 2009 08:20:41 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/posts/rails-production-environment-using-mongrel-cluster-apache-22-mod_proxy-and-capistrano-on-ubuntu-gutsy#comment-3555</guid>
		<description>Fantastic tutorial! It works great apart from one point. 
a2ensite railsapp doesn&#039;t work for me. I need to add .conf to railsapp. (a2ensite railsapp.conf)

Anyway thank you very much for this blog.

Cheers,</description>
		<content:encoded><![CDATA[<p>Fantastic tutorial! It works great apart from one point.<br />
a2ensite railsapp doesn&#8217;t work for me. I need to add .conf to railsapp. (a2ensite railsapp.conf)</p>
<p>Anyway thank you very much for this blog.</p>
<p>Cheers,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ubuntu 9.04 Jaunty Jackalope Gnome Session Problems by Stefan</title>
		<link>http://dragffy.com/blog/posts/ubuntu-904-jaunty-jackalope-gnome-session-problems/comment-page-1#comment-3553</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Sun, 23 Aug 2009 17:50:39 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=112#comment-3553</guid>
		<description>Hi, many thanks for your great advice. You saved me a lot of time on reinstalling Jaunty Jackalope.... 
I posted your link to your blog on:
http://ubuntu-utah.ubuntuforums.org/forumdisplay.php?f=329


Stefan</description>
		<content:encoded><![CDATA[<p>Hi, many thanks for your great advice. You saved me a lot of time on reinstalling Jaunty Jackalope&#8230;.<br />
I posted your link to your blog on:<br />
<a href="http://ubuntu-utah.ubuntuforums.org/forumdisplay.php?f=329" rel="nofollow">http://ubuntu-utah.ubuntuforums.org/forumdisplay.php?f=329</a></p>
<p>Stefan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing and configuring Netatalk AFP on FreeBSD by Brodey Dover</title>
		<link>http://dragffy.com/blog/posts/installing-and-configuring-netatalk-afp-on-freebsd/comment-page-1#comment-3552</link>
		<dc:creator>Brodey Dover</dc:creator>
		<pubDate>Fri, 21 Aug 2009 21:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/articles/installing-and-configuring-netatalk-afp-on-freebsd#comment-3552</guid>
		<description>It appears that compiling NETATALK into  the kernel is still necessary, even for PCBSD 7.1.1. 

If this is not true, I will post back with an update.</description>
		<content:encoded><![CDATA[<p>It appears that compiling NETATALK into  the kernel is still necessary, even for PCBSD 7.1.1. </p>
<p>If this is not true, I will post back with an update.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CodeIgniter 1.7: The URI you submitted has disallowed characters. by Mayank Jain</title>
		<link>http://dragffy.com/blog/posts/codeigniter-17-the-uri-you-submitted-has-disallowed-characters/comment-page-1#comment-3551</link>
		<dc:creator>Mayank Jain</dc:creator>
		<pubDate>Tue, 18 Aug 2009 18:42:55 +0000</pubDate>
		<guid isPermaLink="false">http://dragffy.com/blog/?p=134#comment-3551</guid>
		<description>This solved my problem http://codeigniter.com/forums/viewthread/125550/#623818</description>
		<content:encoded><![CDATA[<p>This solved my problem <a href="http://codeigniter.com/forums/viewthread/125550/#623818" rel="nofollow">http://codeigniter.com/forums/viewthread/125550/#623818</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
