워드프레스 5.x 이하에서 disk_free_space 함수 오류
워드프레스 5.x 이하에서 PHP8.x 로 업그레이드 시 disk_free_space 함수 오류 발생
Uncaught Error: Call to undefined function disk_free_space() in /www/catmos_405/public/wp-admin/includes/file.php:1666
- PHP8.x 에서 호스팅사 별로 PHP 컴파일 시 제외시키는 경우가 있슴
테마의 functions.php 파일에 추가
// Kinsta PHP8.x Fix
if ( !function_exists('disk_free_space') ):
function disk_free_space($a='/') {
return false;
}
endif;