Page 1 of 1
disabling registration?
Posted: 13 Sep 2005, 20:40
by anderiv
Is there a way to disable public user registrations? Cause of the way our mantis will be used, I'll just be creating accounts manually.
I'm on Mantis 1.0.0-rc1
thanks!
comment out the print_signup_link and print_lost_password...
Posted: 13 Sep 2005, 23:20
by roys
Edit the login_page.php, and look for the
print_signup_link();
PRINT ' ';
print_lost_password_link();
PRINT '</div>';
and comment them out. So the two links on the login page will be gone and your Users won't be able to register.
Posted: 14 Sep 2005, 00:05
by Narcissus
Probably a better solution would be to just set $g_allow_signup in your configuration to false.
Posted: 14 Sep 2005, 00:46
by anderiv
Narcissus wrote:Probably a better solution would be to just set $g_allow_signup in your configuration to false.
Perfect! Thanks!
Posted: 27 Jun 2006, 10:11
by rorojiao
You answer my question too:) thanks a lot!