Edjet LMS Server
Upload installer to your server
Upload installer to the server via SFTP and unzip the package:
- Use any SFTP client to upload the Edjet LMS installation package to server to /home/ubuntu folder.
- Clear all files (including hidden, .htaccess etc) in the folder /var/www/html
sudo rm -rf /var/www/html/
Note: notices about “.” and “..” folders cannot be deleted can be shown.
- Install unzip
- Extract the archive to var/www/html
sudo unzip /home/ubuntu/edjet_lms_downloadable_x.x.x.zip -d /var/www/html
Note: replace the “x.x.x” by the version to be installed.
- Change permissions for /var/www/html folder:
sudo chmod -R 775 /var/www/html
sudo chown -R www-data:www-data /var/www/html
Note: This is recommended step as we need the installer to be able to write permissions otherwise the installation will fail.