Search found 76 matches

by mhonmon23
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
by mhonmon23
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 ...
by mhonmon23
14 Feb 2011, 00:48
Forum: Help
Topic: rss feed
Replies: 2
Views: 3555

Re: rss feed

actually in php enable php_domxml and php_xmlprc but in php.ini comment php_domxml.
by mhonmon23
10 Feb 2011, 21:55
Forum: Help
Topic: rss feed
Replies: 2
Views: 3555

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
by mhonmon23
10 Feb 2011, 20:18
Forum: Help
Topic: rss feed
Replies: 2
Views: 3555

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 ...
by mhonmon23
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
by mhonmon23
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
by mhonmon23
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
by mhonmon23
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';
by mhonmon23
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
by mhonmon23
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 ...
by mhonmon23
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
by mhonmon23
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