I just installed Mantis and currently it looks like ANYONE at all can register for a new account simply by filling out the form and waiting for their email to arrive so they can activate it. How can I prevent ANYONE from creating a user account? I looked all around and thought this would be a simple configuration tweak in some menu somewhere. Am I missing something?
Thanks in advance for all your help!
Preventing ANYONE from creating a user account
Moderators: Developer, Contributor
Re: Preventing ANYONE from creating a user account
You want
$g_allow_signup = OFF; // Disable sign-up page.
in your config_inc.php file.
I find that when looking for an option, searching the config_defaults.php is a big help - the variables are well named and the comments adequate.
$g_allow_signup = OFF; // Disable sign-up page.
in your config_inc.php file.
I find that when looking for an option, searching the config_defaults.php is a big help - the variables are well named and the comments adequate.
Re: Preventing ANYONE from creating a user account
I did it, I put "$g_allow_signup = OFF;" to the config_defaults_inc.php, but there is still possibility to create account on the login page.
Any idea how to help me?
Thank in advance.
Any idea how to help me?
Thank in advance.
Re: Preventing ANYONE from creating a user account
Although this should work, don't change config_defaults_inc.php (your changes will not be preserved when updating) but config_inc.phpvida wrote:to the config_defaults_inc.php
Seems you have a typo or you entered your line in file config_defaults_inc.php before the original setting to ON
Re: Preventing ANYONE from creating a user account
Oh, thank you, I didn't know that there is the same variable in config_inc.php. Now it's OK. Thank you!atrol wrote:Although this should work, don't change config_defaults_inc.php (your changes will not be preserved when updating) but config_inc.php
Seems you have a typo or you entered your line in file config_defaults_inc.php before the original setting to ON