Upload limit.

Stephen said:
since windows is my field, 22MB is the upload limit.
Stephen,
How is the limit implemented (ie: what error will clients see?) I'm building an image upload application. Users will upload a Jpeg, then I'll use aspjpeg to resize it and delete the original. I'll also be limiting the max size they can upload, but my understanding is that aspupload/aspjpeg needs to first upload the file before determining its size. I'll obviously warn people not to upload this size, but I just wonder what will happen if they try to exceed it?

Thanks
 
If an attempt to exceed 22MB is encountered IIS itself actually kills the upload. It doesn't cause any problems(except they need to reupload with a smaller file)
 
ok, so it just doesn't go through? No error messages?

I guess I'll have to make sure to make the warnings extra big.

Thanks
 
dcpaq2 said:
Does anyone know for sure what the php upload limit is for linux/unix plans?

Default PHP upload limit on Linux server is 2MB. But you can increase it by setting up "upload_max_filesize" and "post_max_size" directives in your .htaccess file.
 
Back
Top