Hear is my configuration file (well part o it)
Version Info
Code: Select all
#!/usr/bin/perl
### XUpload PRO2.3
### SibSoft.net (1 Nov 2006)
Code: Select all
# Directory for temporary using files (local path from root, not URL)
temp_dir => '/home/waxlive3/public_html/files/temp',
modes =>
{
1 =>
{
# Directory for uploaded files (local path from root)
target_dir => '/home/waxlive3/public_html/files/music',
# URL to send all input values from upload page
url_post => 'http://www.waxlive.com/upload/post.php',
# Max number of upload fields
max_upload_files => 50,
# Minimum total upload size in Kbytes (leave empty or zero to disable)
min_upload_size => 70,
# Maximum total upload size in Kbytes
max_upload_size => 1024000,
# Allowed file extensions delimited with '|'
# Use '.*' to allow all extensions
#ext_allowed => 'jpg|jpeg|gif|png|rar|zip|mp3|avi|txt|csv|wma',
ext_allowed => '.*',
},
http://www.waxlive.com/upload/upload_form.html
the temp and music directories are 777 and all cgi and pl scripts are 755 and all the paths are correct.
I made the necessary modifications to the .htaccess
Code: Select all
<IfModule mod_security.c>
SetEnvIfNoCase Content-Type "^multipart/form-data;" "MODSEC_NOPOSTBUFFERING=Do not buffer file uploads"
</IfModule>
<IfModule mod_gzip.c>
mod_gzip_on No
</IfModule>
Looking in the error log of my hosting company I found this line many times. I am assuming once for each upload temp.
- [Tue Jan 2 18:38:25 2007] [error] [client X.X.X.X] Premature end of script headers: /home/waxlive3/public_html/cgi-bin/xupload/upload.cgi
Which does not sound good but I am not sure what would cause that.
i have treid this with both firefox and IE
- Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.0.9) Gecko/20061206 Firefox/1.5.0.9
Thanx
~Chris