Search found 55 matches

by TomR
08 Sep 2016, 12:36
Forum: Help
Topic: Black graphs on Mantis 1.3 ?
Replies: 23
Views: 27082

Re: Black graphs on Mantis 1.3 ?

Same problem here as described above. I upgraded 1.2.19 to 1.3.1 admin/check/index.php only give some warnings ( not related to graphs ) No errors in webserver logs Installed msttcorefonts Right-click open link in new tab: same black square! Error shown when inspection of element: Refused to apply i...
by TomR
23 Mar 2016, 21:35
Forum: Customizations
Topic: Hyperlink to bug id in Excel export
Replies: 1
Views: 6387

SOLVED Re: Hyperlink to bug id in Excel export

Figured that one out my self years ago. Change function in core/excel_api.php # Changed to export a link to Excel function excel_format_id( $p_bug ) { $t_url = config_get( 'path' ); $t_url = htmlspecialchars( $t_url ); $t_value = "<Cell ss:HRef=\"" . $t_url . "view.php?id=" ...
by TomR
20 Mar 2016, 11:36
Forum: General Discussion
Topic: Upgrading from 1.2.x to 1.3.x
Replies: 3
Views: 23941

Re: Upgrading from 1.2.x to 1.3.x

Thanks atrol.

I wil look into the the posts and documents as mentioned.
And wil test upgrade in a test environment.
by TomR
19 Mar 2016, 14:23
Forum: General Discussion
Topic: Upgrading from 1.2.x to 1.3.x
Replies: 3
Views: 23941

Upgrading from 1.2.x to 1.3.x

I looked into different places but I am not sure where to find all to information to upgrade from 1.2.x to 1.3.x We are planning tot test upgrading so when the first stable release 1.3.x wil come out , we will be ready. Better be prepared in advance :wink: My main questions are: What is the correct ...
by TomR
08 Jun 2012, 07:17
Forum: General Discussion
Topic: Gantt Chart for Mantis
Replies: 72
Views: 444809

Re: Gantt Chart for Mantis

Is this plugin suppose to work when using a custom field of type date as end date? I seems to work fine when using a duration ( numeric ) in days to calculatie an end date. However when using a custom field of type date as end date , it seems it will still calculate with the duration in seconds whic...
by TomR
14 Jul 2011, 21:04
Forum: Help
Topic: SOLVED: Cropper integration with Mantis >= 1.2.3
Replies: 2
Views: 2574

Re: Cropper integration with Mantis >= 1.2.3

Problem is in function mci_file_add in mc_file_api.php : The last value in line 119 should been quoted: $query = "INSERT INTO $t_file_table (" . $p_table . "_id, title, description, diskfile, filename, folder, filesize, file_type, date_added, content) VALUES ($c_id, '$c_title', '$c_de...
by TomR
18 May 2011, 09:12
Forum: Customizations
Topic: Hyperlink to bug id in Excel export
Replies: 1
Views: 6387

Hyperlink to bug id in Excel export

Does anyone know how to change the Excel import that the column with the 'id' wil export a hyperlink instead of the number?
by TomR
10 May 2011, 13:18
Forum: General Discussion
Topic: Gantt Chart for Mantis
Replies: 72
Views: 444809

Re: Gantt Chart for Mantis

Is this already downloadable somewhere?
by TomR
22 Apr 2011, 10:35
Forum: Customizations
Topic: Email to monitors on new
Replies: 3
Views: 3236

Re: Email to monitors on new

Did you tried setting it in the Manage / Manage Configuration / E-mail Notifications?
by TomR
22 Apr 2011, 10:31
Forum: Help
Topic: Email notify flags do not always work
Replies: 2
Views: 2566

Re: Email notify flags do not always work

I did, however you can not set there the email notifications for ' Issue updated'.
by TomR
22 Apr 2011, 10:13
Forum: Help
Topic: SOLVED: Cropper integration with Mantis >= 1.2.3
Replies: 2
Views: 2574

SOLVED: Cropper integration with Mantis >= 1.2.3

Help needed with Cropper integration. We used the plugin ( see http://www.mantisbt.org/bugs/view.php?id=7053 ) since 1.1.5, but after upgrading from 1.2.0 -> 1.2.3 and 1.2.4 the plugin is not working anymore. I got some errors containing the text: It is about misformed XML: 0x1A is a invalid charact...
by TomR
03 Nov 2010, 16:56
Forum: Help
Topic: Email notify flags do not always work
Replies: 2
Views: 2566

Email notify flags do not always work

I do not want reporters to get notified for changes in relationships, nor for updated issues. So I put in config_inc.php: $g_notify_flags['updated'] = array( 'reporter' => OFF, 'handler' => OFF, 'monitor' => OFF, 'bugnotes' => OFF, 'explicit' => OFF, 'threshold_min' => DEVELOPER, 'threshold_max' => ...
by TomR
16 Sep 2010, 13:36
Forum: Customizations
Topic: Integration with LiveZilla
Replies: 0
Views: 2391

Integration with LiveZilla

Did anyone try to integrate Mantis with LiveZilla. I managed to get the support icon on Mantis ( in the header ). $g_top_include_page = '%absolute_path%livechat.php'; livechat .php does contain the code for the LiveZilla button. However the CoBrowse function does not work, I only see the login box. ...
by TomR
14 Jun 2010, 08:43
Forum: Help
Topic: Probleme with html entities in email content
Replies: 2
Views: 2555

Re: Probleme with html entities in email content

I am also looking for the possibility to use HTML in email notifications.

Can anybody give a clue, what functions to use?

Any help appreciated :?: .
by TomR
21 May 2010, 08:27
Forum: Help
Topic: [SOLVED] Show Due_date time also on view_issue_page_columns
Replies: 1
Views: 1578

Re: Show Due_date time also on view_issue_page_columns

Found it!

in core/columns_api.html change line 1330

Code: Select all

	echo string_display_line( date( config_get( 'short_date_format' ), $p_bug->due_date ) );
to

Code: Select all

	echo string_display_line( date( config_get( 'normal_date_format' ), $p_bug->due_date ) );