Demo 30 - Download Tracker/Counter     |     home
Admin screen   |   HTML Code used   |   Download.cgi   |   Admin.cgi   |   Title 15

Download.cgi
Source code modified

#!/usr/bin/perl

#======================================== --- -- -
#                                     
# Download Monitor
# By Gerrit Powire
# CGI Dynamics
#
# Version: 0.99Beta
# Last Modified 11/1/2000
# Copyright (c) 2000
#
#============================= --- -- -
. . . . . .
#
############################################################
# Configuration - Edit below
############################################################

# Directory where data & download counts should be stored. You also
# need to chmod this directory to 777. This directory location would
# be best where users of your website cannot access it. Maybe
# password protect the directory or use a directory that is out
# of reach of the webserver.
$data_dir = "../dlmonitor";

# URL Location of download files
$download_files = "http://www.swgalleries.com/downloadarea";

# Server location of files to be downloaded
$download_loc = "../downloadarea";


###############################################################
# No more editing below - Unless you know what's happening here
###############################################################




Admin.cgi