解决WordPress无法上传大图及上传大图出错的问题

老乐 优化维护3字数 372阅读1分14秒阅读模式

WordPress在使用的时候是否有遇到过上传大图出错的问题?主要是因为目前WP上传图片的时候有增加图片的自动处理,如果图片太大,可能无法处理,导致出错。

The server can’t process the image. This can happen if the server is busy or does not have enough resources to complete the task. Uploading a smaller image may help. Suggested maximum size is 2560 pixels.

比如有出现这样的错误。

这个主要问题是服务器和网站的网络超时导致的,我们可以禁止掉处理大图的功能。

add_filter( 'big_image_size_threshold', '__return_false' );

如果需要处理大图,我们可以提高服务器的配置。

投上你的一票
 
  • 本文由 老乐 发表于 2025年1月13日 09:09:20
  • 转载请务必保留本文链接:https://www.zhujipingjia.com/cannot-uploadbigimg.html
  • WordPress无法传大图