openedx

Openedx Native installation : theme change not working

走远了吗. 提交于 2019-12-25 01:45:59
问题 I have installed openedx using Native installation method. Now I want to change the default logo. As a test, i removed the logo from the folder /edx/app/edxapp/edx-platform/lms/static/images . But when i open the localhost , its still there. (lms view) . In inspect view, the logo name appears as /static/images/logo.b6c374d66d57.png . The same operation when I perform in devstack , The logo changes successfully. What am I missing? Since I am using the default theme, I think I don't need to

Docker Openedx devstack theming

和自甴很熟 提交于 2019-12-23 02:26:24
问题 How do I install and enable my custom theme in OpenEdx's docker based DevStack? I use comprehensive theming I use docker on Linux 回答1: The LMS and CMS read many configuration settings from the container filesystem in the following locations: /edx/app/edxapp/cms.env.json /edx/app/edxapp/cms.auth.json Since you are using docker DevStack, shell into LMS, CMS to find those files. shell into LMS make lms-shell Shell into CMS make studio-shell You can create this directory at any location on a file

Integrating HTML5 EME video with edX platform: Why is “initDataType” empty?

折月煮酒 提交于 2019-12-12 05:39:49
问题 I have been trying to integrate HTML5 EME videos with edX video xblock In that I am facing this error: Failed to generate a license request DOMException: The initData parameter is empty. <script > 'use strict'; // Define a key: hardcoded in this example // This corresponds to the key used for encryption var KEY = new Uint8Array([ 0xeb, 0xdd, 0x62, 0xf1, 0x68, 0x14, 0xd2, 0x7b, 0x68, 0xef, 0x12, 0x2a, 0xfc, 0xe4, 0xae, 0x3c ]); var config = [{ initDataTypes: ['webm'], videoCapabilities: [{

Single sign on between different domain and platfomm

时光毁灭记忆、已成空白 提交于 2019-12-11 23:46:16
问题 How to achieve single-sign-on between two different domain and platform. I have created a site in open-edx and use my other wordpress site as user sign in. My issue is if I am login to wordpress site and open my edx site it should be logged in and redirect me to my profile page. How can I identify in edx site that I am alredy logig in other site and take me to the profile page, like youtube and gmail. Thanks. 回答1: There is a WordPress plugin developed by eduNext. You can customize the

feasibility to setup an Open Source Platform “edX” - http://en.wikipedia.org/wiki/EdX

丶灬走出姿态 提交于 2019-12-08 12:41:57
问题 I have just heard of this open source early in this morning, and hook into google for searching about this,but seems like google have limited options too. I found this one https://github.com/edx/configuration/wiki/edX-Ubuntu-12.04-Installation ,but it is for ubuntu I am using mac 10.8.3 ,my question is 1.is it possible to install it on my mac machine 2.Where can i find the downloads of this open source 3.Which is the best tutorial to install edX With Regards 回答1: 1) Yes you can install the

authenticate function in django using hashed password not the raw one

天涯浪子 提交于 2019-12-07 21:20:14
问题 I am working on openedx(which runs on django) and the user will be redirected here from other site and i'm being given the hashed password from there. Authenticate(username,password) excepts raw password like "dragon" not the hashed one, So I need to use the authenticate() with the hashed password so that I can get the ".backend" attribute and move on with my life. When I use login(request,user) without the authenticate method. this error appears: request.session[BACKEND_SESSION_KEY] = user

Open Edx update logo

狂风中的少年 提交于 2019-12-07 13:00:41
问题 I am trying to change logo image on my Edx site. I go to folder /edx/app/edxapp/edx-platform/lms/static/images/default-theme and upload new logo image, but when I update website, my logo is not updated also I restarted lms and cms, but it doesnt help to solve a problem 回答1: Dmitri you are using the wrong path, to change logo : Go to the /edx/var/edxapp/staticfiles/images/ Replace the image header-logo.png with new logo image. Note : filename and file extension should stay header-logo and png

authenticate function in django using hashed password not the raw one

百般思念 提交于 2019-12-06 05:22:40
I am working on openedx(which runs on django) and the user will be redirected here from other site and i'm being given the hashed password from there. Authenticate(username,password) excepts raw password like "dragon" not the hashed one, So I need to use the authenticate() with the hashed password so that I can get the ".backend" attribute and move on with my life. When I use login(request,user) without the authenticate method. this error appears: request.session[BACKEND_SESSION_KEY] = user.backend AttributeError: 'User' object has no attribute 'backend' So I need to use the authenticate

Open Edx update logo

烈酒焚心 提交于 2019-12-06 02:42:31
I am trying to change logo image on my Edx site. I go to folder /edx/app/edxapp/edx-platform/lms/static/images/default-theme and upload new logo image, but when I update website, my logo is not updated also I restarted lms and cms, but it doesnt help to solve a problem Rizky Ariestiyansyah Dmitri you are using the wrong path, to change logo : Go to the /edx/var/edxapp/staticfiles/images/ Replace the image header-logo.png with new logo image. Note : filename and file extension should stay header-logo and png , respectively? Restart the LMS. Thanks. It looks like you should run collectstatic