我需要增加媒体的最大大小。我已经更改了我的php。ini。我已经换了衣服。htaccess我已经更改了我的函数。php
但它不起作用。
我已直接更改(用于试用和测试)wp include/media。php文件如下:
function wp_max_upload_size() {
@ini_set( \'upload_max_size\' , \'64M\' );
@ini_set( \'post_max_size\', \'64M\');
$u_bytes = wp_convert_hr_to_bytes( ini_get( \'upload_max_filesize\' ) );
$p_bytes = wp_convert_hr_to_bytes( ini_get( \'post_max_size\' ) );
if(isset($_GET[\'mathieu\'])) {
var_dump($u_bytes);
var_dump($p_bytes);
}
return apply_filters( \'upload_size_limit\', min( $u_bytes, $p_bytes ), $u_bytes, $p_bytes );
}
在后台,我看到:
我不知道。。。