Maximum upload size

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • skyy
    New Member
    • May 2007
    • 109

    Maximum upload size

    Hi.. i am doing some uploading of files using CGI with perl script..

    the $CGI::POST_MAX is used to limit the maximum size of the upload file.

    Did anyone know what is the maximum size that i can set for $CGI::POST_MAX? and thus the maximum upload size for file upload...

    Thanks!
  • KevinADC
    Recognized Expert Specialist
    • Jan 2007
    • 4092

    #2
    There is no limit. But the server where you upload the file to may have it's own limit, which is seperate from any limit you set with POST_MAX.

    Comment

    • miller
      Recognized Expert Top Contributor
      • Oct 2006
      • 1086

      #3
      Yes, the server may not have an actual limit to the upload size, but most servers at the least have a Timeout before a process is abandoned. This would cause a defacto limit to upload size if the upload took longer than the Timeout.

      - Miller

      Comment

      Working...