Answers for "php max upload size htaccess"

PHP
0

htaccess post max size

php_value upload_max_filesize 20M
php_value post_max_size 20M
#php_value max_execution_time 200
#php_value max_input_time 200
Posted by: Guest on November-14-2020
0

htaccess increase upload size

upload_max_filesize = 64M
post_max_size = 64M
max_execution_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

Browse Popular Code Answers by Language