Search found 8502 matches

by atrol
18 Mar 2025, 17:49
Forum: Customizations
Topic: Submit button customization
Replies: 4
Views: 5781

Re: Submit button customization

Try

Code: Select all

if( auth_is_user_authenticated() ) {
	if( helper_get_current_project() == 7 ) {
		$s_summary = 'Title';
	}
}
by atrol
16 Mar 2025, 19:28
Forum: General Discussion
Topic: Cas Nuy
Replies: 1
Views: 1430

Re: Cas Nuy

The news of Cas' death deeply saddened me.
I liked his positive and friendly attitude, always willing to help.

My thoughts are with his family at this difficult time.

Rest in peace Cas, I will miss you and your support on the Forum.

Roland
by atrol
03 Mar 2025, 09:10
Forum: Help
Topic: Category has been disabled
Replies: 2
Views: 838

Re: Category has been disabled

Did you run a database upgrade?
by atrol
02 Mar 2025, 17:46
Forum: Announcements
Topic: MantisBT 2.27.1 released
Replies: 0
Views: 2320

MantisBT 2.27.1 released

MantisBT 2.27.1 is a maintenance release.

Have a look at our Blog for more details.
by atrol
01 Mar 2025, 07:26
Forum: Help
Topic: Captcha not displayed
Replies: 5
Views: 4635

Re: Captcha not displayed

raspopov wrote: 01 Mar 2025, 06:20 Looks like: #35302.
This was an issue around PHP 8, but the user was telling he uses PHP 7.4.33.
by atrol
27 Feb 2025, 21:48
Forum: General Discussion
Topic: Demo Data set
Replies: 2
Views: 1411

Re: Demo Data set

The MantisBT core team does not provide such a dataset,

Maybe one of our users wants to publish his data.
Before doing that, any user related data must be anonymized, private issues and notes and attachments must be removed, ...
by atrol
26 Feb 2025, 22:35
Forum: General Discussion
Topic: Why is my_view_page.php page not indexed?
Replies: 2
Views: 1555

Re: Why is my_view_page.php page not indexed?

Was introduced many years ago https://mantisbt.org/bugs/view.php?id=9991 I was not part of this discussion. Maybe an explaianation, not sure if it makes complete sense: The content of this page is pretty dynamic. If I click a link to this page when searching the web, there is a big chance that my ...
by atrol
26 Feb 2025, 21:54
Forum: General Discussion
Topic: Replacing phpBB an option?
Replies: 3
Views: 1178

Re: Replacing phpBB an option?

I'm worried that without a vibrant community, development will come to a halt and the product may become obsolete. A decent forum software can make a difference in my view. To have a better forum would certainly be good, but I don't see a big impact for development. The forum is not used for the ...
by atrol
26 Feb 2025, 21:25
Forum: General Discussion
Topic: Replacing phpBB an option?
Replies: 3
Views: 1178

Re: Replacing phpBB an option?

vic-t wrote: 26 Feb 2025, 16:32would the admins consider adding this plugin that allows for easier pasting of images?
I had a short look at this extension. It wasn't developed for the phpBB version that we are using and is not maintained (Not any changes since 5 years). Doesn't sound like a good idea to use it.
by atrol
07 Feb 2025, 00:22
Forum: Help
Topic: Locked out of Administrator account
Replies: 2
Views: 2806

Re: Locked out of Administrator account

There is column access_level in database table mantis_user_table.
Set the value of an existing user to 90.
by atrol
05 Feb 2025, 20:49
Forum: General Discussion
Topic: Any plans to "end of support" v1.13.20?
Replies: 2
Views: 4488

Re: Any plans to "end of support" v1.13.20?

v1.13.20 is LTS. There is no version 1.13.20, suspect you mean 1.3.20. LTS? I am not aware that someone from the MantisBT core team ever announced a version as Long Term Support. Version 1.3.0 was released in July 2016. The last bug fix release 1.3.20 was released in November 2019. I am pretty sure ...
by atrol
04 Feb 2025, 19:05
Forum: Help
Topic: Delete account
Replies: 22
Views: 32752

Re: Delete account

Account deleted.
by atrol
29 Jan 2025, 10:41
Forum: General Discussion
Topic: Add a button on the menu to edit project manage page
Replies: 7
Views: 2714

Re: Add a button on the menu to edit project manage page

Code: Select all

'url' => 'manage_proj_edit_page.php?project_id=' . $project_id,
You are referencing variable $project_id but you did not set it before.