Search found 8 matches

by raspopov
18 Jan 2026, 10:14
Forum: General Plugin Discussion
Topic: How to correctly reopen an issue in a plugin
Replies: 0
Views: 115

How to correctly reopen an issue in a plugin

Hey!

I am developing a plugin that, among other things, should reopen issues. Looking at the code base, I have some doubts... For example, the “bug_api.php” file contains a “ bug_reopen() ” function ... that is not used anywhere else. The bug tracker itself reopens bugs in one large “bug_update.php ...
by raspopov
01 Mar 2025, 06:20
Forum: Help
Topic: Captcha not displayed
Replies: 5
Views: 11258

Re: Captcha not displayed

Looks like: #35302.
by raspopov
01 Mar 2025, 06:11
Forum: Help
Topic: Inline images not working
Replies: 19
Views: 20885

Re: Inline images not working

Wait, discovered the problem:
Refused to load the image 'https://example.com/blahlbhalbh.jpg' because it violates the following Content Security Policy directive: "img-src 'self' 'self' data:".

For example you will need to create a mini-plugin with the next set of sufficient methods:

function ...
by raspopov
01 Mar 2025, 03:49
Forum: Customizations
Topic: SSO with LDAP (HowTo)
Replies: 9
Views: 39093

Re: SSO with LDAP (HowTo)

Thiagoros wrote: 12 May 2024, 09:47It could be like a useful complement to Mantis. If there isn't an existing project for SSO authentication, developing a plugin could be a good effort to improve its capabilities
Look at this plugin please: MantisExtAuth, it might be a good fit for you.
by raspopov
01 Mar 2025, 03:27
Forum: Customizations
Topic: New Dark and Modern Theme
Replies: 7
Views: 43053

Re: New Dark and Modern Theme

vic-t wrote: 25 Feb 2025, 23:33I forked the theme and made some changes to it.
You have broken your .css file by adding unresolve tokens (e.g. "<<<<<<< Updated upstream").
by raspopov
27 Feb 2025, 15:39
Forum: General Discussion
Topic: Why is my_view_page.php page not indexed?
Replies: 2
Views: 8817

Re: Why is my_view_page.php page not indexed?

The content of this page is pretty dynamic.

In my humble opinion dynamic content is not content that changes quickly, but content that does not make sense to save, such as error messages, command results, interface forms, etc. Otherwise, content from news sites or social networks cannot be ...
by raspopov
26 Feb 2025, 17:09
Forum: General Discussion
Topic: GUI for Markdown
Replies: 6
Views: 131285

Re: GUI for Markdown

I'm currently developing a plugin to support markdown using MantisBT's built-in parser (Parsedown 1.7) or any other parsers available through plugins: https://github.com/raspopov/MantisParsedown

There hasn't been a release yet, but the plugin works and is already quite usable. The idea was to make ...
by raspopov
26 Feb 2025, 16:26
Forum: General Discussion
Topic: Why is my_view_page.php page not indexed?
Replies: 2
Views: 8817

Why is my_view_page.php page not indexed?

When creating the page my_view_page.php , the function html_robots_noindex() is called, which prohibits robots from indexing the page by adding <meta name="robots" content="noindex,follow"> tag. What is the logic behind this restriction? We assume that anonymous logins are allowed.

Why it matters ...