User:Ranjithraj/installers/moodle

From FSMI WIKI
< User:Ranjithraj‎ | installers
Revision as of 15:35, 2 June 2021 by Ranjithraj (talk | contribs) (→‎Possible errors: Categorized possible errors into 2)
Jump to navigation Jump to search

Install via Composer

  • Create a project
 sudo composer create-project moodle/moodle:^'version.number' moodle-demo
  • Once installed, go to moodle root directory
 composer update --with-all-dependencies

Possible errors

Environment Setup

  1. PHP Dependencies
 sudo apt install php-zip php-intl

Permissions

  1. Parent directory (/var/www) is not writeable. Data directory (/var/www/moodledata) cannot be created by the installer
  • Manually create 'moodledata' folder
  mkdir /var/www/moodledata 
  chmod 0777 /var/www/moodledata
  • Give write permission to '/var/www' folder temporarily
 chmod 0777 /var/www/
 and then reset it to 755