|
Handling large file uploads
|
There are a few variables you'll need to adjust in order to handle large file uploads with php. The default installation will limit your uploads to 2 mb.
Change the values of the following directives in your php.ini file:
- max_execution_time
- max_input_time
- memory_limit
- post_max_size
- upload_max_filesize
once those values are set, restart apache and off you go.
No Comments