致力于为用户提供真实的
主机测评数据及优惠信息

wordpress 上传附件中文文件名乱码解决办法(for Windows)

但是将站点部署到一个Windows XP 中文版上时,发现上传的附件在服务器的文件名为乱码,而URL是正常的,说明是操作系统编码的问题,windows中文版的编码好像是GBK(以前在Windows下开发时输出的系统编码好像是GBK,不太确定,有兴趣的可以自己在Win下测试)。解决方案: 
1.如果非要部署wordpress到Windows XP系统,更换Windows XP English version 

2.如果非要部署wordpress到Windows XP 中文版,修改以下代码: 

//wp-admin/includes/file.php,以3.0.3为例: 

复制代码

代码如下:

function wp_handle_upload( &$file, $overrides = false, $time = null ) { 
//…. 
// Move the file to the uploads dir 
//$new_file = $uploads['path'] . "/$filename"; 
// 修正中文文件名编码问题 
$new_file = $uploads['path'] . "/" . iconv("UTF-8","GB2312",$filename); 
//… 
//return apply_filters( 'wp_handle_upload', array( 'file' => $new_file, 'url' => $url, 'type' => $type ), 'upload' ); 
// 修正中文文件名编码问题 
return apply_filters( 'wp_handle_upload', array( 'file' => $uploads['path'] . "/$filename", 'url' => $url, 'type' => $type ) , 'upload'); 


其中的 iconv("UTF-8","GB2312",$filename); 也可以使用“GBK”编码。

赞(0) 打赏
未经允许不得转载:爱主机 » wordpress 上传附件中文文件名乱码解决办法(for Windows)
分享到: 更多 (0)

评论 抢沙发

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址