我需要帮助才能使用 xampp 在 mac 中安装 moodle。我不知道如何安装它。请帮助如何通过命令行或其他任何方式在我的 mac 中安装这些工具..
问问题
939 次
1 回答
4
首先从http://www.apachefriends.org/en/xampp-macosx.html#849下载 xampp
$ wget -c http://www.apachefriends.org/download.php?xampp-osx-1.8.2-2-installer.dmg
→ 安装它
$ hdiutil mount xampp-osx-version-number.dmg
$ cd /Volumes/xampp_mounted_directroy
$ sudo cp -Rv xampp_app_file.app /Application
不要忘记分离已安装的卷
$ hdiutil detach <path-to-mountpoint>
和
$ cd /Applications/XAMPP/xamppfiles/htdocs
→ 然后在那里克隆 git repo
$ git clone git://git.moodle.org/moodle.git
$ cd moodle
$ git branch -a
$ git branch --track MOODLE_25_STABLE origin/MOODLE_25_STABLE
$ git checkout MOODLE_25_STABLE
→ 现在启动 xampp 并链接 localhost
好的,现在完成了
于 2013-10-29T05:34:15.230 回答