Search found 8376 matches

by atrol
11 Aug 2010, 21:14
Forum: General Discussion
Topic: captcha issue, help needed
Replies: 1
Views: 1879

Re: captcha issue, help needed

You should post more details of our environment (Operating System, PHP version, verions of MantisBT, ...) Do you get any error message? Also check this http://www.mantisbt.org/forums/viewtopic.php?f=3&t=10937 http://www.mantisbt.org/forums/viewtopic.php?f=3&t=3141 Use the search function of ...
by atrol
11 Aug 2010, 14:42
Forum: Customizations
Topic: customise main view
Replies: 4
Views: 5099

Re: customise main view

There are some changes which can be done with customization Add settings in file config_inc.php to set the page which is shown after login $g_default_home_page = 'my_view_page.php'; to adjust the boxes which are shown at my_view_page 0 means not visible, not equal 0 means the ordering of display $g_...
by atrol
11 Aug 2010, 14:22
Forum: Customizations
Topic: customise bug id
Replies: 12
Views: 18781

Re: customise bug id

Copy complete directy CustomID under MantisBT directory plugins.
Login to MantisBt as an administrator, choose "Mangage" -> "Manag Plugins"
Click on "Install" in column "Actions" where the plugib is listed
by atrol
11 Aug 2010, 06:37
Forum: Customizations
Topic: customise main view
Replies: 4
Views: 5099

Re: customise main view

I don't understand your request.
The project selection appears on main_page.php and also on all other pages.
by atrol
11 Aug 2010, 06:32
Forum: Customizations
Topic: Help to a newbee
Replies: 5
Views: 4553

Re: Help to a newbee

If you go into your mantis>lang directory and open strings_english.txt in a text editor. search for "Report Issue" and change it to what you want... Changing files which are delivered as standard from MantisBT is not the best solution. They are overwritten when updating MantisBT. Standard...
by atrol
11 Aug 2010, 06:26
Forum: Customizations
Topic: Adding additional fields to bugnotes.
Replies: 1
Views: 2346

Re: Adding additional fields to bugnotes.

Have a look at this plugin
http://www.mantisbt.org/bugs/view.php?id=11912
Maybe a good starting point for you
by atrol
11 Aug 2010, 06:25
Forum: General Discussion
Topic: Sendmail not send email when user sign up
Replies: 3
Views: 4407

Re: Sendmail not send email when user sign up

Did this work ever before?
Did you reproduce this yourself, or is this just a report of another user?
by atrol
11 Aug 2010, 06:21
Forum: Help
Topic: I cant see my view page detail
Replies: 10
Views: 4271

Re: I cant see my view page detail

I am not able to reproduce the problem with my 1.2.2 test installation.
Did you try with administrator account?
by atrol
10 Aug 2010, 19:01
Forum: Help
Topic: Closed Issues
Replies: 2
Views: 1993

Re: Closed Issues

To see also the closed issues set "Hide Status:" to none in UI when using simple filters or use "Advanced filters"
by atrol
10 Aug 2010, 16:04
Forum: Help
Topic: footer content
Replies: 8
Views: 11282

Re: footer content

$g_bottom_include_page contains the name of a html file, not the content itself.
I don't know your skills, so it's not easy to give the right answers.
If you don't have any knowledge of HTML/CSS/PHP you should learn some basics which is often enough for small customizations.
by atrol
10 Aug 2010, 15:56
Forum: Customizations
Topic: table color
Replies: 1
Views: 3045

Re: table color

At the moment there is no skinning/templating engine begind MantisBT (will come in future versions)
You have to change colors, fonts, ... in file css/default.css
by atrol
10 Aug 2010, 14:55
Forum: Help
Topic: plugin manager
Replies: 3
Views: 2344

Re: plugin manager

The plugins are written for this plugin manager, so they are also not compatible with MantisBT 1.2.x
Have a look at your account settings where you can customize the columns which are displayed at this page.
by atrol
10 Aug 2010, 14:52
Forum: Help
Topic: footer content
Replies: 8
Views: 11282

Re: footer content

I can't see your $g_bottom_include_page setting
You have to add the line before line
?>
by atrol
10 Aug 2010, 14:35
Forum: Help
Topic: footer content
Replies: 8
Views: 11282

Re: footer content

You can add your footer by setting $g_bottom_include_page = "yourPage" in file config_inc.php
And / Or you can write a plugin witch catches the EVENT_LAYOUT_PAGE_FOOTER event.
by atrol
10 Aug 2010, 14:29
Forum: Help
Topic: Secure Session
Replies: 3
Views: 2901

Re: Secure Session

add the following line to file config_inc.php

Code: Select all

$g_session_validation = OFF;
But be aware that this is a potential security risk