[edx-code] Re: Disable Studio Sign Up

2018-02-08 Thread hereisdams
Hi, I am also having similar issue. Have you been able to disable the sign 
up for studio?



On Tuesday, March 15, 2016 at 5:20:11 AM UTC+5:45, Daniel McQuillen wrote:
>
> Apologies if the answer to this question is obvious. Is there a 
> configuration that turns off the "Sign Up" button and methods in studio?
>
> This has been asked before in the forum, without an answer (
> https://groups.google.com/d/msg/edx-code/Q_KMNd3rDpU/bwxP5EPkmMgJ).
>
> A check of cms.env.json doesn't seem to show a env variable that would 
> turn off sign ups. Is it a matter of manually pulling out the UI and server 
> API methods for sign up process? There is the 
> ENABLE_COMBINED_LOGIN_REGISTRATION variable, but I'm not sure of the 
> meaning behind "COMBINED."
>
> Thanks.
>
>

-- 
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/673a7976-e1df-4814-9372-c93559b3a17e%40googlegroups.com.


[edx-code] Re: Disable Studio Sign Up

2016-08-15 Thread Stuart O'Day
This is how I did it:

*sudo apt-get install apache2-utils*

Then to create the file,

*sudo htpasswd -c /edx/app/nginx/.htpasswd  *

Then,

*sudo htpasswd /edx/app/nginx/.htpasswd *


Then follow @Juanito update of the cms file to Restrict


Then,

*sudo service nginx reload*




On Monday, March 14, 2016 at 7:35:11 PM UTC-4, Daniel McQuillen wrote:
>
> Apologies if the answer to this question is obvious. Is there a 
> configuration that turns off the "Sign Up" button and methods in studio?
>
> This has been asked before in the forum, without an answer (
> https://groups.google.com/d/msg/edx-code/Q_KMNd3rDpU/bwxP5EPkmMgJ).
>
> A check of cms.env.json doesn't seem to show a env variable that would 
> turn off sign ups. Is it a matter of manually pulling out the UI and server 
> API methods for sign up process? There is the 
> ENABLE_COMBINED_LOGIN_REGISTRATION variable, but I'm not sure of the 
> meaning behind "COMBINED."
>
> Thanks.
>
>

-- 
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/390819d1-1305-4b25-abde-e5558009596f%40googlegroups.com.


Re: [edx-code] Re: Disable Studio Sign Up

2016-08-15 Thread Ki Hwan Song
in /edx/app/nginx/sites-available/cms

location / {


 auth_basic"Restricted";
 auth_basic_user_file  /edx/app/nginx/nginx.htpasswd;



}

On Mon, Aug 15, 2016 at 8:26 AM,  wrote:

> How do i go about enabling HTTP Basic Auth for studio? Any pointers or
> docs you can help me with?
>
> - Abhilash
>
> On Tuesday, March 15, 2016 at 6:16:56 AM UTC+5:30, Daniel McQuillen wrote:
>>
>> Thanks for the suggestion, Juanito. Might just do that.
>>
>> I've set *"DISABLE_COURSE_CREATION" : true* in my cms.env.json, but that
>> still allows arbitrary sign ups, and those users can still create
>> "Libraries" even if they can't create courses.
>>
>> Using HTTP Basic Auth is serviceable, but then existing users have to
>> sign in twice, which isn't ideal.
>>
>> - Daniel
>>
>> --
> You received this message because you are subscribed to a topic in the
> Google Groups "General Open edX discussion" group.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/edx-code/8be7efc5-6348-4839-bbe7-7920e63c858f%40googlegroups.com
> 
> .
>



-- 
Ki Hwan Song
송기환

-- 
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/CAF47s4zB-8qRfS6G0Vs08DNTbWhiS3-Pf%3DdUPiPHeeDWgwT1Bw%40mail.gmail.com.


Re: [edx-code] Re: Disable Studio Sign Up

2016-08-15 Thread abhilash
How do i go about enabling HTTP Basic Auth for studio? Any pointers or docs 
you can help me with?

- Abhilash

On Tuesday, March 15, 2016 at 6:16:56 AM UTC+5:30, Daniel McQuillen wrote:
>
> Thanks for the suggestion, Juanito. Might just do that.
>
> I've set *"DISABLE_COURSE_CREATION" : true* in my cms.env.json, but that 
> still allows arbitrary sign ups, and those users can still create 
> "Libraries" even if they can't create courses.
>
> Using HTTP Basic Auth is serviceable, but then existing users have to sign 
> in twice, which isn't ideal.
>
> - Daniel
>
>

-- 
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/8be7efc5-6348-4839-bbe7-7920e63c858f%40googlegroups.com.