How to Increase Php Upload Size-upload_max_filesize
There are 2 things in which increasing the file size for upload can be achieve. These methods are both applicable for Linux OS but not for W...
https://www.czetsuyatech.com/2011/05/php-increase-upload-max-filesize-value.html
There are 2 things in which increasing the file size for upload can be achieve. These methods are both applicable for Linux OS but not for Windows, since windows doesn't recognize .htaccess file
1.) By changing the value in php.ini (Linux, Windows)
You might be interested in these 2 keys:
upload_max_filesize = 32M
post_max_size = 32M
2.) By overriding the settings in .htaccess file, this file can be place in the directory where you want to override the settings in php.ini. The settings are written this way:
php_value upload_max_filesize 32M
php_value post_max_size 32M
1.) By changing the value in php.ini (Linux, Windows)
You might be interested in these 2 keys:
upload_max_filesize = 32M
post_max_size = 32M
2.) By overriding the settings in .htaccess file, this file can be place in the directory where you want to override the settings in php.ini. The settings are written this way:
php_value upload_max_filesize 32M
php_value post_max_size 32M
Post a Comment