header.cgi
上传用户:wlfwy2004
上传日期:2016-12-12
资源大小:33978k
文件大小:1k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. #!/usr/bin/perl
  2. # Mega Upload
  3. # PHP File Uploader with progress bar Version 1.42
  4. # Copyright (C) Raditha Dissanyake 2003
  5. # http://www.raditha.com
  6. # Licence:
  7. # The contents of this file are subject to the Mozilla Public
  8. # License Version 1.1 (the "License"); you may not use this file
  9. # except in compliance with the License. You may obtain a copy of
  10. # the License at http://www.mozilla.org/MPL/
  11. # Software distributed under the License is distributed on an "AS
  12. # IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13. # implied. See the License for the specific language governing
  14. # rights and limitations under the License.
  15. # The Initial Developer of the Original Code is Raditha Dissanayake.
  16. # Portions created by Raditha are Copyright (C) 2003
  17. # Raditha Dissanayake. All Rights Reserved.
  18. $tmp_dir="/www/m/c/mcpuk.net/tmp";
  19. $|=1; #unbuffers streams
  20. $interval=1;   # how often to refresh the progress bar
  21. $max_upload = 500000000000; # set this to whatever you feel suitable for you.
  22.     
  23. # don't change the next few lines unless you have a very good reason to.
  24. $post_data_file = "$tmp_dir/$sessionid"."_postdata";
  25. $monitor_file = "$tmp_dir/$sessionid"."_flength";
  26. $signal_file = "$tmp_dir/$sessionid"."_signal";
  27. 1;