- upload_max_filesize - The maximum size of an uploaded file.
- memory_limit - This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts for eating up all available memory on a server. Note that to have no memory limit, set this directive to -1.
- post_max_size - Sets max size of post data allowed. This setting also affects file upload. To upload large files, this value must be larger than upload_max_filesize. If memory limit is enabled by your configure script, memory_limit also affects file uploading. Generally speaking, memory_limit should be larger than post_max_size. There are two methods two fix this problem.
Wednesday, October 7, 2015
PHP Increase Upload File Size Limit
Your php installation putting limits on upload file size. The default
will restrict you to a max 2 MB upload file size. You need to set the
following two configuration options:
memory_limit = 32M
php_value upload_max_filesize 10M
Labels:
LINUX,
WEB SERVER
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment