File uploader doesnt upload large files

A

Anonymous

Guest
Hi, you must to modify the file's settings.

Name Default
file_uploads "1" PHP_INI_SYSTEM
upload_tmp_dir NULL PHP_INI_SYSTEM
upload_max_filesize "2M" PHP_INI_SYSTEM|PHP_INI_PERDIR

The Default upload_max_filesize is 2MB.
 
Also check your .ini for the max_input_time directive, it will affect the $_POST/$_GET operations such as file uploads.
Defaults to -1 i think, which means: no time limit.
 
Back
Top