might help. http://docs.mantisbt.org/master/en/admi ... IG.SUMMARY
but no graph available.
Search found 76 matches
- 14 Feb 2011, 06:03
- Forum: Customizations
- Topic: Is it possible to customize the summary page in Mantis ?
- Replies: 2
- Views: 6146
- 14 Feb 2011, 06:00
- Forum: Customizations
- Topic: BUG: CSVExport of a custom column (inherited MantisColumn)
- Replies: 2
- Views: 3712
Re: BUG: CSVExport of a custom column (inherited MantisColum
your mantis version?
- 14 Feb 2011, 03:16
- Forum: General Discussion
- Topic: Filter Question
- Replies: 2
- Views: 3427
Re: Filter Question
Answer for third question :
in config_default I found, $g_stored_query_create_threshold = DEVELOPER;
just set this to $g_stored_query_create_threshold = viewer; to make it available to all.
Please answer my first and second questions.
Thanks
in config_default I found, $g_stored_query_create_threshold = DEVELOPER;
just set this to $g_stored_query_create_threshold = viewer; to make it available to all.
Please answer my first and second questions.
Thanks
- 14 Feb 2011, 02:45
- Forum: General Discussion
- Topic: Filter Question
- Replies: 2
- Views: 3427
Filter Question
Hi All,
I'm using 1.2.3 Mantis, I just want to know things about filter.
first, Is the filter saved in all access level? ex. using viewer access level, I filter for reporter X, will that be saved in the database and will be always there until i decide to remove it.
second, if first is yes what is ...
I'm using 1.2.3 Mantis, I just want to know things about filter.
first, Is the filter saved in all access level? ex. using viewer access level, I filter for reporter X, will that be saved in the database and will be always there until i decide to remove it.
second, if first is yes what is ...
Re: rss feed
actually in php enable php_domxml and php_xmlprc but in php.ini comment php_domxml.
Re: rss feed
OK I solve this.
Chrome don't have RSS installed so you have to instal its extension.
Another thing, in php you have to enable php_domxml for wamp users
Chrome don't have RSS installed so you have to instal its extension.
Another thing, in php you have to enable php_domxml for wamp users
rss feed
Hi All,
I'm getting error on rss ->
This page contains the following errors:
error on line 1 at column 83: Extra content at the end of the document
Below is a rendering of the page up to the first error.
APPLICATION WARNING #403: Database field "email" not found.
and sometimes it is working ...
I'm getting error on rss ->
This page contains the following errors:
error on line 1 at column 83: Extra content at the end of the document
Below is a rendering of the page up to the first error.
APPLICATION WARNING #403: Database field "email" not found.
and sometimes it is working ...
- 10 Feb 2011, 16:10
- Forum: Customizations
- Topic: Attachment viewing
- Replies: 9
- Views: 14118
Re: Attachment viewing
the view is too small if I attached bigger picture. Anyway I customize this and created another option to show view in another page in big view.
Thanks atrol
Thanks atrol
- 08 Feb 2011, 22:54
- Forum: Customizations
- Topic: Attachment viewing
- Replies: 9
- Views: 14118
Re: Attachment viewing
Hi atrol,
How about when user click it will open to new browser tab for viewing?
Thanks
How about when user click it will open to new browser tab for viewing?
Thanks
- 07 Feb 2011, 12:42
- Forum: Help
- Topic: Get all parent project
- Replies: 1
- Views: 2232
Re: Get all parent project
If no api, for reference :
SELECT * FROM mantis_project_table as a
WHERE id NOT IN (SELECT child_id FROM mantis_project_hierarchy_table)
AND enabled = 1
SELECT * FROM mantis_project_table as a
WHERE id NOT IN (SELECT child_id FROM mantis_project_hierarchy_table)
AND enabled = 1
- 07 Feb 2011, 12:19
- Forum: Customizations
- Topic: How to add DO NOT REPLY to all e-mail notifications?
- Replies: 1
- Views: 2701
Re: How to add DO NOT REPLY to all e-mail notifications?
How about change the sender name ??
$g_from_email = 'DO NOT REPLY';
$g_from_email = 'DO NOT REPLY';
- 07 Feb 2011, 12:15
- Forum: Help
- Topic: Get all parent project
- Replies: 1
- Views: 2232
Get all parent project
Hi,
Is there any function from the api which I can get all the Parent Projects?
If yes please let me know and if no how about in DB?
Thanks
Is there any function from the api which I can get all the Parent Projects?
If yes please let me know and if no how about in DB?
Thanks
- 03 Feb 2011, 14:14
- Forum: Help
- Topic: Filter to default closed
- Replies: 13
- Views: 16836
Re: Filter to default closed
just for reference.
To make this default hide,
edit collapse_api.php
On collapse_open
if($p_name == 'profile'){ //change this string to what you want to hide as default
echo '<div id="', $t_div_id, '"', 'class="hidden"' , '>';
} else {
echo '<div id="', $t_div_id, '"', ( $t_display ...
To make this default hide,
edit collapse_api.php
On collapse_open
if($p_name == 'profile'){ //change this string to what you want to hide as default
echo '<div id="', $t_div_id, '"', 'class="hidden"' , '>';
} else {
echo '<div id="', $t_div_id, '"', ( $t_display ...
- 01 Feb 2011, 12:37
- Forum: Help
- Topic: Filter to default closed
- Replies: 13
- Views: 16836
Re: Filter to default closed
atrol wrote:AFAIK there is no customization option for this, so you would have to change the source code.
TBH I would not like to work with such a system. If I decide to open the filter I want to see the filter until I decide to hide it.
I will tell this to my boss! hahha thanks atrol
- 01 Feb 2011, 12:26
- Forum: Help
- Topic: Filter to default closed
- Replies: 13
- Views: 16836
Re: Filter to default closed
I see thanks atrol