Search found 226 matches

by istvanb
29 Feb 2012, 12:34
Forum: Help
Topic: What is "feedback" status for
Replies: 2
Views: 6175

What is "feedback" status for

I dont understand how the "feedback" status works. Can somebody explains it to me or point to document where I can read about that?
by istvanb
28 Feb 2012, 07:58
Forum: Help
Topic: Unable to install Mantis
Replies: 3
Views: 5306

Re: Unable to install Mantis

Yeah, sorry mate, I am not a db guy. Its somewhat interesting that you can create tables via phpmyadmin, but if you use the same pw then mantis can not. But that could be some magic with db. I would log in to the IRC at www.mantisbt.org, there are some guys who might can help you. Also if you set up...
by istvanb
27 Feb 2012, 20:45
Forum: Help
Topic: Unable to install Mantis
Replies: 3
Views: 5306

Re: Unable to install Mantis

I have created a video long time ago about how to install mantis. Check it out if it helps: http://www.youtube.com/watch?v=qSoleZn5o18
by istvanb
27 Feb 2012, 10:37
Forum: Help
Topic: Creating a custom field with the Projects list
Replies: 9
Views: 7947

Re: Creating a custom field with the Projects list

Pretty cool! Can you post a screenshot about how it works in your computer? It looks like a cool mod, so maybe other users will find it useful too.
by istvanb
27 Feb 2012, 09:23
Forum: Help
Topic: Password reset problems
Replies: 2
Views: 4794

Re: Password reset problems

I have never considered this as a bug but I see your point. I asure its reproducible on other computers as well.
by istvanb
24 Feb 2012, 16:12
Forum: Help
Topic: Creating a custom field with the Projects list
Replies: 9
Views: 7947

Re: Creating a custom field with the Projects list

I have messed up this topic a bit with my back-and-forth comments, sorry about that. The bottomline is that I understand what you have tried to achieve and now I see why you have used the if structure as you did (copied from the project management php). I have no clue why it does not work, but it do...
by istvanb
24 Feb 2012, 15:55
Forum: Help
Topic: Creating a custom field with the Projects list
Replies: 9
Views: 7947

Re: Creating a custom field with the Projects list

See the attached code. If I use echo ($t_possible_values); then it gives me back the subprojects separated by a '|'. Note that I have no clue about the return function, so thats another part you should verify $t_enum = array(); $t_project_ids = current_user_get_accessible_subprojects( helper_get_cur...
by istvanb
24 Feb 2012, 15:41
Forum: Help
Topic: Creating a custom field with the Projects list
Replies: 9
Views: 7947

Re: Creating a custom field with the Projects list

No problem especially since you are lost :) The query for the subproject IDs is correct (I have checked it). but you made some mistakes. 1, the if structure is not correct (evaluated as false, so the rest of the code wont be executed) 2, $t_project= project_get_row( $t_project_id ); is wrong, it doe...
by istvanb
24 Feb 2012, 15:09
Forum: Help
Topic: Missing due_date
Replies: 4
Views: 4615

Re: Missing due_date

Sorry... most likely this will solve your problem: $g_due_date_update_threshold = REPORTER; $g_due_date_view_threshold = REPORTER; Anyways I am somewhat pissed to the due_date field so I have created a plugin which sets the due-date based on the priority of the issue. You might be interested: http:/...
by istvanb
24 Feb 2012, 14:06
Forum: Help
Topic: Creating a custom field with the Projects list
Replies: 9
Views: 7947

Re: Creating a custom field with the Projects list

You should check the manage_proj_edit_page.php, since the manage project page displays all the subprojects, so you probably can leverage some code from there. Without spending more than 1 minute on this I would start with these lines: $t_subproject_ids = current_user_get_accessible_subprojects( $f_p...
by istvanb
24 Feb 2012, 13:15
Forum: Help
Topic: Missing due_date
Replies: 4
Views: 4615

Re: Missing due_date

check if the due_date field is commented either in your config_defaults.php or in the config_inc.php file: $g_bug_report_page_fields = array( 'category_id', 'view_state', 'handler', 'priority', 'severity', 'reproducibility', 'platform', 'os', 'os_version', 'product_version', 'product_build', 'target...
by istvanb
23 Feb 2012, 08:34
Forum: Help
Topic: Mantis and VisualSVN?
Replies: 2
Views: 4064

Re: Mantis and VisualSVN?

Yeah, I tried to did it a year ago without any success. That plugin maybe does a great job, but its poorly documented and at the end I failed to integrate. The max what I was able to achive is to show some sort of "svn" view within mantis, but could hook the events.
by istvanb
22 Feb 2012, 16:35
Forum: Help
Topic: Changing Access Levels - help for a newbie.
Replies: 3
Views: 5677

Re: Changing Access Levels - help for a newbie.

Welcome in the world of Mantis:) if you want to change a reporter to an administrator: -log in as administrator (or whoever can assign the roles, but this mostly means a user with admin credentials) -click manage -click manage user -click on the user name -change the access level -hit update user th...
by istvanb
19 Feb 2012, 22:48
Forum: Help
Topic: New tab within mantis
Replies: 6
Views: 6896

Re: New tab within mantis

OK. Its not a priority and I dont believe it will ever be, so I just leave it at the back of the list. In this way I dont need to change anything except the config_inc.php. Thanks for pointing the direction.
by istvanb
19 Feb 2012, 22:23
Forum: Help
Topic: New tab within mantis
Replies: 6
Views: 6896

Re: New tab within mantis

Alright. I am not exatly aware what is the advantage of a hook (still not a php coder), but if I use $g_main_menu_custom_options = array( array("PLC Monitor", VIEWER, 'plc_monitor.php')); then if I create a plc_monitor.php file then it will do the job. Is it possible to move my new tab (PL...