4
4

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.

EC-CUBEをmac内にインストールする方法

4
Posted at

テストでEC-CUBEをmac内にインストールする方法

mysqlの初期設定まで

自分の環境にbrewでmysql51が入っていたので、5.6をインストール&リンク

brew install mysql
brew unlink mysql51
cd /usr/local/var/mysql
rm -f ib_logfile*
rm ibdata1
# 余計なものがなければ以下だけで大丈夫なはず
brew link mysql
mysql.server start
mysql -uroot
データベース作成
create database eccube_db;
create user eccube_db_user;
GRANT ALL ON eccube_db.* TO 'eccube_db_user'@'localhost' IDENTIFIED BY 'eccube_db_user';

EC-CUBEのインストール

  • ソースコードを本家サイトからダウンロード http://www.ec-cube.net/download/
    • ユーザー登録が必要(ダルい)
  • zipファイルを解凍
  • phpのビルトインサーバで起動
unzip eccube-2.13.2.zip 
cd eccube-2.13.2/html/
php -S localhost:8000 # 5.3以前だと動かないはず
open http://localhost:8000/
4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?