XUpload - Transfer complete! or so it sez

Message
Author
xxann5
Posts: 2
Joined: Jan 03, 2007 2:19 am

Transfer complete! or so it sez

#1 Postby xxann5 » Jan 03, 2007 2:55 am

However it always sez that a few seconds after you attempt to upload something. No progress bar and nothing uploaded. If you watch the contents of the temp directory nothing gets created.

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     => '.*',
   },
And hear is the url to the html form

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
Any help would be greatly appreciated. The sooner I get this working the better we are way behind on this project.

Thanx
~Chris

User avatar
PilgrimX182
Posts: 2186
Joined: Mar 22, 2006 1:39 pm

#2 Postby PilgrimX182 » Jan 11, 2007 6:40 am

It looks you get error somewhere inside upload.cgi.
Have you replaced "#!/usr/bin/perl" with "#!Perl" ?
Try to comment "local $SIG{__DIE__} = 'CleanUp';"

If won't help, contact us for free installation on your server since you're the owner of PRO version.

xxann5
Posts: 2
Joined: Jan 03, 2007 2:19 am

Thanx

#3 Postby xxann5 » Jan 11, 2007 2:21 pm

Ya i emailed your support and you guys helped me out and got it working

~Thanx Guys