0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CakePHP Debugキットのアイコン表示がおかしくなる

Last updated at Posted at 2019-04-12

画面右下に出てくるCakePHPのDebugキットの表示がおかしくなった

↓正しい表示
image.png

表示がおかしかった際の画像は撮り忘れていたので無いのですが、アイコンの部分に上下左右のスクロールバーが表示されており、Debugキットを使うことができませんでした。

対応

アプリケーションフォルダ\tmp\cache フォルダ内のファイル、フォルダをすべて削除したら解消しました。

考察

キャッシュファイルが残っていたのが原因らしい。
キャッシュとかログファイルの肥大化とか、対策を講じる必要があると思う。

追記

  • キャッシュの削除はコマンドを使うのが正しい操作みたい。
  • キャッシュの生存期間については config\app.phpファイル内の設定を変更すれば良いらしい。
  • ログ設定もconfig\app.phpファイルを以下のように追記すれば良さそう
app.php
    /**
     * Configures logging options
     */
    'Log' => [
        'debug' => [
            'className' => 'Cake\Log\Engine\FileLog',
            'path' => LOGS,
            'file' => 'debug',
            'url' => env('LOG_DEBUG_URL', null),
            'scopes' => false,
            'levels' => ['notice', 'info', 'debug'],
			'size' => '100KB', // ←コレ
			'rotate' => 10, // ←コレ
        ],
        'error' => [
            'className' => 'Cake\Log\Engine\FileLog',
            'path' => LOGS,
            'file' => 'error',
            'url' => env('LOG_ERROR_URL', null),
            'scopes' => false,
            'levels' => ['warning', 'error', 'critical', 'alert', 'emergency'],
			'size' => '100KB', // ←コレ
			'rotate' => 10, // ←コレ
        ],
        // To enable this dedicated query log, you need set your datasource's log flag to true
        'queries' => [
            'className' => 'Cake\Log\Engine\FileLog',
            'path' => LOGS,
            'file' => 'queries',
            'url' => env('LOG_QUERIES_URL', null),
            'scopes' => ['queriesLog'],
			'size' => '100KB', // ←コレ
			'rotate' => 10, // ←コレ
        ],
    ],

rotateは、保持するファイル数。上記設定であれば、「ログファイルのサイズが100KBになるとファイルを分けて、ファイル数が10を超えると古いものは削除する」ということになる。ハズ。

CakePHP3.7 キャッシュ
CakePHP3.7 ロギング

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?