• +1 3033561099
  • support@arosscloud.com

Wordpress上傳中文附件出現亂碼和後台上傳中文圖片不顯示解決方法



2024-03-08 11:41:43

Wordpress上傳中文附件出現亂碼和後台上傳中文圖片不顯示解決方法

最後更新時間:2021-12-30 15:08:33


編輯wp-admin/includes/file.php這個文件


1、查找:

$new_file = $uploads['path'] . "/$filename";

替換為:


$new_file = $uploads['path'] . "/" . iconv("UTF-8","GB2312",$filename);

注意,之需要替換第一處即可!


2、查找

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');

如果有不明白的地方,歡迎在後台提交工單。