Search found 11 matches

by emiliusz
21 Apr 2026, 05:44
Forum: General Plugin Discussion
Topic: MantisBT-Lightbox (Mantis 2.x)
Replies: 1
Views: 226

Re: MantisBT-Lightbox (Mantis 2.x)


I've forked the archived plugin project that was incompatible with Mantis 2.x and made it work again. Enjoy.

:arrow: https://github.com/bcp-software/MantisBT-Lightbox


When I want to check the "Show Lightbox when click on image link" checkbox, I get an error: The "config_edit" page does not ...
by emiliusz
21 Apr 2026, 05:33
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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



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
$g_allow_signup=0;
Does this remove the signup link?


The issue has been resolved. It turns out I had two entries in config_inc.php. I deleted one, $g_allow_signup ...
by emiliusz
20 Apr 2026, 07:11
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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


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.


I just added the code you wrote to the line and it says Create a new account:1 again. There's nothing in the ...
by emiliusz
17 Apr 2026, 05:25
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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
echo '<a class="back-to-login-link pull-left" href="signup_page.php">', lang_get( 'signup_link' ) . ":" . config_get_global( 'allow_signup' ), '</a>';


I commented it out and now it's not showing up. But ...
by emiliusz
15 Apr 2026, 05:26
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

atrol wrote: 14 Apr 2026, 15:59 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)

I have it turned on $g_login_method = MD5; and $g_enable_email_notification = ON;
by emiliusz
14 Apr 2026, 05:49
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

atrol wrote: 13 Apr 2026, 15:41 Did you try to add the following line?

Code: Select all

die ("Hello");
When I turned it on, instead of the login window I had "Hello".
by emiliusz
13 Apr 2026, 07:15
Forum: General Plugin Discussion
Topic: Upload avatar
Replies: 0
Views: 140

Upload avatar

Is there a plugin for uploading a custom avatar to MantisBT? I created a plugin using ChatGPT that allows you to upload a photo to the "images" folder in Mantis, but unfortunately, it doesn't display it, only a dot next to the avatar. The plugin is designed to bypass Grvatar. I think it's an ...
by emiliusz
13 Apr 2026, 06:22
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

I have version 2.28.1 php version 8.4.20 Mariadb 12.2.2.

Plugins:
Mantis EasyEnter 1.2
Lightbox Integration 1.0
Better status colors 1.0.3
by emiliusz
10 Apr 2026, 05:23
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

I added it in config_inc.php and changed it in config_defaults_inc.php
by emiliusz
07 Apr 2026, 07:48
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

I set this parameter this way, but the option to create an account from the Mantis login level is still visible
by emiliusz
01 Apr 2026, 10:32
Forum: General Discussion
Topic: Disabling the ability to register a new account from the login panel
Replies: 16
Views: 1095

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

How do I disable the ability to create a new account from the Mantis login window in the mantisbt setting? I've set $g_allow_signup=Off; but the user can still create an account. Where else might the ability to register a new account be stored?