Skip to content

Instantly share code, notes, and snippets.

@naokazuterada
Last active December 10, 2015 00:38
Show Gist options
  • Save naokazuterada/4352276 to your computer and use it in GitHub Desktop.
Save naokazuterada/4352276 to your computer and use it in GitHub Desktop.

MODX(revo)のサーバー移行 

すでにサーバー上で運用しているMODXを、ローカル環境(MAMP)に移植する際の手順まとめ

 

注意

/config.core.php や /manager/config.core.php などで大元の設定がされている。


 

(1) /core/cache/ 内のディレクトリを全削除

 

下で無駄に置換しないため

 

(2) 全ファイルでパスを置換

 

/home/sites/hoge/web/mysite.com

/Applications/MAMP/htdocs/mysite

 

(3) /core/config/config.core.php

 

12行目あたりまでにまとめて書いてあるデーターベース関係の設定値を変更

62行目あたりのホスト名を変更

$http_host='mysite.com';

$http_host='localhost:8888';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment