Answers for "increase Post Max Size wordpress"

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

increase the 'post_max_size'

# php.ini

memory_limit=2048M
post_max_size=512M
upload_max_filesize=512M
Posted by: Guest on November-26-2020
1

increase upload size wordpress

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 November-17-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

Code answers related to "increase Post Max Size wordpress"

Browse Popular Code Answers by Language