Search found 8567 matches

by atrol
Yesterday, 21:22
Forum: Help
Topic: [RESOLVED] Print report in Word or HTML - exclude private notes
Replies: 2
Views: 53

Re: Print report in Word or HTML - exclude private notes


Or is there a way to add the option "Print Report" to the customer directly (Access Level: reporter)?


There is option $g_print_reports_threshold (default UPDATER).
Set it to REPORTER
See Admin Guide https://mantisbt.org/docs/master/en-US/Admin_Guide/html-desktop/#admin.config.misc


I am ...
by atrol
20 Apr 2026, 16:32
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

emiliusz wrote: 20 Apr 2026, 07:11 and it says Create a new account:1 again.
The output ":1" is telling that $g_allow_signup is set to ON
Set in config_inc.php

Code: Select all

$g_allow_signup=0;
Does this remove the signup link?
by atrol
18 Apr 2026, 14:06
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

emiliusz wrote: 17 Apr 2026, 05:25 When I changed it, your suggestion resulted in an error that the page wasn't responding.
That's strange.
Please try again and check what is in your web server and / or PHP error log.
by atrol
16 Apr 2026, 20:07
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

Please attach a screenshot of your login page after changing line 276 of login_page.php to

Code: Select all

echo '<a class="back-to-login-link pull-left" href="signup_page.php">', lang_get( 'signup_link' ) . ":" . config_get_global( 'allow_signup' ), '</a>';
by atrol
16 Apr 2026, 19:20
Forum: Help
Topic: MantisBT Official Tracker not public any more?
Replies: 6
Views: 746

Re: MantisBT Official Tracker not public any more?

@rweiss I created the account, you should have received an email to activate the account.
by atrol
14 Apr 2026, 15:59
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

Do you use LDAP for authentication? (check setting $g_login_method for that)
Did you disable email email notifications? (check setting $g_enable_email_notification for that)
by atrol
14 Apr 2026, 15:43
Forum: Help
Topic: MantisBT Official Tracker not public any more?
Replies: 6
Views: 746

Re: MantisBT Official Tracker not public any more?

@rweiss anonymous access is again (temporarily) disabled due to DDOS attacks. In addition to that, signup is temporarily disabled.
This might change in the next few days depending on the DDOS traffic we get.

I could create an account for you, so you could login to access the change log.
Let me know ...
by atrol
11 Apr 2026, 16:30
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

and changed it in config_defaults_inc.php
Never ever change this file. It's not needed and your changes will be lost when upgrading.

To be complete sure that the right file is changed, add the following line to file config_inc.php
die ("Hello");
After that, you should see nothing more than ...
by atrol
09 Apr 2026, 16:41
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 710

Re: Disabling the ability to register a new account from the login panel

Are you complete sure you changed the right file?
Maybe you have multiple instances running.
by atrol
06 Apr 2026, 12:22
Forum: General Plugin Discussion
Topic: Mantis Kanban Board update once again
Replies: 2
Views: 7915

Re: Mantis Kanban Board update once again

Maybe you did not find it, as this version is not stored in default branch
https://github.com/mantisbt-plugins/Man ... antisBT2.x
by atrol
25 Feb 2026, 23:33
Forum: EmailReporting
Topic: PHP 8 TypeError in email_store() when submitting new issue
Replies: 1
Views: 112

Re: PHP 8 TypeError in email_store() when submitting new issue


In the email_bug_info_to_one_user() function, the call to:

email_store( $t_user_email, $t_subject, $t_message, $t_mail_headers );

passed null as the 4th argument ($p_headers) under certain conditions.

Please explain what you mean with "certain conditions", how $t_mail_headers can become null.
by atrol
06 Jan 2026, 17:04
Forum: General Discussion
Topic: changelog and bugtracker not reachable
Replies: 3
Views: 636

Re: changelog and bugtracker not reachable

diedie2 wrote: 06 Jan 2026, 08:09Or is this also intended?
Not intended, but a known bug that will be fixed in 2.28.1, see https://mantisbt.org/bugs/view.php?id=36810