IPG Open EdX Documentation

IPG Open EdX Documentation

  • Docs

›Configuration

Creating a Course

  • Create a New Online Course
  • Set Course Schedule & Details
  • Add Sections, Subsections & Units
  • Managing Unit and Component
  • Adding Videos
  • Adding HTML
  • Adding Discussions
  • Adding Problems

    • Adding Problems
    • Problem Types
    • Drag and Drop
    • Pointing on a picture
  • Adding Images and Figures
  • Uploading Static Content
  • Course Visibility
  • Creating pages
  • Grading
  • Commonly Used Advanced Settings

Running a Course

  • Managing Certificates
  • Common Instructor Dashboard Tasks
  • Managing Course Discussions

Advanced Management

  • Importing / Exporting Courses
  • Change a user’s password
  • Inactivate / Activate a User
  • Set a user to staff or superuser
  • Server Tasks

    • SSH into Server
    • Set or Change a Password
    • Add a microsite
    • Add a theme

Migration

  • Migrate EdX (Single-Server)
  • Migrate the Theme

Configuration

  • Enable and Update Additional Languages
  • Enable Downloads from Instructor tab in LMS
  • Configure and Enable Certificate
  • Configure Open Response Assessment

Enable Downloads from Instructor tab in LMS

These instructions will allow you to enable downloads from instructor tab in LMS.

First, create symlink to true location of .csv files(/tmp/edx-s3/grades) in (/edx/var/edxapp/media) directory.

Issue the following command from the terminal:

ln -s /tmp/edx-s3/grades /edx/var/edxapp/media

Make the following changes in nginx configuration. First, open the lms nginx file from your favourite editor.

Issue the following command from the terminal:

sudo nano /etc/nginx/sites-enabled/lms

Find the following code on the file:

location ~ ^/media/(?P<file>.*) {
root /edx/var/edxapp/media;
try_files /$file =404;
expires 31536000s;
}

Change it to the following line of codes:

location ~ ^/media/(?P<file>.*) {
root /edx/var/edxapp/media;
try_files /$file /media/grades/$file;
expires 31536000s;
}

location ~ ^/grades/(?P<file>.*) {
root /edx/var/edxapp/media/grades;
try_files /$file =404;
expires 31536000s;
}

Restart the nginx service by issuing the following command:

sudo service nginx restart
← Enable and Update Additional LanguagesConfigure and Enable Certificate →
IPG Open EdX Documentation
Docs
Create an Online Course
More
Curricu.me Website
Copyright © 2020 Todos los Derechos Reservados - IPG