InterviewSolution
| 1. |
How Do The Limits On Uploaded Files Work? |
|
Answer» FILE upload sizes are restricted in a number of ways – each one in the list restricts the following ones.
/etc/httpd/conf/httpd.conf and/or /etc/httpd/conf.d/php.conf with the upload size in bytes (different operating systems may have these files in different locations):
php_value upload_max_filesize 50000000
File upload sizes are restricted in a number of ways – each one in the list restricts the following ones. /etc/httpd/conf/httpd.conf and/or /etc/httpd/conf.d/php.conf with the upload size in bytes (different operating systems may have these files in different locations): php_value upload_max_filesize 50000000 |
|