當我在wordpress中上傳圖片時,出現HTTP錯誤。儘管上傳文件夾中插入了圖片,但是顯示錯誤。圖片上傳HTTP錯誤Wordpress
我試圖用的.htaccess工作 .. SecFilterEngine關 SecFilterScanPOST關 .. 但沒有幹活也試圖與對上傳文件夾的權限問題。 我沒有在debug.log中的任何錯誤只有幾個PHP通知 我有WordPress的3.3,與Apache服務器的窗口。
當我在wordpress中上傳圖片時,出現HTTP錯誤。儘管上傳文件夾中插入了圖片,但是顯示錯誤。圖片上傳HTTP錯誤Wordpress
我試圖用的.htaccess工作 .. SecFilterEngine關 SecFilterScanPOST關 .. 但沒有幹活也試圖與對上傳文件夾的權限問題。 我沒有在debug.log中的任何錯誤只有幾個PHP通知 我有WordPress的3.3,與Apache服務器的窗口。
嘗試通過File-Zilla或其他ftp解決方案而不是內置工具上傳圖像?
只是一個建議。
安裝將GD設置爲默認WP_Image_Editor類的「Default to GD」插件。
的插件(目前)可以在這裏找到:https://github.com/getsource/default-to-gd/blob/master/default-to-gd.php
它具有功能:
<?php
/*
Plugin Name: Default to GD
Plugin URI: http://wordpress.org/extend/plugins/default-to-gd
Description: Sets GD as default WP_Image_Editor class.
Author: Mike Schroder
Version: 1.0
Author URI: http://www.getsource.net/
*/
function ms_image_editor_default_to_gd($editors) {
$gd_editor = 'WP_Image_Editor_GD';
$editors = array_diff($editors, array($gd_editor));
array_unshift($editors, $gd_editor);
return $editors;
}
add_filter('wp_image_editors', 'ms_image_editor_default_to_gd');
剛剛嘗試下面的代碼主題的functions.php文件添加:
add_filter('wp_image_editors', 'change_graphic_lib');
function change_graphic_lib($array) {
return array('WP_Image_Editor_GD', 'WP_Image_Editor_Imagick');
}
更多解決此問題的方法訪問此鏈接HOW TO FIX HTTP ERROR WHEN UPLOADING IMAGES
我試圖也上傳圖像,但它沒有顯示在媒體庫 – khadkaboy
這是因爲他們沒有上傳到wp數據庫。圖像有多大?你爲什麼使用它們? – MPhil
圖像大約25kb.It用於特色image.I曾與靜態url圖像,但只能在編輯器內使用 – khadkaboy