MyAAC
Official WebsiteDemoDownloadGitHub
  • Welcome!
  • Quick Start
  • Troubleshooting
  • Install
    • Linux
      • Configure web server
      • Install with git
      • Serve
    • Windows
      • Uniform Server (recommended)
      • XAMPP
  • Customize
    • Pages
    • Plugins
      • About plugins
      • Compatibility
    • Templates
  • Misc
    • Updating
    • Contributing
    • TODO
    • Supported servers
    • Stripe
Powered by GitBook
On this page
  • 1. Install git
  • 2. Enter the desired folder where you want to install myaac.
  • 3. Clone the repository from github
  • 4. Enter the folder
  • 5. Adjust file permissions
  • 6. Install Composer
  • 7. Install Composer dependencies
  • 8. Install NPM
  • 9. Install NPM dependencies
  1. Install
  2. Linux

Install with git

Next we will download & install MyAAC with git.

1. Install git

sudo apt install git

2. Enter the desired folder where you want to install myaac.

On linux, this can be /var/www

cd /var/www

3. Clone the repository from github

git clone https://github.com/otsoft/myaac.git

4. Enter the folder

cd myaac

5. Adjust file permissions

Change file owner to www-data (web user)

sudo chown -R www-data:www-data /var/www/*

Set proper file flags (with chmod)

sudo chmod 660 images/guilds
sudo chmod 660 images/houses
sudo chmod 660 images/gallery
sudo chmod -R 760 system/cache

6. Install Composer

7. Install Composer dependencies

After installing composer, install dependencies with following command

php composer.phar install

or just

composer install

(depends on how you installed the composer on your system)

8. Install NPM

TLDR: (Execute following commands to install the latest version of Node.js and NPM on Ubuntu)

1. Download NVM (Node Version Manager)

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash

2. Reconnect ssh client (for example: Exit and login with putty)

3. Verify installation

command -v nvm

If it's ok, you should see "nvm" printed.

4. Install node

nvm install node # "node" is an alias for the latest version

5. Update NPM to latest version

npm install -g npm

9. Install NPM dependencies

If you followed the 8. Step, you should have NPM installed. Now you can install the dependencies.

cd /var/www/myaac
npm install
PreviousConfigure web serverNextServe

Last updated 25 days ago

Visit for more instructions.

Visit for more instructions.

https://getcomposer.org/
https://docs.npmjs.com/downloading-and-installing-node-js-and-npm