본문 바로가기
IT, 인터넷 트랜드/웹제작팁&테크

워드프레스 5.3 이상 버전 업데이트 후 이미지 업로드 에러 - Post-processing of the image failed likely because the server is busy or does not have enough resources. Uploading a smaller image may help. Suggested maximum size is 2500 p..

by 시너지메이커9 2020. 4. 7.
반응형

워드프레스 5.3 이상 버전 업데이트 후 이미지 업로드 에러로 이미지가 안올라갈때!!

워드프레스 이미지 업로드 안될때



Post-rocessing of the image failed likely because the server is busy or does not have enough resources. Uploading a smaller image may help. Suggested maximum size is 2500 pixels.

워드프레스 이미지 업로드 에러



이미지 업로드가 안되는 경우 스크립트 추가로 임시해결
해당 테마에서 

function.php 에 다음 코드 추가하시면 됩니다.

add_filter( 'big_image_size_threshold', '__return_false' );


또는 플러그인 형태로 해결하셔도 됩니다.
Install the “Disable “BIG Image” Threshold” plugin, provided by Jonathan Desrosiers ( Many thanks to you, Jonathan ). You can search the plugin in your Admin Dashboard area -> Plugins, or download it from here: https://wordpress.org/plugins/disable-big-image-threshold/

 

Disable "BIG Image" Threshold

Disables the "BIG image" threshold introduced in WordPress 5.3.

wordpress.org

 

반응형