![]() | P:+91-9555-192-192 |
RANKED 11TH IN INDIA IN AIMA B SCHOOL SURVEY BY BUSINESS INDIA | |
![]() ![]() ![]() |
do you have any idea ? what to do?yes i have tried .but no success :(
On Mon, Jul 28, 2014 at 10:54 AM, rajsinghaniaful . <nitin...@gmail.com> wrote:
do you have any idea ? what to do?yes i have tried .but no success :(
Study the code a little, and how this works. You can also search the groups (this has been discussed by various people in different ways, for example: https://groups.google.com/d/msg/edx-code/6t11oQumYz8/TaaxiOrvRYkJ)The summary: don't change this in common.py - it's overridden. Don't change this in /edx/app/edxapp/lms.env.json except during development, to make a "quick" or "test" change.If you search the edx/configuration repository for PLATFORM_NAME or EDXAPP_PLATFORM_NAME you will see where the defaults come from - these are used during an "update" (or in the case of devstack, during a provisioning), by ansible-playbooks.Your approach, then, will involve either setting this in /edx/etc/server-vars.yaml (effecting an ansible "extra-vars" effect - see http://docs.ansible.com/playbooks_variables.html#passing-variables-on-the-command-line, and generally read up on ansible), or in your own playbook files in your own fork of edx/configuration.Since server-vars.yml is created once, then used by the update command, that would probably be a reasonable place to start.
To change LOGO :
1: Go to the /edx/var/edxapp/staticfiles/images directory
2: eplace the image named header-logo.png with new logo image.
Note :- Don't change the name and format of file . it should always be header-logo.png .
3: Restart the LMS.
To change the Platform name
1: open /edx/app/edxapp/edx-platform/lms/envs/common.py file
2: search for the PLATFORM_NAME = "edX"
3: Replace the edX with the appropriate name you want for example praveen
4: open app/edxapp/lms.env.json file.
5: search for the PLATFORM_NAME = "edX"
6: Replace the edX with the appropriate name you want for example praveen
7: Restart the LMS.