no

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...

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

Related

php 9079295543191692100

Post a Comment Default Comments

item