######## # From Stu MacKenzie on the Mailing List # Usage: Change filename to fullpath.cgi and load this script into your # cgi-bin directory... You might have to make it executable, # just like Blosxom. Then, from a browser, call # yourdomain.com/cgi-bin/fullpath.cgi and note the path it returns. #!/usr/bin/perl use CGI 'header'; print header("text/html"); print $ENV{'SCRIPT_FILENAME'}; exit; ########