Search found 24 matches

by Mejstro
01 Feb 2016, 12:12
Forum: General Discussion
Topic: LDAP Settings
Replies: 12
Views: 23340

Re: LDAP Settings

$g_ldap_bind_dn settings has nothing common with creating user in Mantis, I suppose. It is the user, who just can read if the user exists in AD.
by Mejstro
28 Jan 2016, 14:45
Forum: General Discussion
Topic: LDAP Settings
Replies: 12
Views: 23340

Re: LDAP Settings

$g_ldap_bind_dn = 'CN=G_WikiCTI, CN=Users, DC=company, DC=home'; // G_WikiCTI is a group to access to my users, this group is inside Users. $g_ldap_bind_password = 'password'; // Password to connect to my active directory server $g_ldap_bind_dn = I think, only user with AD read permission is allowe...
by Mejstro
27 Jan 2016, 18:27
Forum: General Discussion
Topic: LDAP Settings
Replies: 12
Views: 23340

Re: LDAP Settings

I am not sure, how to help, if I know nothing about your AD structure and configuration. I would only ask a few question and notes: 1) Is "John Smith" real username or full name? (I am not sure about the space) 2) Is this correct: $g_ldap_root_dn = 'OU=Users, DC=company, DC=home'; ? Should...
by Mejstro
27 Jan 2016, 09:52
Forum: General Discussion
Topic: LDAP Settings
Replies: 12
Views: 23340

Re: LDAP Settings

This is example of my fully working LDAP (AD) settings in config_inc.php: $g_login_method = LDAP; $g_ldap_server = 'ldap://server.domain.local:389'; $g_ldap_root_dn = 'cn=Users,dc=domain,dc=local'; $g_ldap_organization = '(objectClass=*)'; $g_ldap_realname_field = 'cn'; $g_ldap_uid_field = 'sAMAccou...
by Mejstro
22 Jan 2016, 14:15
Forum: General Discussion
Topic: LDAP Settings
Replies: 12
Views: 23340

Re: LDAP Settings

I don´t know your LDAP configuration, but I think the $g_ldap_server should be something like this:

Code: Select all

$g_ldap_server = 'ldap://servername.domain.local:389';
by Mejstro
22 Jan 2016, 14:09
Forum: Customizations
Topic: How to remove the "Reporter" bug page "priority"?
Replies: 1
Views: 4203

Re: How to remove the "Reporter" bug page "priority"?

May would help something like this in config_inc.php. For hiding, the priority filed should be deleted from the array in the code below: $g_bug_report_page_fields = array( 'category_id', 'view_state', 'handler', 'priority', 'platform', 'os', 'os_version', 'product_version', 'product_build', 'target_...
by Mejstro
22 Jan 2016, 09:13
Forum: Customizations
Topic: Main menu Customization
Replies: 3
Views: 8711

Re: Main menu Customization

Thanks a lot for your answer. I know html syntax quite a well, but I suppose some files of mantis have to be modified to add target="_blank" parameter. Unfortunatelly I am unable to find where the change must be done.
by Mejstro
21 Jan 2016, 15:49
Forum: Customizations
Topic: Main menu Customization
Replies: 3
Views: 8711

Main menu Customization

Hello, I have added a custom menu item by modifying config_inc.php: $g_main_menu_custom_options = array(array("MyMenuItem", ADMINISTRATOR, 'MyLink' ) ); Now I would need to force open only this link in a new window. Would it be possible? Can anyone help me? Thanks a lot for your answer and...
by Mejstro
25 Mar 2015, 04:45
Forum: Customizations
Topic: Mantis plugin: Comment as
Replies: 6
Views: 9044

Re: Mantis plugin: Comment as

What version of the mantis you used?
Mantis version: 1.2.19
Schema: 183
PHP version: 5.3.29
by Mejstro
24 Mar 2015, 13:31
Forum: Customizations
Topic: Mantis plugin: Comment as
Replies: 6
Views: 9044

Re: Mantis plugin: Comment as

Unfortunately, still doesn´t work...
APPLICATION ERROR #700 (Project not found) in view.php appears :(
by Mejstro
24 Mar 2015, 05:38
Forum: Customizations
Topic: Mantis plugin: Comment as
Replies: 6
Views: 9044

Re: Mantis plugin: Comment as

This plugin would be useful for me, but it doesn't work :( Nothing appears under the "ad note" field...
by Mejstro
03 Mar 2015, 16:36
Forum: Customizations
Topic: Mantis-Smime - Encrypted Notification Mails
Replies: 8
Views: 12989

Re: Mantis-Smime - Encrypted Notification Mails

May I have one more question? Would be possible to allow each user upload his certificate in his profile page?
Thanks for your answer...
by Mejstro
03 Mar 2015, 14:25
Forum: Customizations
Topic: Mantis-Smime - Encrypted Notification Mails
Replies: 8
Views: 12989

Re: Mantis-Smime - Encrypted Notification Mails

Hi, Thanks for this plugin. I have tried it and made some minor changes for my needs: 1) Translated it to Czech language <?php $s_plugin_smime_title = 'Mantis-S/MIME'; $s_plugin_smime_description = 'Umožňuje odesílat šifrované e-maily.'; $s_plugin_Smime_menu_manage = 'Konfigurace S/MIME'; $s_plugin_...
by Mejstro
23 Sep 2014, 17:14
Forum: General Discussion
Topic: Mantis and SSL
Replies: 2
Views: 7065

Re: Mantis and SSL

Thanks a lot for the answer.
by Mejstro
22 Sep 2014, 14:58
Forum: General Discussion
Topic: Mantis and SSL
Replies: 2
Views: 7065

Mantis and SSL

Hi, could enybody give me an advice about setting up Mantis on port 443 and install SSL certificate?
Or point me to any place in documentation. I can not find it anywhere...
Thank you for any answer.