이 오류를 수정하는 방법 치명적인 오류 : 정의되지 않은 함수 호출 ...?
-
-
환경 (WordPress 버전,활성 테마/플러그인 등),일상적이지 않은 일,그리고 어디서/어떻게오류.You're going to need to provide quite a bit more information, about your environment (WordPress version, active Theme/Plugins, etc.), anything out of the ordinary that you might be doing, and where/how you're getting the error.
- 0
- 2011-08-12
- Chip Bennett
-
질문에 대한 편집 대신 실제 답변으로 솔루션을 추가하십시오.Please add your solution as an actual answer instead of as an edit to the question.
- 0
- 2013-08-25
- s_ha_dum
-
7 대답
- 투표
-
- 2011-08-12
wp ()
는 매우 필수적인 기능입니다.그것은functions.php
파일에 있습니다 (테마에서functions.php
와 혼동하지 마십시오,다른 것). 그리고require
지시문이 어느 시점에 있습니다.따라서 설치가 매우 손상된 것 같습니다. 코어의
functions.php
파일이 손상되었거나 다른 파일이 손상되어 해당 파일로드를 건너 뛰게됩니다.wp()
is quite essential function. It resides infunctions.php
file (don't confuse withfunctions.php
in theme, different thing) and I don't think you can load WP without passingrequire
directive for that file at some point.So your install seems very broken - either
functions.php
file in core is damaged or something else is broken and makes it skip loading that file.-
네 맞아요,내가 한 일은 모든 것을 다시 설치하는 것입니다 ... 당신의 대답을 읽기 전에 이미 문제를 해결했지만 당신의 대답은 내 대답과 동일하므로 대답도 선택하겠습니다 :)yes your right man , what I did is I reinstall everything...I fix the problem already before I read your answer, but your answer is same as mine , so I'll pick your answer too :)
- 0
- 2011-08-14
- arnold
-
-
왜 이것이 비추천입니까?제 경우에는 그것이 원인이었습니다.Why is this getting downvoted? It was the cause in my case.
- 1
- 2016-09-15
- br4nnigan
-
이것은 내 쪽에서도 문제였습니다.wp-config의 저장이 중단되고 파일이 비어 있고이 오류가 발생했다고 생각합니다.그것을 복원하고 수정되었습니다.This was the problem on my end too. I think a save of wp-config got interrupted, and the file ended up being blank and was throwing this error. Restored it and it was fixed.
- 1
- 2016-09-30
- sbuck
-
내 wp-config.php가 비게 된 이유를 모르겠습니다.문제가 해결되면 모든 것이 잘 작동했습니다 ...I don't know what made my wp-config.php became empty. Once it was fixed, everything worked fine...
- 0
- 2019-10-27
- amit bakle
-
-
- 2020-04-06
Siteground로 마이그레이션했을 때 Siteground가
wp-config.php
파일의 마지막 줄에있는 포함 파일을 잘못된 디렉토리로 변경 한 이유를 모르겠습니다.올바른 경로는 대신 다음 경로 여야합니다.
/* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) define( 'ABSPATH', dirname( __FILE__ ) . '/' ); /** Sets up WordPress vars and included files. */ require_once( ABSPATH . 'wp-settings.php' );
When I migrated to Siteground, I don't know why Siteground changed the include file in the last line of
wp-config.php
file to a wrong directory.The correct path should be this one instead:
/* That's all, stop editing! Happy blogging. */ /** Absolute path to the WordPress directory. */ if ( ! defined( 'ABSPATH' ) ) define( 'ABSPATH', dirname( __FILE__ ) . '/' ); /** Sets up WordPress vars and included files. */ require_once( ABSPATH . 'wp-settings.php' );
-
- 2013-06-21
이 문제는 디스크 공간이 부족할 때 자동 업데이트를 사용하여 발생할 수 있습니다.이 경우 서버에서 여유 공간을 확보 한 다음 Wordpress를 수동으로 최신 버전으로 업그레이드하십시오.
This problem can be caused by using the automatic update when you don't have enough disk space. If that is the case, free up some space on your server, then upgrade Wordpress to the latest version manually.
-
- 2016-11-16
문제가 손상된 wp-config.php의 결과 인 것 같습니다. 데이터베이스 자격 증명으로 로컬 버전을 업데이트하고ftp를 통해 업로드했으며 작동했습니다.
It seems the issue was a result of corrupted wp-config.php I updated the local version with the database credentials and uploaded via ftp and it worked.
-
- 2020-04-05
같은 문제가 있습니다.더 쉬운 해결책 :
- wp-settings.php 열기
- 다음 줄을 주석 처리합니다 ( "health"검색 :
// if ( ! class_exists( 'WP_Site_Health' ) ) { // require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; // } // WP_Site_Health::get_instance();
- 모든 플러그인 업데이트
- wp-settings.php를 이전 상태로 복원
Had the same issue. Have an easier solution:
- Open wp-settings.php
- Comment out the following lines (search for "health":
// if ( ! class_exists( 'WP_Site_Health' ) ) { // require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php'; // } // WP_Site_Health::get_instance();
- Update all your plugins
- Restore wp-settings.php to the previous state
-
- 2017-08-22
놀랍습니다 ... 치명적인 오류가 있거나 정의되지 않은 기능에 대한 호출이있는 경우 이메일로 이동하여 해당 이메일에 호스팅 주소에서 보낸 메시지가있을 수 있습니다. 다시 설치하거나 로그인 한 해당 이메일 페이지에서... 문제가 수정됩니다 ..
amazing...if you have fatal error or call to undefined funcction jus go to your email and on that email you may have a sent message from your hosting adress...just reinstall or from that email page you log in...problem will be fixed..
-
WordPress는 치명적인 오류에 대해 이메일을 보내지 않습니다.WordPress does not send an email on a fatal error.
- 4
- 2017-08-22
- fuxia
치명적인 오류 : 14 행의/home/content/33/7211533/html/someSite/wp-blog-header.php에서 정의되지 않은 함수 wp () 호출
누구든지 문제가 무엇인지 알아낼 수 있습니까?
이미
<시간>wp-includes
및wp-admin
폴더를 업데이트했는데functions.php
는 괜찮지 만 알아 내지 못했습니다.그것을 고치는 방법.제안이 있으십니까?수정
WordPress를 다시 설치했습니다 (사이트에 새 사본을 업로드하고 최신 상태인지 확인했습니다). 수동 업데이트 .
그 후 정상적으로 작동하기 시작하여 이제이 문제가 해결되었습니다.