在文件上传的wordpress中出现500错误。它显示HTTP错误。截图已附上
答案 0 :(得分:0)
将此添加到您的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' );
}