牌語備忘録 -pygo

あくまでもメモです。なるべくオフィシャルの情報を参照してください。

牌語備忘録 -pygo

CakePHP のデフォルトWebページに出たエラー・ワーニングなどをどうにかするメモ

データベース設定

Database connection "Mysql" is missing, or could not be created.
解決

baketest/app/Config/database.phpの、'host' => 'localhost'を'127.0.0.1'に変更する

参考サイト

salt と cipherSeed の値を変更する

Notice (1024): Please change the value of 'Security.salt' in APP/Config/core.php to a salt value specific to your application. [CORE/Cake/Utility/Debugger.php, line 849]
Notice (1024): Please change the value of 'Security.cipherSeed' in APP/Config/core.php to a numeric (digits only) seed value specific to your application. [CORE/Cake/Utility/Debugger.php, line 853]
解決

ecurity.salt と Security.cipherSeed の値を変更する
app\Config\core.php

	Configure::write('Security.salt', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
:
	Configure::write('Security.cipherSeed', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx');

参考サイト

DebugKit が無い

DebugKit is not installed. It will help you inspect and debug different aspects of your application.
You can install it from github
解決
$ cd app/Plugin/
$ git clone https://github.com/cakephp/debug_kit.git DebugKit

app/Config/bootstrap.php

CakePlugin::loadAll();