Search found 12 matches

by nigjo
02 Nov 2016, 13:18
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Re: Mantis Server Farm

Hi srwatters

We finally managed to update our installation to 1.3.x. The configuration is mostly the same as for 1.2.x. Except the path in the config/config_inc.php has to add another folder depth. $t_conffile = dirname( dirname( __FILE__ ) ) . DIRECTORY_SEPARATOR .
'..' . DIRECTORY_SEPARATOR ...
by nigjo
04 Jan 2008, 13:41
Forum: Help
Topic: mark attachment as deprecated
Replies: 1
Views: 2086

mark attachment as deprecated

Hi

Is it possible to mark an attached file as deprecated instead of deleting it?

Jens
by nigjo
02 Jan 2008, 15:37
Forum: General Discussion
Topic: Change to custon logo
Replies: 11
Views: 17549

Re: Change to custon logo

will it be possible to change the logo by config?

(I know how to change the code in THIS version of mantis, but will this be a feature in future versions?)

Jens
by nigjo
02 Jan 2008, 13:00
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Re: Mantis Server Farm

I successfuly updated my farm to Version 1.1 ( Backup your current installation before updating!!! )

The config-dir will stay the same as in v1.0.x. Copy config.inc.php from your old installation.

Instead of changing every occurance of $_SERVER['PHP_SELF'] I just added to following lines to config ...
by nigjo
24 Sep 2007, 09:15
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Another hint to solve the " PHP_SELF "-problem:

Edit the code-snippet from above to this one: // check for rewrite_engine
if ( isset( $_SERVER['REDIRECT_URL'] ) ) {
$g_php_self = $_SERVER['REDIRECT_URL'];
} else {
$g_php_self = $_SERVER['PHP_SELF'];
}
$t_path = dirname( strip_tags( $g_php ...
by nigjo
17 Aug 2007, 15:05
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

(or does anyone know a better patch?)
I'm not anyone else, but I found another way. You don't have to replace all %path% with $farmrooturl/$t_conf , but you have to change a file of the distribution: " config_defaults_inc.php ":

Search the following line: $t_path = dirname( strip_tags( $_SERVER ...
by nigjo
13 Aug 2007, 09:08
Forum: Customizations
Topic: One installation for multiple companies?
Replies: 2
Views: 5239

As it is already answered in your cross-posting in "Help":

see: http://www.mantisbt.org/forums/viewtopic.php?t=2887

Jens
by nigjo
13 Aug 2007, 08:59
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Hope I missed nothing.
Add the following to your config-files to get redirected correctly after log out: ###########################
# Redirections
###########################

# Specify where the user should be sent after logging out.
$g_logout_redirect_page = $farmrooturl.'/'.$t_conf.'/login ...
by nigjo
03 Aug 2007, 14:51
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Here is my little tutorial to build a mantisfarm on a single domain. These are the steps I did to make it work for me:
Assuming you want to have the following Mantis-URLs: http://www.example.com/mantisfarm/test/
http://www.example.com/mantisfarm/tools/
http://www.example.com/mantisfarm/apps/ and ...
by nigjo
17 Apr 2007, 14:45
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Sounds great and exactly what I searched for. I will give it a try tomorrow. Thanks

Jens
by nigjo
17 Apr 2007, 13:14
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

The Installations should be accessed through different serverports and they should have thier own user management.

Jens
by nigjo
17 Apr 2007, 12:39
Forum: Help
Topic: Mantis Server Farm
Replies: 12
Views: 31722

Mantis Server Farm

Hi

My current System:
Win2k3, Apache 2.0.58, MySQL 5.0.22, Mantis 1.0.7
Everything is working fine, but that is not my Problem ;)

I have to create different mantis installations, because of different developer groups and different access configurations. Currently I created different folders an ...