WordPress在使用的時(shí)候是否有遇到過上傳大圖出錯(cuò)的問題?主要是因?yàn)槟壳癢P上傳圖片的時(shí)候有增加圖片的自動(dòng)處理,如果圖片太大,可能無(wú)法處理,導(dǎo)致出錯(cuò)。
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.
比如有出現(xiàn)這樣的錯(cuò)誤。
這個(gè)主要問題是服務(wù)器和網(wǎng)站的網(wǎng)絡(luò)超時(shí)導(dǎo)致的,我們可以禁止掉處理大圖的功能。
add_filter( 'big_image_size_threshold', '__return_false' );
如果需要處理大圖,我們可以提高服務(wù)器的配置。
評(píng)論