[snip]
When I try to upload a larger file it fails.

...other non-relevant stuff...
[/snip]

check your php.ini for the following;

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M

is the setting high enough?

Also, what about your form, do you have something like this ...

<form enctype="multipart/form-data" action="uploaddoc_verify.php"
method="POST">
        <input type="hidden" name="MAX_FILE_SIZE" value="2500000">

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to