1) There's are a couple of upload limits in php.ini, and those would override the limit in threads' config settings. Here are the default settings for PHP 4.1.2:
; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
; Maximum size of POST data that PHP will accept.
post_max_size = 8M
2) Exactly what value are you using for the upload limit? There might not be a range check on that, so if it's too big, it might "wrap around" to a small value or negative value.
3) What's your threads version?
Last edited by Dave_L; 12/07/2002 1:44 PM.