Search found 21 matches

by Uwe
28 Jan 2009, 08:40
Forum: General Discussion
Topic: PHP Debugger for Mantis/Which one?
Replies: 1
Views: 2088

PHP Debugger for Mantis/Which one?

Hello,

I'm just curious which PHP debugger do you use to debug Mantis.
I have one or two problems here and it is really annoying to do the debug via echo commands.
What tool(s) do you use and are you satisfied with them?

Regards,
Uwe
by Uwe
28 Jan 2009, 08:28
Forum: Announcements
Topic: Forum SPAM Crackdown
Replies: 21
Views: 58530

Re: Forum SPAM Crackdown

Full ack from me, too!
by Uwe
03 Jan 2009, 13:38
Forum: Customizations
Topic: date_submitted is empty ???
Replies: 2
Views: 4169

Re: date_submitted is empty ???

It's a bug in "bug_api.php".
See http://www.mantisbt.org/bugs/view.php?id=10011 for details.
It  will be released in 1.1.7.
by Uwe
13 Dec 2008, 16:45
Forum: Customizations
Topic: date_submitted is empty ???
Replies: 2
Views: 4169

Re: date_submitted is empty ???

Maybe I can be more concrete. I'm using Mantis V1.1.6 and that is my whole "custom_functions_inc.php" file: <?php function custom_function_override_changelog_print_issue( $p_issue_id ) { $t_bug = bug_get( $p_issue_id, true ); # get bug-info $t_1 = $t_bug->date_submitted; $t_2 = $t_bug->las...
by Uwe
12 Dec 2008, 20:23
Forum: Customizations
Topic: date_submitted is empty ???
Replies: 2
Views: 4169

date_submitted is empty ???

Hi, I'm writing my own "custom_function_override_changelog_print_issue". Within this function I want to display the date of submitting. But the output for the date is: "1970-01-01". To narrow down the problem I put echo("sub: $t_bug->date_submitted"); echo("upd: $t...
by Uwe
06 Dec 2008, 22:16
Forum: Help
Topic: No Graph is displayed
Replies: 8
Views: 8314

Re: No Graph is displayed

Hi,

I had a similar problem with Mantis 1.1.5 & jpgraph 2.3.3.
Also no Mantis graphs were shown but the Jpgraph examples works without problem.
The cause was some leading spaces in my "custom_functions_inc.php" file.
Hopes that helps somebody...

--Uwe
by Uwe
05 Dec 2008, 07:56
Forum: Help
Topic: Notification of new issues
Replies: 8
Views: 8938

Re: Notification of new issues

Turns out to be much simpler! It's sufficient to remove the "default_notify_flags" configuration from the configuration page (Manage -> Manage Configuration -> Configuration Report ). No entries regarding the notify flags have to be made in config_inc.php. Looks like that "default_not...
by Uwe
04 Dec 2008, 22:26
Forum: Help
Topic: Notification of new issues
Replies: 8
Views: 8938

Re: Notification of new issues

Hi, I had the same problem in 1.1.2 and still have it in Mantis 1.1.5. I made some debug effort and found out something interesting: In email_api.php there is a function called "email_notify_flag(...)" which is used to find out the minimum and maximum threshold for a user notification. It'...
by Uwe
25 Nov 2008, 10:42
Forum: Help
Topic: changelog: How to set the "not yet released" info?
Replies: 1
Views: 1723

Re: changelog: How to set the "not yet released" info?

I modified the code in "changelog.php" to acieve it: $t_project_name = project_get_field( $t_project_id, 'name' ); + $t_version_released = version_get_field( $p_version_id, 'released' ); + $t_date_order = version_get_field( $p_version_id, 'date_order' ); + $t_release_date = date( config_ge...
by Uwe
23 Nov 2008, 16:31
Forum: Customizations
Topic: Set actual time in "Edit Project Version"
Replies: 0
Views: 1903

Set actual time in "Edit Project Version"

Hello, I want to add a set-the-actual-date-and-time-feature to the "Edit Project Version" window.(manage_proj_ver_edit_page.php) I already added a button to the window and I managed to get the actual date and time. Now I have two problems: 1. How can I update the "Date order" edi...
by Uwe
22 Nov 2008, 16:42
Forum: Help
Topic: "Fixed in version" preselection
Replies: 1
Views: 1875

Re: "Fixed in version" preselection

I found out myself. The code mentioned in #0004307 is not present in the actual version. I made the suggested modifications and it works in principle. Unfortunately you have to set the target version for each bug which isn't the case for my issues. If a target version is present that version will be...
by Uwe
21 Nov 2008, 09:57
Forum: General Discussion
Topic: Database table documentation
Replies: 0
Views: 1724

Database table documentation

Hello,

I'm looking for some description about the database tables because I want to use the Mantis data in my own application.
I searched the Mantis website already but haven't found such a description.
Does such documentation exist?

Regards,
Uwe
by Uwe
20 Nov 2008, 08:49
Forum: Help
Topic: Configuration Report: remove entry
Replies: 3
Views: 2377

Re: Configuration Report: remove entry

Hello jb_mantis,
Hello olegos,

thanks to both of you.
After scrolling to the right I was able to find the delete button and removed the item.
Shame on me that I wasn't able to find out myself!

Cheers,
Uwe
by Uwe
18 Nov 2008, 09:17
Forum: Help
Topic: Configuration Report: remove entry
Replies: 3
Views: 2377

Configuration Report: remove entry

Hello,

I just added an option to the database configuration (Manage -> Manage Configuration -> Configuration report).
Unfortunatley I made a mistake on this option.
Now I want to remove that entry from the configuration but cannot find a way to do so.
Can you help me?

--Uwe
by Uwe
15 Nov 2008, 22:14
Forum: Help
Topic: "Fixed in version" preselection
Replies: 1
Views: 1875

"Fixed in version" preselection

Hi, I want to have the highest version in "Fixed in version" preselected. This feature was also requested in #0004307. It looks like that the necessary changes are already integrated into "bug_change_status_page.php". Is this true? Is this a feature that can be toggled on/off? If...