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.

とりあえずCakePHP3を動かしてみたメモ

Posted at

#1.Composerインストール

cd ~
curl -s https://getcomposer.org/installer | php

#2.CakePHPインストール(というかプロジェクト用にDL)

php composer.phar create-project --prefer-dist cakephp/app my_app_name_path

#3.Apacheの設定を適当に
公開するディレクトリをmy_app_name_pathに設定する。
my_app_name_pathの例:
/var/www/html とか
/home/ubuntu/my_app
ということ

#4.アクセスしてみる
CakePHPの最初のページが出る

#その他
2.の前に以下が必要(設定・インストール済みなら問題なし)

sudo aptitude install php5-intl

ついでにこれも
sudo a2enmod rewrite

###以上、Ubuntu 14.04/PHP5.5.9にて確認

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?