Answers for "how to add file upload size on htaccess"

0

htaccess increase upload size

php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
Posted by: Guest on December-01-2020
0

htaccess increase upload size

@ini_set( 'upload_max_size' , '64M' );
@ini_set( 'post_max_size', '64M');
@ini_set( 'max_execution_time', '300' );
Posted by: Guest on December-01-2020
0

how to add file upload size on htaccess

php_value memory_limit 30M
php_value post_max_size 100M
php_value upload_max_filesize 30M
Posted by: Guest on April-09-2021

Code answers related to "how to add file upload size on htaccess"

Browse Popular Code Answers by Language