流沙团
wordpress不能上传中文名称的附件和图片的解决办法
2016-9-27 流沙团


文章来自转自啊, 收集用!








这两天不知道怎么搞的,发帖的时候不能上传中文名称的图片。



我的是上传到七牛的,还以为是是远程存储的问题,今天没事看了下 是不能上传



是wp的程序问题



找了下原因,是和编码有关系



解决办法很简单.



打开wp-admin/includes/file.php文件



找到wp_handle_upload这个函数,按照下面的代码进行修改.主要修改两行



function wp_handle_upload( &$file, $overrides = false, $time = null ) {
//....
// Move the file to the uploads dir
//$new_file = $uploads['path'] . "/$filename";(大概在306行) // 修正中文文件名编码问题
$new_file = $uploads['path'] . "/" . iconv("UTF-8","GB2312",$filename);

//...

//return apply_filters( 'wp_handle_upload', array( 'file' => $new_file, 'url' => $url, 'type' => $type ), 'upload' );

(大概在328行)

// 修正中文文件名编码问题 return apply_filters( 'wp_handle_upload', array( 'file' => $uploads['path'] . "/$filename", 'url' => $url, 'type' => $type ) , 'upload');









发表评论:
昵称

邮件地址 (选填)

个人主页 (选填)

内容