제가 플러그인을 몇개 깔다가 문제가 생겼는지, "저장" 기능 버튼이 "K보드 게시판 관리페이지"에 없어졌습니다.
이럴경우, 어떻게 해야 하나요? 업그레이드는 이미 최근 버전으로 한 상태입니다.
안녕하세요~^^
워드프레스 관리자 페이지에서 말씀이시죠?
KBoard 게시판 플러그인을 업데이트 하시고 댓글 플러그인은 업데이트가 안된건지 확인 해보시겠어요?
게시판과 댓글 플러그인 모두 업데이트를 해주셔야합니다.
또한 정확한 원인을 파악하기 위해서 워드프레스 디버그 모드를 활성화 해서 에러 메시지를 확인 해보시겠어요?
워드프레스의 wp-config.php 파일에서
define('WP_DEBUG', false); -> define('WP_DEBUG', true);
이렇게 수정해주시면 디버그 모드가 활성화 됩니다.
또는 워드프레스 디버그 모드 대신 아래 플러그인으로 오류 내용을 확인할 수 있습니다.
https://ko.wordpress.org/plugins/error-log-monitor/
고맙습니다.
To enable error logging, create an empty file named "php-errors.log". Place it in a directory that is not publicly accessible (preferably outside your web root) and ensure it is writable by the web server. Then add the following code to wp-config.php
:
ini_set('log_errors', 'On'); ini_set('error_log', '/full/path/to/php-errors.log'); error_reporting(E_ALL);
For reference, the full path of the WordPress directory is:
/host/home1/philgosu/html/
플러그인 깔고 에러 검사를 하니 다음과 같이 나옵니다. 어떻게 수정해야하나요 >?
해당 메시지는 플러그인에서 나오는 메시지로서 php-errors.log 파일을 만들라는 메시지 입니다.
/host/home1/philgosu/html/php-errors.log 이쪽 경로에 만들어주세요.
추가로 wp-config.php 파일에 아래 코드도 추가를 해주셔야 플러그인이 정상동작 하겠습니다.
ini_set('log_errors', 'On');
ini_set('error_log', '/host/home1/philgosu/html/php-errors.log');
error_reporting(E_ALL);
결국 wp-config.php 파일을 수정해주셔야 에러 메시지를 확인하실 수 있겠습니다.
에러 메시지가 있어야 원인을 알 수 있으니 확인해보시겠어요?
게시판과 댓글 플러그인을 업데이트를 해보셨는지요?
고맙습니다.