Page 1 of 1

upload file size > 2MB

Posted: Mon Jun 10, 2002 3:03 am
by ina
is php can upload the file that have a big size greater that 2MB. cause i try to upload the other files < 2MB and it was successfully but the file size 3.5MB is fail.

Posted: Mon Jun 10, 2002 3:38 am
by twigletmac
The maximum upload file size is set in the php.ini - look for the lines:

Code: Select all

; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
I'm not sure what you can do about it if you don't have access to the php.ini though.

Mac