当我尝试在我的wordpress网站上传HTTP图像时出现HTTP错误。但是,上传的图片很少。如下图所示
我尝试过很多在stackoverflow上找到的方法。我已经增加了PHP文件限制,还在.httaccess上添加了以下代码
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
# Exclude the file upload and WP CRON scripts from authentication
<FilesMatch "(async-upload\.php|wp-cron\.php|xmlrpc\.php)$">
Satisfy Any
Order allow,deny
Allow from all
Deny from none
</FilesMatch>
我也使用此代码SetEnv MAGICK_THREAD_LIMIT 1
以及此方法How to Fix HTTP Error When Uploading Images?
没有什么对我有用。请帮我解决这个问题。