|
Is she on a Mac?
Is she, fer sher, trying to upload a file that is smaller than the max size, as established in both php.ini and on the upload form?
I ask these two specific questions because (a) some Macs have their 'MTU' (maximum transmission unit) set too high which increases the request size above the max limit set in your server's configuration, particularly when uploading even a small file, and (b) if the true file size is even a couple of bytes larger than the max size set in your server's config or in php.ini (and you have error_reporting turned on) then you'll see 'maximum request size' errors in your server's transfer log and they will experience a time out on the client end.
You can test for these by radically increasing the max file size setting in php.ini. If it fixes the issue for her, then at least one of the above two situations exist.
Last edited by StupidScript : 06-27-2007 at 11:47 AM.
|