Search found 18 matches

by zakman
06 Nov 2007, 10:31
Forum: General Discussion
Topic: email developers when reporters submit issues
Replies: 4
Views: 4977

Re: email developers when reporters submit issues

Hi Hung,

First be sure that you set the email notification to ON
$g_enable_email_notification = ON;

# If you wanted to have all developers get notified of new bugs you might add
# the following lines to your config file:

$g_notify_flags['new']['threshold_min'] = DEVELOPER;
$g_notify_flags ...
by zakman
05 Nov 2007, 12:06
Forum: Help
Topic: MANTIS file upload
Replies: 7
Views: 5368

Re: MANTIS file upload

Ok, Try to set $g_max_file_size in your config_inc.php file

# Maximum file size that can be uploaded
# Also check your PHP settings (default is usually 2MBs)
$g_max_file_size = 5000000; # 5 MB
by zakman
05 Nov 2007, 10:49
Forum: Help
Topic: MANTIS file upload
Replies: 7
Views: 5368

Re: MANTIS file upload

What is upload method you are using to store your files?
DATABASE, FTP, or DISK?
by zakman
20 Oct 2007, 11:37
Forum: Help
Topic: Add on to paste screen shoots in Mantis
Replies: 6
Views: 6114

by zakman
29 Sep 2007, 08:57
Forum: General Discussion
Topic: Project level permission
Replies: 2
Views: 4373

login as Admin, go for "manage_user_edit_page.php"

let me know if you will find in it the permission or the access level you need or not.
by zakman
27 Sep 2007, 14:43
Forum: Help
Topic: Email Notification Sign Up
Replies: 5
Views: 5722

ok,

in your config_inc.php, put:

$g_notify_new_user_created_threshold_min = NOBODY;

instead of:

$g_notify_new_user_created_threshold_min = ADMINISTRATOR;

Tell me if this helped you.
by zakman
27 Sep 2007, 11:10
Forum: Help
Topic: Email Notification Sign Up
Replies: 5
Views: 5722

What about using this condition flag?

# note that if this is disabled, sign-up and password reset messages will
# not be sent.
$g_enable_email_notification = ON;
by zakman
05 Sep 2007, 10:41
Forum: Customizations
Topic: Help please with Mantis signups
Replies: 2
Views: 5299

put in "config_inc.php"

$g_enable_email_notification = OFF;
by zakman
04 Sep 2007, 20:57
Forum: Help
Topic: reporter can not change the isuue status
Replies: 3
Views: 3883

Ok Bhagyna,

Then put in "config_inc.php"

$g_update_bug_status_threshold = REPORTER;
by zakman
04 Sep 2007, 09:49
Forum: Help
Topic: reporter can not change the isuue status
Replies: 3
Views: 3883

put in "config_inc.php"

$g_update_bug_threshold= REPORTER;

which override $g_update_bug_threshold= UPDATER; in config_defaults_inc.php

Regards
by zakman
04 Jul 2007, 11:12
Forum: Help
Topic: Disabling Email Notifications
Replies: 3
Views: 9030

email notification

in config_defaults_inc.php

change:

$g_enable_email_notification = ON;

to:

$g_enable_email_notification = OFF;
by zakman
04 Jun 2007, 22:27
Forum: Help
Topic: Moving Attachements to Different Directory
Replies: 3
Views: 4837

Try to do it through Manage -> Manage projects, then click on the project name, then you will find a field for Upload file path.

Hope this help you.
by zakman
25 May 2007, 23:03
Forum: Help
Topic: Help needed on sending emails
Replies: 2
Views: 4341

Try to Use SMTP method, by fill the following

$g_phpMailer_method = 2;
$g_smtp_host= ' ';
$g_smtp_username = ' ';
$g_smtp_password = ' ';
by zakman
16 Apr 2007, 08:53
Forum: Help
Topic: SMTP authentication: How to make it work?
Replies: 2
Views: 5320

Hi,

In config_defaults_inc.php
Set $g_phpMailer_method= 2; Instead of $g_phpMailer_method= 0;
And
$g_smtp_host= 'Your SMTP host';
$g_smtp_username = 'your username';
$g_smtp_password = 'your password';

Hope that what you need
by zakman
03 Apr 2007, 21:54
Forum: Help
Topic: Creating Projects
Replies: 2
Views: 4466

Hi Sascha,
For creating new project or users, you have to login as administrator. Then click on Manage -> Mangage projects, then you will got a button for create New Project.
After you create a new project, Manage -> Manage Users, then you will got a button for create a new accout, then after ...