Edjet LMS Server

Upload installer to your server

Upload installer to the server via SFTP and unzip the package:

  1. Use any SFTP client to upload the Edjet LMS installation package to server to /home/ubuntu folder.
  2. 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.
  3. Install unzip
  4. 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.
  5. 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.
Related