增加文件上载大小并无害处。现在,我们每天都需要增加它,因为默认值不够。请随意增加。您还可以与您的托管提供商联系,以增加上载大小。
有很多方法可以做到这一点。
Locate theme\'s function and add below lines:
@ini_set( \'upload_max_size\' , \'64M\' );
@ini_set( \'post_max_size\', \'64M\');
@ini_set( \'max_execution_time\', \'300\' );
In php.ini
upload_max_filesize = 64M
post_max_size = 64M
max_execution_time = 300
In htaccess file
php_value upload_max_filesize 64M
php_value post_max_size 64M
php_value max_execution_time 300
php_value max_input_time 300
谢谢