Search found 66 matches

by rkarmann
14 Dec 2017, 16:07
Forum: Help
Topic: PHP Fatal error: Call to undefined function html_page_top()
Replies: 6
Views: 7488

Re: PHP Fatal error: Call to undefined function html_page_t

Ok, I see. How are you linking your plugin's page into Mantis ? Using events ?
by rkarmann
14 Dec 2017, 13:37
Forum: General Discussion
Topic: ACTIVE DIRECTORY LINKING in Mantis 2.5.1
Replies: 1
Views: 5869

Re: ACTIVE DIRECTORY LINKING in Mantis 2.5.1

Hi there, If you need more informations about setting up LDAP Active Directory authentication, please see : http://www.mantisbt.org/docs/master/en-US/Admin_Guide/html-desktop/#admin.config.auth.ldap Every line is clearly explained in the documentation. For lines not concerned by the LDAP : $g_login_...
by rkarmann
14 Dec 2017, 13:19
Forum: Customizations
Topic: How can I prevent that a ticket can be resolved as 'open'?
Replies: 1
Views: 4695

Re: How can I prevent that a ticket can be resolved as 'open

Hi, This configuration option is set with a constant (take a look at constant_inc.php). If you want the 'resolved' resolution to be set in only one case, you should write : in our config_inc.php file: $bug_resolved_status_threshold = THE_CONSTANT_YOU_CHOOSED; Here is a snippet of code that demonstra...
by rkarmann
14 Dec 2017, 13:05
Forum: General Discussion
Topic: Problem with login by email
Replies: 4
Views: 4950

Re: Problem with login by email

Take a look at the email_api, you might be able to find out wich function is responsible for this issue.
--> Between line 90 and 190 (email validation functions, including regex)

Enable the LOG and you'll see how is user's email adress processed.
by rkarmann
14 Dec 2017, 12:16
Forum: Help
Topic: Configuration to not show certain elements
Replies: 3
Views: 3061

Re: Configuration to not show certain elements

For the severity and priority enumeration, add the following :

in config_inc.php:

Code: Select all

$g_severity_enum_string = '30:medium,40:high';

$g_priority_enum_string = '30:medium,40:high';
by rkarmann
14 Dec 2017, 11:11
Forum: Help
Topic: PHP Fatal error: Call to undefined function html_page_top()
Replies: 6
Views: 7488

Re: PHP Fatal error: Call to undefined function html_page_t

Hi there,

So that we can help you, can you define what you are trying to do ? :)
ShadowKatmandu wrote:

Code: Select all

require_once( '../../../core.php' ); // This is in a plugin, so this is where core.php is found for me
Does that mean that your goal is to switch the original core.php file, or require it in a plugin ?
by rkarmann
14 Dec 2017, 10:36
Forum: Help
Topic: Configuration to not show certain elements
Replies: 3
Views: 3061

Re: Configuration to not show certain elements

Hi there, In report issues I don´t want to show - Select Profile - Steps To Reproduce - Additional Information - Attach Tags To disable the following items, add the following lines to your config_inc.php (in mantis-root/config/) : # To disable profiles: $g_enable_profiles = OFF; # To disable Steps-t...
by rkarmann
14 Dec 2017, 10:17
Forum: Help
Topic: is it a bug in 2.8.0?
Replies: 2
Views: 2611

Re: is it a bug in 2.8.0?

Hi,

You should take a look at your Workflow transition configuration.

Go to Administration > Manage Configuration > Workflow

There should be a table with your different statuses, just check those that can be related.
by rkarmann
14 Dec 2017, 10:12
Forum: General Discussion
Topic: how to intregate LADP
Replies: 1
Views: 2548

Re: how to intregate LADP

Hi there,

Have you enabled the log ?

In your config_inc.php file :

Code: Select all

$g_log_level = LOG_LDAP;
$g_log_destination = 'file:/var/www/log/mantisbt.log'; <-- make sure you have rights to write on the server
It might be easier to find out what's wrong with the LDAP by enabling logging.
by rkarmann
14 Dec 2017, 10:06
Forum: French
Topic: Ajout ticket au travers d'Exchange 2016
Replies: 2
Views: 4375

Re: Ajout ticket au travers d'Exchange 2016

Hello, As-tu entendu parler du plugin EmailReporting ? https://github.com/mantisbt-plugins/EmailReporting/releases Ce dernier permet justement de faire parvenir des rapports par mail, automatiquement convertis en rapport Mantis : 1. Le sujet de l'email --> Résumé du rapport 2. Le contenu (body) de l...
by rkarmann
14 Dec 2017, 09:57
Forum: General Discussion
Topic: Email Problem
Replies: 1
Views: 2404

Re: Email Problem

Hi there, At the beginning, the notification by email is working well, but after few try, I do not receive email notification and in my php_error.log I receive these two message: Does that mean that since the 'beginning', your SMTP configurations data has changed ? Can you please paste a snippet of ...
by rkarmann
14 Dec 2017, 09:51
Forum: General Discussion
Topic: Customize "description" field
Replies: 1
Views: 2128

Re: Customize "description" field

Hi, It's possible to define a custom name for the 'summary' field by overriding the translation in custom_strings.php (e. g. : $s_summary = 'custom_name';). --> See chapter 7.1 in : https://www.mantisbt.org/docs/master/en-US/Admin_Guide/html/admin.customize.html But if you want to do it on a per pro...
by rkarmann
14 Dec 2017, 09:37
Forum: Customizations
Topic: Dark theme for 2.5.1 (or above?)
Replies: 13
Views: 20596

Re: Dark theme for 2.5.1 (or above?)

In fact, I'm thinking about writing a little UI theme plugin.

So, if you ever get time to achieve this, your help might be welcome. Let me know if you go further in the development of such a UI theme. :P
by rkarmann
14 Dec 2017, 09:33
Forum: French
Topic: Personnalisation/configuration interface
Replies: 4
Views: 9571

Re: Personnalisation/configuration interface

Hello, Si tu veux modifier l'affichage des champs en fonction de ton projet, tu peux suivre la même procédure que dans le lien que tu as partagé : viewtopic.php?f=10&t=21532 Tu vas dans Administration > Gérer la configuration > Rapport de configuration : 1. En bas de page, tu peux renseigner une...
by rkarmann
14 Dec 2017, 09:14
Forum: Customizations
Topic: Bold Font for Project Names
Replies: 1
Views: 3936

Re: Bold Font for Project Names

Hi,

In wich page(s) do you want fonts to be customized ?

What is your current MantisBT release ?