Mantis Bugtracker – Disable User Registration

Mantis Bugtracker – Disable User Registration:

User Registration is enabled after installation of Mantis,
so everyone can easily create an account.

Obviously there is no possibility to disable this via the
admin interface.

To disable it, you have to open the file config_inc.php
via FTP in the mantis root directory and add the following line:

$g_allow_signup = OFF;


The content of our file ‘config_inc.php’ now:

<?php
$g_hostname = ‘localhost’;
$g_db_type = ‘mysql’;
$g_database_name = ‘ourdbname’;
$g_db_username = ‘ourusername’;
$g_db_password = ‘************’;
$g_db_table_prefix = ‘hB9sy’;
$g_administrator_email = ‘contact@varLab.com’;
$g_webmaster_email = ‘contact@varLab.com’;
$g_from_email = ‘contact@varLab.com’;
$g_return_path_email = ‘contact@varLab.com’;
$g_allow_signup = OFF;