上传图像时出现HTTP错误

时间:2012-05-09 作者:urok93

我在上传图片到帖子时遇到“HTTP错误”。这可能是什么原因?这种情况并非总是发生,有时我会出错,再试一次,然后上传文件。实际上,文件似乎总是上传,但它不会生成大小不同的图像或任何东西。

1 个回复
SO网友:chifliiiii

根据问题的原因,有两种不同的解决方案。

在您的情况下,这似乎不是上载问题。我宁愿尝试添加the following plugin

<?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\' );
?>
这将更改默认图像编辑器

结束

相关推荐

404从wp-Content/Uploads/获取图像时

我在获取图像时获得404状态,http仍然包含该图像。图像显示在浏览器中,但404代码中断了一些应用程序。对wp内容/上载/的调用被重定向到。htaccess:<IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\\.php$ - [L] RewriteRule (.*) /index.php?getfile=$1 [L] </IfModule>&