Search found 8374 matches

by atrol
11 Jun 2010, 16:04
Forum: Deutsch
Topic: Nicht alle Nutzergruppen sollen Anhänge hochladen dürfen
Replies: 6
Views: 7294

Re: Nicht alle Nutzergruppen sollen Anhänge hochladen dürfen

Soweit mir bekannt ist das nicht mittels Konfiguration möglich.
Grundsätzlich ist es natürlich möglich, bedeutet aber Anpassungen im Sourcecode. (und damit eventuell Probleme und Aufwand bei Updates)

Wie ist der konkrete Anwendungsfall in der Praxis?
by atrol
11 Jun 2010, 12:15
Forum: Help
Topic: Upgrade-Problems 1.1.7 --> 1.2.1
Replies: 10
Views: 4953

Re: Upgrade-Problems 1.1.7 --> 1.2.1

Check in our old 1.1.7 version the project management page.
Have a closer look at the versions listing. Is there any curious date entry?
by atrol
11 Jun 2010, 07:34
Forum: General Discussion
Topic: Migrating and upgrading Mantis
Replies: 8
Views: 33215

Re: Migrating and upgrading Mantis

The database schema between your very old MantisBT and current 1.2.1 changed. You can't import old data in new schema without problems. You have to create a new empty database, import the old dump and let MantisBT installation procedure upgrade the old schema to the new one. Read file doc/INSTALLATI...
by atrol
11 Jun 2010, 07:27
Forum: Help
Topic: send email to all project users
Replies: 1
Views: 1773

Re: send email to all project users

This is a known feature request
http://www.mantisbt.org/bugs/view.php?id=3018

Maybe using the news functionality can help you in some way.
To enable this, you have to add the following line to config_inc.php

Code: Select all

$g_news_enabled = ON;
by atrol
11 Jun 2010, 07:21
Forum: Help
Topic: Create user with custom permissions.
Replies: 1
Views: 1331

Re: Create user with custom permissions.

Add the following line to file config_inc.php to allow reporters to see only the issues that they reported

Code: Select all

$g_limit_reporters = ON;
by atrol
11 Jun 2010, 07:09
Forum: Deutsch
Topic: Größerer Upload
Replies: 10
Views: 12461

Re: Größerer Upload

Falls die maximale Dateigröße mit der Frage gemeint ist, so ist dafür auf Seite von MantisBT die folgende Zeile in die Datei config_inc.php entsprechend angepasst einzutragen. $g_max_file_size = <maximale Anzahl Bytes des Dateianhangs>; Es existieren allerdings noch weitere Beschränkungen a) in PHP ...
by atrol
11 Jun 2010, 06:59
Forum: General Discussion
Topic: Closing a bug is very slow - more than 2 minutes
Replies: 4
Views: 6118

Re: Closing a bug is very slow - more than 2 minutes

To check whether this is caused by sending of email you can temporary set

Code: Select all

$g_enable_email_notification	= OFF;
in file config_inc.php
by atrol
10 Jun 2010, 16:03
Forum: Deutsch
Topic: "Profil wählen" abschalten
Replies: 3
Views: 5120

Re: Sammelfragen zu Anpassungen

Bitte keine Sammelfragen, das führt zu Durcheinander und keiner kann sich unter der Überschrift etwas vorstellen.
by atrol
10 Jun 2010, 16:01
Forum: Deutsch
Topic: Eintrag erfassen -> Projekt wählen wird nicht angezeigt
Replies: 2
Views: 5415

Re: Eintrag erfassen -> Projekt wählen wird nicht angezeigt

Dropdown Box einfach leer welche Dropdown Box? Angelegt wäre eigentlich ein Projekt Interpretiere ich das richtig : Du hast lediglich ein einziges Projekt angelegt, aber erhälst eine Dropdown Box für eine Projektauswahl? (falls das die ist die oben gemeint ist) Über welche Version reden wir: Die de...
by atrol
10 Jun 2010, 15:51
Forum: General Discussion
Topic: Closing a bug is very slow - more than 2 minutes
Replies: 4
Views: 6118

Re: Closing a bug is very slow - more than 2 minutes

Just closing is slow? All other operations are fast?
by atrol
10 Jun 2010, 11:23
Forum: Help
Topic: raquo text in extended project
Replies: 3
Views: 3046

Re: raquo text in extended project

Thanks for the information.
This is not reproducible when using version 1.2.1
Maybe you should upgrade
by atrol
09 Jun 2010, 15:06
Forum: General Discussion
Topic: Password algorithm
Replies: 1
Views: 1994

Re: Password algorithm

Two links to start reading
http://www.mantisbt.org/bugs/view.php?id=7791
http://www.mantisbt.org/bugs/view.php?id=4235

A simple approach would be to check the password with a regular expression.
Something like described at http://www.cafewebmaster.com/check-pass ... -and-regex
by atrol
09 Jun 2010, 14:49
Forum: Help
Topic: How to change the order of versions in the list?
Replies: 3
Views: 2916

Re: How to change the order of versions in the list?

This is exactly the expected behaviour: If ordering is by field "date_order" and "data_order" is the same for all entries, the ordering is pure random, depending on the internals of a database. This can change from database to database manufacturer and even from databse version t...
by atrol
09 Jun 2010, 09:44
Forum: Help
Topic: How to change the order of versions in the list?
Replies: 3
Views: 2916

Re: How to change the order of versions in the list?

Ordering is by field "date_order"
by atrol
09 Jun 2010, 09:34
Forum: Customizations
Topic: Theme Customization
Replies: 5
Views: 8262

Re: Theme Customization

Jordan Smith wrote: All i did was add the php code to the theme
Could you be more precise what you did?
MantisBT has no themes, so I am confused where you added something to it.
Maybe you post the changed sourcecode to get an impression of what you did.