The specified CGI application misbehaved by not returning a complete set of HTTP headers.
I've tried it with the perl path ( #!c:/perl/bin ) and without, since it says you don't need that.. and I get the same results. I've made sure my directory and files have at least R W X permissions.
I've tried it with a redirection page and without... all get same error. Any ideas how to resolve this? Here is the code portion that I configure.. the rest you aren't supposed to touch:
# START USER EDITS
# absolute path to folder files will be uploaded to.
# WINDOWS users, your path would like something like : images\\uploads
# UNIX users, your path would like something like : /home/www/images/uploads
# do not end the path with any slashes and if you're on a UNIX serv, make sure
# you CHMOD each folder in the path to 777
$dir = "c:\\hosting\\webhost4life\\member\\mwalson\\cgi\\files";
#$dir = "d:\\html\\users\\html\\images";
# absolute URL to folder files will be uploaded to
$folder = "http://www.cincywedding.com/cgi/files";
# maximum file size allowed (kilo bytes)
$max = 100;
# for security reasons, enter your domain name.
# this is so uploads may only occur from your domain
# enter any part of your domain name, or leave this
# blank if you don't mind other web sites using your copy
$domain = "";
# if a file is successfully uploaded, enter a URL to redirect to.
# leave this blank to have the default message printed. If using
# this var, it must begin with http
$redirect = "http://www.cincywedding.com";
# if you would like to be notified of uploads, enter your email address
# between the SINGLE quotes. leave this blank if you would not like to be notified
$notify = '';
# UNIX users, if you entered a value for $notify, you must also enter your
# server's sendmail path. It usually looks something like : /usr/sbin/sendmail
$send_mail_path = "/usr/sbin/sendmail";
# WINDOWS users, if you entered a value for $notify, you must also enter your
# server's SMTP path. It usually looks something like : mail.servername.com
$smtp_path = "mail.yourserver.com";
# set to 1 if you would like all files in the directory printed to the web page
# after a successful upload (only printed if redirect is off). Set to 0 if you
# do not want filenames printed to web page
$print_contents = 1;
# allow overwrites? 1 = yes, 0 = no (0 will rename file with a number on the end, the
# highest number is the latest file)
$overwrite = 0;
# file types allowed, enter each type on a new line
# Enter the word "ALL" in uppercase, to accept all file types.
@types = qw~
txt
jpeg
jpg
gif
GIF
JPG
JPEG
~;
####################################################################
# END USER EDITS