Skip to content

Instantly share code, notes, and snippets.

@thapakazi
Last active December 26, 2015 20:29
Show Gist options
  • Save thapakazi/7208790 to your computer and use it in GitHub Desktop.
Save thapakazi/7208790 to your computer and use it in GitHub Desktop.
⚔Moodle Installation with xampp in Mac
→ first download the xampp from http://www.apachefriends.org/en/xampp-macosx.html#849
$ wget -c http://www.apachefriends.org/download.php?xampp-osx-1.8.2-2-installer.dmg
→ install it
$ hdiutil mount xampp-osx-version-number.dmg
$ cd /Volumes/xampp_mounted_directroy
$ sudo cp -Rv xampp_app_file.app /Application
don't forget to detatch the mounted volume
$ hdiutil detach <path-to-mountpoint>
and
$ cd /Applications/XAMPP/xamppfiles/htdocs
→ then clone the git repo there
$ 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
→ Now fire up the xampp and link http://localhost/
OK, its done now :D
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment