<?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 CFchimp</title>
	<atom:link href="http://www.cfchimp.com/wordpress/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cfchimp.com/wordpress</link>
	<description>monkey love coldfusion</description>
	<lastBuildDate>Wed, 01 May 2013 17:58:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on ColdFusion SOLR error: org/apache/pdfbox/pdmodel/PDDocument null by Chris Simmons</title>
		<link>http://www.cfchimp.com/wordpress/2011/02/coldfusion-solr-error-orgapachepdfboxpdmodelpddocument-null/comment-page-1/#comment-1192</link>
		<dc:creator>Chris Simmons</dc:creator>
		<pubDate>Wed, 01 May 2013 17:58:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=271#comment-1192</guid>
		<description><![CDATA[Did you have the cfindex wrapped in a cftry?  If not I&#039;d start there and see if the file name is listed in the cfcatch.  Next I would check the SOLR logs.  On CF9 Windows they are in C:\ColdFusion9\solr\logs.  On CF10 Windows they are in C:\ColdFusion10\cfusion\jetty\logs.]]></description>
		<content:encoded><![CDATA[<p>Did you have the cfindex wrapped in a cftry?  If not I&#8217;d start there and see if the file name is listed in the cfcatch.  Next I would check the SOLR logs.  On CF9 Windows they are in C:\ColdFusion9\solr\logs.  On CF10 Windows they are in C:\ColdFusion10\cfusion\jetty\logs.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ColdFusion SOLR error: org/apache/pdfbox/pdmodel/PDDocument null by Nam Phuong</title>
		<link>http://www.cfchimp.com/wordpress/2011/02/coldfusion-solr-error-orgapachepdfboxpdmodelpddocument-null/comment-page-1/#comment-1190</link>
		<dc:creator>Nam Phuong</dc:creator>
		<pubDate>Tue, 30 Apr 2013 23:32:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=271#comment-1190</guid>
		<description><![CDATA[My CFINDEX crashed when I have a .txt file with html codes inside. Is there an easy way to locate which file that causes the CFINDEX crash.]]></description>
		<content:encoded><![CDATA[<p>My CFINDEX crashed when I have a .txt file with html codes inside. Is there an easy way to locate which file that causes the CFINDEX crash.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subversion backup of multiple repositories via DOS .bat file by Chris Simmons</title>
		<link>http://www.cfchimp.com/wordpress/2008/05/subversion-backup-of-multiple-repositories-via-dos-bat-file/comment-page-1/#comment-1097</link>
		<dc:creator>Chris Simmons</dc:creator>
		<pubDate>Wed, 27 Mar 2013 22:57:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=50#comment-1097</guid>
		<description><![CDATA[Did you receive any sort of error message that you could post?]]></description>
		<content:encoded><![CDATA[<p>Did you receive any sort of error message that you could post?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Subversion backup of multiple repositories via DOS .bat file by Ashish David</title>
		<link>http://www.cfchimp.com/wordpress/2008/05/subversion-backup-of-multiple-repositories-via-dos-bat-file/comment-page-1/#comment-1088</link>
		<dc:creator>Ashish David</dc:creator>
		<pubDate>Tue, 26 Mar 2013 11:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=50#comment-1088</guid>
		<description><![CDATA[Dear Sir,
I would like to take the backup of all repositories, which hosted on Visual SVN Server using your batch file but it is not at all working for me. I am using tortoise SVN as client.
@ECHO OFF
CLS
:: =================== COPYRIGHT ========================================= 
:: File:          svn_backup.bat
:: Author:        Christopher C. Simmons (CCS)
:: Date:          05.01.2008
:: Purpose:       To make backups (&quot;hot copies&quot;) of multiple SVN repos
:: History:       0.1 Initial Release
:: Assumes:       Your path contains: C:\Program Files\Subversion\bin
::                Your repodir contains only repos
:: Copyright:     2008 csimmons.net
::                
:: NOTICE!!!
:: csimmons.net, LLC supplies this software AS IS and makes no guarantees
:: for your use of it. csimmons.net, LLC is not responsible for any damage
:: or pain the use of this product may cause you.  Please give credit if 
:: you use this or create a derivative work.
:: =================== COPYRIGHT =========================================

:: =================== CONFIG ============================================
:: Path of the dir containing your repos [Note Trailing slash]
SET repodir=C:\code-repo\
:: Path of the dir in which to create you hotcopies [Note Trailing slash]
SET repodirhot=c:\svnrepos_hotcopy\
:: Path for log file [Note Trailing slash]
SET logdir=C:\
:: User mode - 1=Interactive &#124; 0=NonInteractive
SET imode=1
:: =================== CONFIG ============================================

:: =================== SCRIPT ============================================
:: !!! NO NEED TO EDIT BEYOND THIS POINT !!!

:: Make a date_time stamp like 030902_134200
SET hh=%time:~0,2%

:: Add a zero when this is run before 10 am.
IF &quot;%time:~0,1%&quot;==&quot; &quot; set hh=0%hh:~1,1%
SET yymmdd_hhmmss=%date:~12,2%%date:~4,2%%date:~7,2%_%hh%%time:~3,2%%time:~6,2%

:: Make a name for the log file
SET repolog=%logdir%%yymmdd_hhmmss%repobackup.log

:: Start log
ECHO START %date% %time% &gt;&gt; %repolog%

:: IF a  hotcopy exists delete it first ELSE
:: Create directories and svn hotcopy repos to them
FOR /F %%G IN (&#039;dir /b /ad %repodir%&#039;) DO ^
IF EXIST %repodirhot%%%G (rmdir /S /Q %repodirhot%%%G &amp; mkdir %repodirhot%%%G &gt;&gt; %repolog% &amp; ^
ECHO Starting SVN backup for %%G... &gt;&gt; %repolog% &amp; ^
svnadmin hotcopy %repodir%%%G %repodirhot%%%G --clean-logs &gt;&gt; %repolog% &amp; ^
IF %imode%== 1 ECHO FINISHED...%%G) ^
ELSE (mkdir %repodirhot%%%G &gt;&gt; %repolog% &amp; ^
ECHO Starting SVN backup for %%G... &gt;&gt; %repolog% &amp; ^
svnadmin hotcopy %repodir%%%G %repodirhot%%%G --clean-logs &gt;&gt; %repolog% &amp; ^
IF %imode%== 1 ECHO FINISHED...%%G)

:: Finish log
ECHO END %date% %time% &gt;&gt; %repolog%
:: Display log message if interactive mode otherwise EXIT
ECHO Done... Logs available here: %repolog% 
if %imode%== 1 pause
:: =================== SCRIPT ============================================
EXIT]]></description>
		<content:encoded><![CDATA[<p>Dear Sir,<br />
I would like to take the backup of all repositories, which hosted on Visual SVN Server using your batch file but it is not at all working for me. I am using tortoise SVN as client.<br />
@ECHO OFF<br />
CLS<br />
:: =================== COPYRIGHT =========================================<br />
:: File:          svn_backup.bat<br />
:: Author:        Christopher C. Simmons (CCS)<br />
:: Date:          05.01.2008<br />
:: Purpose:       To make backups (&#8220;hot copies&#8221;) of multiple SVN repos<br />
:: History:       0.1 Initial Release<br />
:: Assumes:       Your path contains: C:\Program Files\Subversion\bin<br />
::                Your repodir contains only repos<br />
:: Copyright:     2008 csimmons.net<br />
::<br />
:: NOTICE!!!<br />
:: csimmons.net, LLC supplies this software AS IS and makes no guarantees<br />
:: for your use of it. csimmons.net, LLC is not responsible for any damage<br />
:: or pain the use of this product may cause you.  Please give credit if<br />
:: you use this or create a derivative work.<br />
:: =================== COPYRIGHT =========================================</p>
<p>:: =================== CONFIG ============================================<br />
:: Path of the dir containing your repos [Note Trailing slash]<br />
SET repodir=C:\code-repo\<br />
:: Path of the dir in which to create you hotcopies [Note Trailing slash]<br />
SET repodirhot=c:\svnrepos_hotcopy\<br />
:: Path for log file [Note Trailing slash]<br />
SET logdir=C:\<br />
:: User mode &#8211; 1=Interactive | 0=NonInteractive<br />
SET imode=1<br />
:: =================== CONFIG ============================================</p>
<p>:: =================== SCRIPT ============================================<br />
:: !!! NO NEED TO EDIT BEYOND THIS POINT !!!</p>
<p>:: Make a date_time stamp like 030902_134200<br />
SET hh=%time:~0,2%</p>
<p>:: Add a zero when this is run before 10 am.<br />
IF &#8220;%time:~0,1%&#8221;==&#8221; &#8221; set hh=0%hh:~1,1%<br />
SET yymmdd_hhmmss=%date:~12,2%%date:~4,2%%date:~7,2%_%hh%%time:~3,2%%time:~6,2%</p>
<p>:: Make a name for the log file<br />
SET repolog=%logdir%%yymmdd_hhmmss%repobackup.log</p>
<p>:: Start log<br />
ECHO START %date% %time% &gt;&gt; %repolog%</p>
<p>:: IF a  hotcopy exists delete it first ELSE<br />
:: Create directories and svn hotcopy repos to them<br />
FOR /F %%G IN (&#8216;dir /b /ad %repodir%&#8217;) DO ^<br />
IF EXIST %repodirhot%%%G (rmdir /S /Q %repodirhot%%%G &amp; mkdir %repodirhot%%%G &gt;&gt; %repolog% &amp; ^<br />
ECHO Starting SVN backup for %%G&#8230; &gt;&gt; %repolog% &amp; ^<br />
svnadmin hotcopy %repodir%%%G %repodirhot%%%G &#8211;clean-logs &gt;&gt; %repolog% &amp; ^<br />
IF %imode%== 1 ECHO FINISHED&#8230;%%G) ^<br />
ELSE (mkdir %repodirhot%%%G &gt;&gt; %repolog% &amp; ^<br />
ECHO Starting SVN backup for %%G&#8230; &gt;&gt; %repolog% &amp; ^<br />
svnadmin hotcopy %repodir%%%G %repodirhot%%%G &#8211;clean-logs &gt;&gt; %repolog% &amp; ^<br />
IF %imode%== 1 ECHO FINISHED&#8230;%%G)</p>
<p>:: Finish log<br />
ECHO END %date% %time% &gt;&gt; %repolog%<br />
:: Display log message if interactive mode otherwise EXIT<br />
ECHO Done&#8230; Logs available here: %repolog%<br />
if %imode%== 1 pause<br />
:: =================== SCRIPT ============================================<br />
EXIT</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Helpful links and definitions of Raspberry Pi related hardware / software for the absolute beginner by Chris Simmons</title>
		<link>http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/comment-page-1/#comment-956</link>
		<dc:creator>Chris Simmons</dc:creator>
		<pubDate>Mon, 25 Feb 2013 14:30:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=371#comment-956</guid>
		<description><![CDATA[That&#039;s awesome!  I definitely plan to attempt that soon.]]></description>
		<content:encoded><![CDATA[<p>That&#8217;s awesome!  I definitely plan to attempt that soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Helpful links and definitions of Raspberry Pi related hardware / software for the absolute beginner by Michael Horne</title>
		<link>http://www.cfchimp.com/wordpress/2012/12/helpful-links-and-definitions-of-raspberry-pi-related-hardware-software-for-the-absolute-beginner/comment-page-1/#comment-955</link>
		<dc:creator>Michael Horne</dc:creator>
		<pubDate>Mon, 25 Feb 2013 13:44:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=371#comment-955</guid>
		<description><![CDATA[Be interested to hear what else you do with the Pi! I&#039;ve managed to get ColdFusion (Railo) running on it!]]></description>
		<content:encoded><![CDATA[<p>Be interested to hear what else you do with the Pi! I&#8217;ve managed to get ColdFusion (Railo) running on it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rename a Subversion Repository by Laila</title>
		<link>http://www.cfchimp.com/wordpress/2008/11/rename-a-subversion-repository/comment-page-1/#comment-920</link>
		<dc:creator>Laila</dc:creator>
		<pubDate>Tue, 12 Feb 2013 17:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=97#comment-920</guid>
		<description><![CDATA[You, sir, deserve a medal for this simple and clear tutorial! Thank you very much !!]]></description>
		<content:encoded><![CDATA[<p>You, sir, deserve a medal for this simple and clear tutorial! Thank you very much !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Enabling SSL on the ColdFusion 8 built-in web server by XPX-Gloom</title>
		<link>http://www.cfchimp.com/wordpress/2008/08/enabling-ssl-on-the-coldfusion-8-built-in-web-server/comment-page-1/#comment-906</link>
		<dc:creator>XPX-Gloom</dc:creator>
		<pubDate>Tue, 05 Feb 2013 23:59:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=69#comment-906</guid>
		<description><![CDATA[For Secure Connection Failed Error, try following:

go to CF Admin, go to &quot;Java and JVM&quot; on left menu, in &quot;JVM Arguments&quot;, add:

-Dcoldfusion.disablejsafe=true

restart CF, done]]></description>
		<content:encoded><![CDATA[<p>For Secure Connection Failed Error, try following:</p>
<p>go to CF Admin, go to &#8220;Java and JVM&#8221; on left menu, in &#8220;JVM Arguments&#8221;, add:</p>
<p>-Dcoldfusion.disablejsafe=true</p>
<p>restart CF, done</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Save, Format, View Dreamweaver Search Results by Chris Simmons</title>
		<link>http://www.cfchimp.com/wordpress/2008/05/save-format-view-dreamweaver-search-results/comment-page-1/#comment-844</link>
		<dc:creator>Chris Simmons</dc:creator>
		<pubDate>Fri, 18 Jan 2013 03:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=54#comment-844</guid>
		<description><![CDATA[You&#039;re welcome!  Every time a new version of DW comes out I&#039;m always surprised they don&#039;t add something that does this natively.]]></description>
		<content:encoded><![CDATA[<p>You&#8217;re welcome!  Every time a new version of DW comes out I&#8217;m always surprised they don&#8217;t add something that does this natively.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Save, Format, View Dreamweaver Search Results by Arthur Morgan</title>
		<link>http://www.cfchimp.com/wordpress/2008/05/save-format-view-dreamweaver-search-results/comment-page-1/#comment-836</link>
		<dc:creator>Arthur Morgan</dc:creator>
		<pubDate>Wed, 16 Jan 2013 16:36:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.cfchimp.com/wordpress/?p=54#comment-836</guid>
		<description><![CDATA[I&#039;ve battled with DW reports for years but never had the nerve to attempt what you have done.  Your XSL file has been an enormous help--THANK YOU!]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve battled with DW reports for years but never had the nerve to attempt what you have done.  Your XSL file has been an enormous help&#8211;THANK YOU!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
