CakePHP3에서 DebugKit을 숨기는 방법
하지만 프로덕션 환경에서 웹 앱을 운용할 때는 이 표시를 지워야 합니다.
config/bootstrap.php의 다음 부분을 수정하여 사라집니다.
/*
* Only try to load DebugKit in development mode
* Debug Kit should not be installed on a production system
*/
if (Configure::read('debug')) {
Plugin::load('DebugKit', ['bootstrap' => true]);
}
↓아래와 같이 수정한다.
/*
* Only try to load DebugKit in development mode
* Debug Kit should not be installed on a production system
*/
if (Configure::read('debug')) {
/*本番環境ではfalseにしておく*/
Plugin::load('DebugKit', ['bootstrap' => false]);
}
이제 화면에서 DebugKit 아이콘이 사라집니다.
Reference
이 문제에 관하여(CakePHP3에서 DebugKit을 숨기는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/norikiyo777/items/177484584381eb95a5cd텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)