0
0

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.

CakePHP2.xの初期構築

Posted at

環境

  • Centos6.x

ミドルウェアのセットアップ

  • php
  • apache
  • mysql
  • pdo
  • composer

CakePHPの設置

  • ソースの取得
    $ composer require cakephp/cakephp:"~2.9"

  • ドキュメントルートの設定

  • セキュリティ設定
    app/Config/Core.php
    Security.salt
    Security.cipherSeed

  • app/tmpディレクトリの権限変更

  • データベースの設定
    データベース作成
    app/Config/database.php

  • ブラウザより動作確認

more

  • マイグレーションプラグインの導入
  • bake
$ cd MyApp/app
$ ./Console/cake bake all [モデル名]
0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?