<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Please take a look before I.....arrrngh"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Please take a look before I.....arrrngh"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Please take a look before I.....arrrngh</title>
				<description><![CDATA[ Here are the changes I made to the script....when I try to pull up the admin page....I get an error saying the file does not exist? Can anyone help?<br /> <br /> <br /> <br /> #!/usr/local/bin/perl <br /> <br /> # url to script <br /> $cgiurl = "http://www.graycrosby.com/cgi-bin/download.pl"; <br /> <br /> # url to the image files without trailing "/" <br /> $base_gif = "http://www.graycrosby.com/gif"; <br /> <br /> # administration password - should not contain '&amp;','=' and " <br /> $admin_pass = "pass123"; <br /> <br /> # file locking ($lock=0 for Win32!); <br /> $lock = 1; <br /> <br /> # check http referer 0=no 1=yes; <br /> $check = 0; <br /> @valid=('http://www.graycrosby.com'); <br /> <br /> # log files <br /> $basedat = "log.txt"; <br /> $daylog = "daylog.txt"; <br /> $stats = "download_stats.txt"; <br /> <br /> # base url to the downloads without trailing "/" (use for scanning) <br /> $base_url = "http://www.graycrosby.com/downloads"; <br /> <br /> # path to the downloads from the server root! (use for scanning) <br /> $base_dir = "/home/www.graycrosby.com/public_html/downloads"; <br /> <br /> $back_img = "$base_gif/texture1.gif"; # url of background image <br /> $bgcolor = "#FFFFFF"; # background color <br /> $table_width = 560; # width of hole table <br /> $table_text = 250; # width reserve for the file description <br /> $table_bg = "#F7F7F7"; # table background color <br /> $table_top = "#E1A8A8"; # top table background color <br /> $font_size = "8pt"; # font size <br /> $show_default = 15; # 10=TOP_10 20=TOP_20,etc. <br /> $bar_image_height =10; <br /> $max_day = 28; <br /> $max_bar_height = 180; <br /> <br /> %scan = ( <br /> <br /> zip =&gt; '*.zip', <br /> gz =&gt; '*.gz', <br /> exe =&gt; '*.exe', <br /> mp3 =&gt; '*.mp3', <br /> pdf =&gt; '*.pdf', <br /> avi =&gt; '*.avi' <br /> <br /> ); <br /> <br /> # End Setup<br /> <br /> THanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3032/8007.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3032/8007.php</link>
				<pubDate><![CDATA[Fri, 23 Apr 2004 05:03:36]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ After messing around for hours....cannot get this thing to work. THis is the error message I get when I try to access the admin sceen:<br /> <br /> <br /> Thu Apr 22 21:56:11 2004] [error] [client 68.20.2.130] File does not exist: /home/graycr2/public_html/500.shtml<br /> [Thu Apr 22 21:56:11 2004] [error] [client 68.20.2.130] Premature end of script headers: /home/graycr2/public_html/cgi-bin/download.pl<br /> <br /> <br /> This is how I have setup the script.<br /> <br /> Does anything lookout of place? ANyhelp would be greatly appreciated.<br /> <br /> #!/usr/bin/perl<br /> #########################################################################<br /> #  Top Downloads v2.0                                                   #<br /> #  Copyright (c)2000 Chi Kien Uong                                      #<br /> #  URL: <a class="snap_shots" href="http://www.proxy2.de" target="_blank" rel="nofollow">http://www.proxy2.de</a>                                            #<br /> #                                                                       #<br /> # This Software is distributed under the GNU General Public             #<br /> # License. For more details see license.txt                             #<br /> #                                                                       #<br /> # To count a download use:                                              #<br /> # &lt;a href="download.pl?file=file_id"&gt;file&lt;/a&gt;                           #<br /> #                                                                       #<br /> # To show your top xx downloads:                                        #<br /> # <a class="snap_shots" href="http://www.host.com/cgi-bin/download.pl?job=show&amp;top=xx" target="_blank" rel="nofollow">http://www.host.com/cgi-bin/download.pl?job=show&amp;top=xx</a>               #<br /> #                                                                       #<br /> # Administration:                                                       #<br /> # <a class="snap_shots" href="http://www.host.com/cgi-bin/download.pl?admin=enter" target="_blank" rel="nofollow">http://www.host.com/cgi-bin/download.pl?admin=enter</a>                   #<br /> #                                                                       #<br /> #########################################################################<br /> <br /> # url to script<br /> $cgiurl = "http://www.GrayCrosby.Com/cgi-bin/download.pl";<br /> <br /> # url to the image files without trailing "/"<br /> $base_gif = "http://www.GrayCrosby.com/gif";<br /> <br /> # administration password - should not contain '&amp;','=' and "<br /> $admin_pass = "pass123";<br /> <br /> # file locking ($lock=0 for Win32!);<br /> $lock = 1;<br /> <br /> # check http referer 0=no 1=yes;<br /> $check = 0;<br /> @valid=('http://www.graycrosby.com');<br /> <br /> # log files<br /> $basedat = "log.txt";<br /> $daylog = "daylog.txt";<br /> $stats = "download_stats.txt";<br /> <br /> # base url to the downloads without trailing "/" (use for scanning)<br /> $base_url = "http://www.graycrosby.com/downloads";<br /> <br /> # path to the downloads from the server root! (use for scanning)<br /> $base_dir = "/home/www/~graycr2/public_html/downloads";<br /> <br /> $back_img = "$base_gif/texture1.gif"; # url of background image<br /> $bgcolor = "#FFFFFF";	# background color<br /> $table_width = 560;	# width of hole table<br /> $table_text = 250;	# width reserve for the file description<br /> $table_bg = "#F7F7F7";	# table background color<br /> $table_top = "#E1A8A8";	# top table background color<br /> $font_size = "8pt";	# font size<br /> $show_default = 15;	# 10=TOP_10  20=TOP_20,etc.<br /> $bar_image_height =10;<br /> $max_day = 28;<br /> $max_bar_height = 180;<br /> <br /> %scan = (<br /> <br />   zip =&gt; '*.zip',<br />   gz  =&gt; '*.gz',<br />   exe =&gt; '*.exe',<br />   mp3 =&gt; '*.mp3',<br />   pdf =&gt; '*.pdf',<br />   avi =&gt; '*.avi'<br /> <br /> );<br /> <br /> # End Setup]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3032/8012.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3032/8012.php</link>
				<pubDate><![CDATA[Fri, 23 Apr 2004 06:58:46]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ this is for TOP DOWNLOAD BY THE WAY]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/3032/8015.php</guid>
				<link>https://proxy2.de/forum/posts/preList/3032/8015.php</link>
				<pubDate><![CDATA[Fri, 23 Apr 2004 07:23:24]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>