Search found 14 matches

by gerb42
30 Oct 2008, 22:13
Forum: Help
Topic: Can't access wiki
Replies: 0
Views: 1348

Can't access wiki

Hi,

I can't access the Wiki anymore. Every link to a wiki page takes me to the start page. What's wrong?

regards
gerd
by gerb42
28 Mar 2008, 08:03
Forum: General Discussion
Topic: PostgreSQL in 1.x?
Replies: 5
Views: 5358

Re: PostgreSQL in 1.x?

No comments on this from the developers?

@smig: Did you install Mantis from scratch or did you upgrade from a previous version? We have a non-English 1.0.6 with some tweaks, so we will have to be very careful during upgrade anyway, and I do not like to be bitten by something like database ...
by gerb42
19 Mar 2008, 08:33
Forum: General Discussion
Topic: PostgreSQL in 1.x?
Replies: 5
Views: 5358

PostgreSQL in 1.x?

Just did a search for db_postgresql issues in the bug tracker. There are still several open items. Are there plans to fix these in the near future? We have a 1.0.6 running smoothly on PostgreSQL 8.1 but we'd like to switch to a more recent version which seems to be a no-go at the moment.

thx
gb
by gerb42
18 Jun 2007, 10:34
Forum: Help
Topic: LDAP authentication
Replies: 3
Views: 5539

Sneefy,

first, AD does not allow anonymous queries, so you need to specify an account for queries using $g_ldap_bind_dn and $g_ldap_bind_passwd. Second, AFAIR LDAP is case-sensitive, so you need to specify $g_ldap_uid_field as "sAMAccountName"
by gerb42
05 Jun 2007, 18:27
Forum: Help
Topic: Does Postgresql Support really work?! Can't get it up
Replies: 3
Views: 5115

Hmm, sounds strange to me. We have a 1.0.6 running on postgres and creation was not a problem. Have you tried creating the database before installation (only the database, no tables)?
by gerb42
04 Jun 2007, 14:29
Forum: Help
Topic: Does Postgresql Support really work?! Can't get it up
Replies: 3
Views: 5115

bierstuebl,

first check whether pgSQL is enabled in your php config. To do so, create a .php file in your mantis directory with the following contents:

<?php
phpinfo();
?>

If you open this page in a browser, it should give you some information about the pgSQL module. If not, pgSQL is not ...
by gerb42
04 May 2007, 07:11
Forum: General Discussion
Topic: Speed Bugzilla vs Mantis
Replies: 2
Views: 8070

Chris,

it seems that the blog you mentioned is a bit outdated since it refers to a 0.x version of mantis (some points are not true anymore). Other points are a question of personal taste: to me bugzilla's layout looks a bit cluttered.

Vincent,

according to our experience the database access takes ...
by gerb42
03 May 2007, 16:44
Forum: Help
Topic: JPGraph does not display german Umlaute
Replies: 6
Views: 8524

Hi Josef,

if you are on WinXP then it should be the Font issue. Make sure to use a TrueType Font (Arial or Tahoma or whatever). Umlauts should be displayed then. I don't recall the setting at the moment but it definitely is a config thing.

Edit:
our Settings are:
in config_inc.php:

$g_graph ...
by gerb42
02 May 2007, 16:11
Forum: General Discussion
Topic: Mantis Search Plugin for Firefox
Replies: 6
Views: 22513

Plugin using OpenSearch Syntax

This works for FF2 and IE7:
<OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/"
xmlns:moz="http://www.mozilla.org/2006/browser/search/">
<ShortName>MyPlugin</ShortName>
<Description>Description of my Plugin</Description>
<InputEncoding>UTF-8</InputEncoding>
<Image width="16" height ...
by gerb42
30 Apr 2007, 07:41
Forum: Help
Topic: JPGraph does not display german Umlaute
Replies: 6
Views: 8524

Hi Josef,

we had similar Problems but managed to solve this by compiling libgd without JIS Support. Also make sure not to use the default Fonts. Use a TrueType Font instead.

Gerd.
by gerb42
29 Jan 2007, 17:02
Forum: Help
Topic: URGENT: WRONK LINK to Manual ?
Replies: 4
Views: 6822

I'm afraid it's not. When I click on "Manual", I get to a folder listing showing that index.html has 0 bytes.
by gerb42
18 Jan 2007, 10:47
Forum: Help
Topic: Server Authentication
Replies: 4
Views: 6063

Ok, in Method auth_attempt_login I replaced the following line:

if ( !auth_does_password_match( $t_user_id, $p_password ) ) {

with this one:

if ( HTTP_AUTH != $t_login_method && !auth_does_password_match( $t_user_id, $p_password ) ) {

and changed $g_login_method to HTTP_AUTH. This seems to ...
by gerb42
18 Jan 2007, 08:17
Forum: Help
Topic: Server Authentication
Replies: 4
Views: 6063

Hi ed,

I already tried this options. Maybe some more Info about the scenario would help:

The Apache Server requests a username and password which it uses to authenticate users via LDAP against our AD, so users can log in using their Windows account name and password.

If I set Mantis to use the ...
by gerb42
17 Jan 2007, 17:13
Forum: Help
Topic: Server Authentication
Replies: 4
Views: 6063

Server Authentication

Hi all,

I have mantis 1.0.6 runnig on a server which already requires users to log on. Is it possible to make mantis use this credentials? If yes, how?

thx