The url of edX studio redirects to http://edx.devstack.lms:18000/login?next=http%3A%2F%2F<our_domain_name>%3A18010%2F if signin or signup is click. While it should redirects to http://<our_domain_name>:18000/. How we can change this permanent redirection from “edx.devstack.lms” to our url
You should change the lines code below in the file:
- /edx/app/edxapp/edx-platform/cms/envs/common.py
- #LOGIN_REDIRECT_URL = EDX_ROOT_URL + ‘/home/’ LOGIN_REDIRECT_URL = EDX_ROOT_URL + ‘/signin’
- #LOGIN_URL = reverse_lazy(‘login_redirect_to_lms’) LOGIN_URL = EDX_ROOT_URL + ‘/signin’
- And finally restart services with:
- sudo /edx/bin/./supervisorctl restart all
Already did this, But getting error even after that. Not sure from where it’s fetching “edx.devstack.lms”
It’s working fine after i changed edx.devstack.lms into multiple files.
Ia m having the same problem ,Need Help
I dont understand…