Cakeをリリースする時には 

以下の設定はお忘れなく。

  • cakephp/app/tmpの書き込み権限
    ここに、キャッシュファイルが作られる。
    キャッシュファイルを削除するのも忘れずに。
  • cakeapp/app/Config/core.phpのデバックレベルを0に!
    これをしないといろいろ丸見えになる。

    /**
     * CakePHP Debug Level:
     *
     * Production Mode:
     *  0: No error messages, errors, or warnings shown. Flash messages redirect.
     *
     * Development Mode:
     *  1: Errors and warnings shown, model caches refreshed, flash messages halted.
     *  2: As in 1, but also with full debug messages and SQL output.
     *
     * In production mode, flash messages redirect after a time interval.
     * In development mode, you need to click the flash message to continue.
     */
        Configure::write('debug', 0);
  • あと、404や500のエラー画面がご丁寧にcakeの宣伝をしまくるため、変えた方がよいかもしれません。