<?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 on: Example Document Browser Code</title>
	<atom:link href="http://eric-blue.com/2010/02/12/example-document-browser-code/feed/" rel="self" type="application/rss+xml" />
	<link>http://eric-blue.com/2010/02/12/example-document-browser-code/</link>
	<description>Technology, Philosophy, and Personal Development</description>
	<lastBuildDate>Tue, 15 May 2012 22:28:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: gulube</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-109382</link>
		<dc:creator>gulube</dc:creator>
		<pubDate>Fri, 17 Feb 2012 00:49:35 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-109382</guid>
		<description>riko if you find any solution please tell me. here is my email - cmgulube@hotmail.com</description>
		<content:encoded><![CDATA[<p>riko if you find any solution please tell me. here is my email &#8211; <a href="mailto:cmgulube@hotmail.com">cmgulube@hotmail.com</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: riko</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-102555</link>
		<dc:creator>riko</dc:creator>
		<pubDate>Wed, 01 Feb 2012 12:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-102555</guid>
		<description>Nice sharing Eric.

I was try this code on my xampp, 
and I had configure the root in list.cgi and url in index.html according to my path.
and the problem is the box field to show list folder is not working.
just blank. Only view 2 empty box.
any have idea?

Help please..

Thx before</description>
		<content:encoded><![CDATA[<p>Nice sharing Eric.</p>
<p>I was try this code on my xampp,<br />
and I had configure the root in list.cgi and url in index.html according to my path.<br />
and the problem is the box field to show list folder is not working.<br />
just blank. Only view 2 empty box.<br />
any have idea?</p>
<p>Help please..</p>
<p>Thx before</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: esplendida</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-101974</link>
		<dc:creator>esplendida</dc:creator>
		<pubDate>Mon, 30 Jan 2012 10:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-101974</guid>
		<description>thank u eric.
cool
i waiting for this code..
;-)</description>
		<content:encoded><![CDATA[<p>thank u eric.<br />
cool<br />
i waiting for this code..<br />
 <img src='http://eric-blue.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gulube</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-95203</link>
		<dc:creator>gulube</dc:creator>
		<pubDate>Wed, 04 Jan 2012 11:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-95203</guid>
		<description>hey Eric! I had the same problem as &lt;strong&gt;kurniadi</description>
		<content:encoded><![CDATA[<p>hey Eric! I had the same problem as <strong>kurniadi</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kurniadi</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-82717</link>
		<dc:creator>kurniadi</dc:creator>
		<pubDate>Mon, 07 Nov 2011 06:41:26 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-82717</guid>
		<description>hai eric, 

i&#039;m very interesting with your sharing about document browser, but after i&#039;m download doc_browser_1_0 and copy to folder htdocs in xammp or apache2triad the index.html can&#039;t open.
The error is:
 
#!/usr/bin/perl use strict; use HTML::Entities (); #----------------------------------------------------------- # jQuery File Tree Perl Connector # # Version 1.0 # # Oleg Burlaca # http://www.burlaca.com/2009/02/jquery-file-tree-connector/ # 12 February 2009 #----------------------------------------------------------- # for security reasons, specify a root folder # to prevent the whole filesystem to be shown # for ex: the root folder of your webbrowser my $root = &quot;/docs/&quot;; #---------------------------------------------------------- my $params = &amp;getCGIParams(); print &quot;Content-type: text/html\n\n&quot;; my $dir = $params-&gt;{dir}; $dir=~s/%20/ /g; my $fullDir = $root . $dir; exit if ! -e $fullDir; opendir(BIN, $fullDir) or die &quot;Can&#039;t open $dir: $!&quot;; my (@folders, @files); my $total = 0; while( defined (my $file = readdir BIN) ) { next if $file eq &#039;.&#039; or $file eq &#039;..&#039;; $total++; if (-d &quot;$fullDir/$file&quot;) { push (@folders, $file); } else { push (@files, $file); } } closedir(BIN); return if $total == 0; print &quot;
..............

What should i do?
please help me.. :(</description>
		<content:encoded><![CDATA[<p>hai eric, </p>
<p>i&#8217;m very interesting with your sharing about document browser, but after i&#8217;m download doc_browser_1_0 and copy to folder htdocs in xammp or apache2triad the index.html can&#8217;t open.<br />
The error is:</p>
<p>#!/usr/bin/perl use strict; use HTML::Entities (); #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; # jQuery File Tree Perl Connector # # Version 1.0 # # Oleg Burlaca # <a href="http://www.burlaca.com/2009/02/jquery-file-tree-connector/" rel="nofollow">http://www.burlaca.com/2009/02/jquery-file-tree-connector/</a> # 12 February 2009 #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; # for security reasons, specify a root folder # to prevent the whole filesystem to be shown # for ex: the root folder of your webbrowser my $root = &#8220;/docs/&#8221;; #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- my $params = &amp;getCGIParams(); print &#8220;Content-type: text/html\n\n&#8221;; my $dir = $params-&gt;{dir}; $dir=~s/%20/ /g; my $fullDir = $root . $dir; exit if ! -e $fullDir; opendir(BIN, $fullDir) or die &#8220;Can&#8217;t open $dir: $!&#8221;; my (@folders, @files); my $total = 0; while( defined (my $file = readdir BIN) ) { next if $file eq &#8216;.&#8217; or $file eq &#8216;..&#8217;; $total++; if (-d &#8220;$fullDir/$file&#8221;) { push (@folders, $file); } else { push (@files, $file); } } closedir(BIN); return if $total == 0; print &#8221;<br />
&#8230;&#8230;&#8230;&#8230;..</p>
<p>What should i do?<br />
please help me.. <img src='http://eric-blue.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bello Segun</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-80335</link>
		<dc:creator>Bello Segun</dc:creator>
		<pubDate>Wed, 19 Oct 2011 23:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-80335</guid>
		<description>Thanks for the tip...was awesome
I tried this by &#039;ftping&#039; to my site to test here...http://interactivejoyouscob.com/doc..but got no output...is there somthing wrong? please i need help</description>
		<content:encoded><![CDATA[<p>Thanks for the tip&#8230;was awesome<br />
I tried this by &#8216;ftping&#8217; to my site to test here&#8230;http://interactivejoyouscob.com/doc..but got no output&#8230;is there somthing wrong? please i need help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cornelius</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-79452</link>
		<dc:creator>Cornelius</dc:creator>
		<pubDate>Thu, 13 Oct 2011 08:03:36 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-79452</guid>
		<description>thanks for the sample code...i uploaded it to my localhost...fired up apache but its not loading the sample documents...did i get something wrong..pls help...</description>
		<content:encoded><![CDATA[<p>thanks for the sample code&#8230;i uploaded it to my localhost&#8230;fired up apache but its not loading the sample documents&#8230;did i get something wrong..pls help&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh N</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-68338</link>
		<dc:creator>Rajesh N</dc:creator>
		<pubDate>Fri, 08 Jul 2011 10:34:56 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-68338</guid>
		<description>hi,
great work , i am searching from long time for such simple solution thanks a lot</description>
		<content:encoded><![CDATA[<p>hi,<br />
great work , i am searching from long time for such simple solution thanks a lot</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nirav</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-31721</link>
		<dc:creator>nirav</dc:creator>
		<pubDate>Thu, 05 Aug 2010 14:09:21 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-31721</guid>
		<description>Hi,

Can i run this sample code in IIS 6.0, i am getting error while i am clicking on treeview node &quot;Internal SErver error, page can not be displayed&quot;. An error comes from while i am browsing &quot;http://localhost:456/convert.cgi?docurl=http://localhost:456/Documents/testv1.doc&quot; 

how can i run the .cgi file in IIS web server? which interpreter should i install to make this run?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can i run this sample code in IIS 6.0, i am getting error while i am clicking on treeview node &#8220;Internal SErver error, page can not be displayed&#8221;. An error comes from while i am browsing &#8220;http://localhost:456/convert.cgi?docurl=http://localhost:456/Documents/testv1.doc&#8221; </p>
<p>how can i run the .cgi file in IIS web server? which interpreter should i install to make this run?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Suwidi</title>
		<link>http://eric-blue.com/2010/02/12/example-document-browser-code/comment-page-1/#comment-26753</link>
		<dc:creator>Suwidi</dc:creator>
		<pubDate>Wed, 05 May 2010 07:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://eric-blue.com/?p=1039#comment-26753</guid>
		<description>Hi Eric

Thanks for your sharing, this code really needed by me. I will try  it on my online library in campus.

Regards
__me</description>
		<content:encoded><![CDATA[<p>Hi Eric</p>
<p>Thanks for your sharing, this code really needed by me. I will try  it on my online library in campus.</p>
<p>Regards<br />
__me</p>
]]></content:encoded>
	</item>
</channel>
</rss>

