Search found 509 matches

by deboutv
27 Feb 2007, 06:13
Forum: Customizations
Topic: Customizing Status/Workflow
Replies: 4
Views: 8161

by deboutv
22 Feb 2007, 15:45
Forum: General Discussion
Topic: What are the Global Profiles for?
Replies: 5
Views: 12493

Re: What are the Global Profiles for?

Hello! I'm evaluating Mantis for our company because we want to switch from phpBugTracker to a better bugtracking environment. I've got some questions about it... 1) What are the global profiles for? How do I use them? Profiles are used in the advanced view of bugs. Global profiles are used to defi...
by deboutv
22 Feb 2007, 06:41
Forum: Customizations
Topic: Unable to increase the project document size for upload
Replies: 6
Views: 13175

Re: done the changes suggested, but still have issues

hi, php.ini now has this config: ---------------- file_uploads = On upload_tmp_dir = "C:\Program Files\xampp\tmp" upload_max_filesize = 16M post_max_size = 16M and config_inc has: $g_allow_file_upload = ON; $g_max_file_size = 10000000; # 5 MB $g_file_upload_method = DISK; #DATABASE,DISK,F...
by deboutv
22 Feb 2007, 06:22
Forum: General Discussion
Topic: Manager VS Developers?
Replies: 4
Views: 5987

Hello,

What are the values of the following variables?

$g_update_bug_assign_threshold
$g_handle_bug_threshold
by deboutv
22 Feb 2007, 06:09
Forum: Customizations
Topic: Unable to increase the project document size for upload
Replies: 6
Views: 13175

Re: Upload File error

What is the Mantis version? the error message (if any)? hi, The version is mantis-1.0.5 and am running on Apache. Php5.. If i mention the thresholds i would not see the Add file option itself. $g_allow_file_upload = ON; $g_max_file_size = 10000000; # 10 MB $g_file_upload_method = DISK; #DATABASE,DI...
by deboutv
21 Feb 2007, 13:20
Forum: Customizations
Topic: Unable to increase the project document size for upload
Replies: 6
Views: 13175

What is the Mantis version? the error message (if any)?
by deboutv
17 Feb 2007, 16:15
Forum: Help
Topic: How to get mails in HTML format
Replies: 2
Views: 4410

The plugin to send HTML email is now released. The link is in my signature.
by deboutv
16 Feb 2007, 17:48
Forum: Help
Topic: Email notifications to project users only.
Replies: 5
Views: 5490

In public project, user herits their access level from the global configuration. So all managers defined in All projects are automatically assigned as manager in all public project. So, if you want to keep public project, you need to set for all user the access level REPORTER and "assign" ...
by deboutv
16 Feb 2007, 07:44
Forum: General Discussion
Topic: create users w/o confirmation email
Replies: 6
Views: 8424

ed wrote:The mail server does not need to be installed on the same machine as mantis. In config_inc.php add:

$g_phpMailer_method = 2;
$g_smtp_host = 'mailserver';

May need to also alter you php.ini ... look for [mail function]
If you choose $g_phpMailer_method = 2, you don't need to alter the php.ini ;)
by deboutv
15 Feb 2007, 21:58
Forum: Help
Topic: Daylight Savings Time
Replies: 3
Views: 5302

What is the problem?
by deboutv
15 Feb 2007, 15:56
Forum: Help
Topic: database problems
Replies: 25
Views: 16656

You also need to change theses variables:

$g_administrator_email = 'administrator@example.com';
$g_webmaster_email = 'webmaster@example.com';

# the 'From: ' field in emails
$g_from_email = 'noreply@example.com';

# the return address for bounced mail
$g_return_path_email = 'admin@example.com';
by deboutv
15 Feb 2007, 15:01
Forum: Help
Topic: database problems
Replies: 25
Views: 16656

The user name is an email address?
by deboutv
15 Feb 2007, 14:35
Forum: Help
Topic: database problems
Replies: 25
Views: 16656

$g_phpMailer_method = 2; # Use SMTP server
$g_smtp_host = 'smtp.free.fr'; # like in your mailer
$g_smtp_username = ''; # no authentication
$g_smtp_password = '';
$g_email_send_using_cronjob = OFF;
by deboutv
15 Feb 2007, 14:07
Forum: Help
Topic: database problems
Replies: 25
Views: 16656

In the config_inc.php fil eyou need to set theses variables (the most important is the first one): # select the method to mail by: # 0 - mail() # 1 - sendmail # 2 - SMTP $g_phpMailer_method = 0; # This option allows you to use a remote SMTP host. Must use the phpMailer script # Name of smtp host, ne...
by deboutv
15 Feb 2007, 13:59
Forum: Help
Topic: database problems
Replies: 25
Views: 16656

sisqonrw wrote:ok but i get this message:

PROBLEMS SENDING MAIL TO: ernih@gmx.de
Mailer Error: Could not instantiate mail function.

but mantis create this user. does it works?
Did you configure the email?