文件上传时wordpress中出现500错误。它显示HTTP错误

时间:2014-05-06 09:55:11

标签: wordpress

在文件上传的wordpress中出现500错误。它显示HTTP错误。截图已附上

Error

1 个答案:

答案 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' );
    }