Apparently studio is accessible on port 18010. On Friday, October 14, 2016 at 11:32:27 AM UTC-4, Erik Van de Water wrote: > > Thank you for the response Bastiaan. :) > > I am on a native installation. I used your commands and now the account > has superuser privileges (in addition to the staff privileges it had). > Logging in on the front end, the dashboard unfortunately has not changed. > Also the course creator path still returns 404. > > Is there perhaps a change I need to make in the admin panel to get Studio > running? Or a studio specific URL, like studio.edx.org is studio for edx > partners? > > > On Friday, October 14, 2016 at 11:12:10 AM UTC-4, Bastiaan Franssen wrote: >> >> What type of installation are you using? Is it a full-stack or native >> installation? I assume they should be both the same, but can you also get >> access to the console? If so, you could try to give the user superuser >> credentials via the command prompt: >> >> Go to: */edx/app/edxapp/edx-platform* >> >> >> Then: >> >> >> sudo -u www-data /edx/bin/python.edxapp ./manage.py lms --settings aws shell >> >> >> from django.contrib.auth.models import User >> me = >> User.objects.get(username="user_name_of_the_user_you_want_to_be_super_user") >> me.is_superuser = True >> me.is_staff = True >> me.save() >> >> >> *(Edit: forgot the command to get into the shell)* >> >> >> On Friday, 14 October 2016 16:45:31 UTC+2, Erik Van de Water wrote: >>> >>> I have a user set as staff using the Django admin panel. But when I log >>> into this account, the dashboard appears the same as that of a non-staff >>> account (there are no buttons to create or edit a course). >>> >>> Also, the course creator admin table that should be available at >>> /admin/course_creators/coursecreator/ >>> according to this page: >>> https://github.com/edx/edx-platform/wiki/Controlling-course-creation-rights >>> >>> <https://github.com/edx/edx-platform/wiki/Controlling-course-creation-rights>is >>> >>> not available (404 appears). I'm not sure if these problems are related. >>> >>> If you have any ideas, please share them. This is essential to moving >>> forward and my boss is already mad at me. :( >>> >>
-- You received this message because you are subscribed to the Google Groups "General Open edX discussion" group. To view this discussion on the web visit https://groups.google.com/d/msgid/edx-code/4d09a9f3-5be5-490b-89bb-b8852f433ce3%40googlegroups.com.