Page 1 of 1

Autoregistration, possible?

Posted: 12 Aug 2022, 02:31
by MarisaG2
Hello, is there a way to allow people to register from the front end so I don't have to manually create team members? I want players of my RPG to be able to join & post bugs at the same time...

Re: Autoregistration, possible?

Posted: 12 Aug 2022, 07:03
by cas
You should check all the available config options, you then will find:
/**
* Allow users to signup for their own accounts.
* If ON, then $g_send_reset_password must be ON as well, and mail settings
* must be correctly configured
* @see $g_send_reset_password
* @global integer $g_allow_signup
*/
$g_allow_signup = ON;
So add the above line to core/config_inc.php

Re: Autoregistration, possible?

Posted: 12 Aug 2022, 08:06
by MarisaG2
Thanks! I found it here: /var/www/html/mantisbt-2.25.5/config/config_inc.php...