- CSS - Cascaded Style Sheets



|
|
PHP - Maximum allowed size for uploaded files - Maximum size of POST data
In order to upload large files to your server with PHP, you need to change
2 parameters in php.ini
; Maximum allowed size for uploaded files.
upload_max_filesize = 50M
; Maximum size of POST data that PHP will accept.
post_max_size = 50M
The first setting changes the maximum file size for uploads. This is a pretty
obvious setting.
The second setting changes the maximum POST request size. Since you post your
files to the server, this must be changed too in order to allow uploads for
big files.
Last-Modified: Sat, 04 Feb 2006 16:03:03 GMT
|
|