Search found 144 matches

by vzw614
05 Sep 2008, 17:36
Forum: Customizations
Topic: Multiselect List custon field size
Replies: 1
Views: 3085

Multiselect List custon field size

We have a custom field that is defined as a multiselection list. In it we have a list of all of our developers seperated by the pipe character (|). The text box for Possible Values on manage_custom_field_edit_page.php was hard coded at 255 length. I increased that to 1000. I also increased the size ...
by vzw614
03 Sep 2008, 19:33
Forum: Help
Topic: Resetting user password sends no email
Replies: 1
Views: 2186

Re: Resetting user password sends no email

If you have email notifications = ON and send reset password = ON then the new password is sent to the email associated with that account. ELSE the password is reset to blank (no password) and the user can then log in (without supplying a password) and enter a new one themselves. if ( ( ON == config...
by vzw614
03 Sep 2008, 17:07
Forum: General Discussion
Topic: Problem with Email Notification
Replies: 30
Views: 24276

Re: Problem with Email Notification

There is no limit to the number of emails that Mantis can send. Elle, Do you have logging enabled? Add these to your config_inc.php file (be sure to make log path a valid path for your system). Then you can see who each email is being sent to. # --- system logging --- # This controls the logging of ...
by vzw614
03 Sep 2008, 14:03
Forum: Help
Topic: Help configuring email
Replies: 9
Views: 14455

Re: Help configuring email

Change this value to use SMTP

$g_phpMailer_method = 2;
by vzw614
02 Sep 2008, 13:46
Forum: Help
Topic: How to manage multiple private/public spaces
Replies: 1
Views: 1975

Re: How to manage multiple private/public spaces

Make all of your projects PRIVATE and add only the users that should see each project to it. The exception to this is that any user set up as ADMINISTRATOR can see all projects, even private ones they have not manually been added to.
by vzw614
02 Sep 2008, 13:44
Forum: Help
Topic: Make projects visible for only specified users Mantis 1.1.2
Replies: 2
Views: 2555

Re: Make projects visible for only specified users Mantis 1.1.2

If the user can manage the projects then you have their access level set too high. If you have them set as an ADMINISTRATOR they can see all projects, even private ones they are not manually added to (they are automatically added if you look at the list of users at the bottom of a private project).
by vzw614
02 Sep 2008, 13:42
Forum: Help
Topic: How to Install Mantis on Windows Server 2003
Replies: 2
Views: 3240

Re: How to Install Mantis on Windows Server 2003

Mantis runs fine using IIS. Just set up your virtual directory, ensure you have the php extension enabled for your DB in the php.ini file and you should be good to go.
by vzw614
28 Aug 2008, 13:47
Forum: Help
Topic: [Mantis 1.1.2]Cannot send mails with this version
Replies: 1
Views: 1608

Re: [Mantis 1.1.2]Cannot send mails with this version

Check my other posts. There is a known issue in 1.1.2 that causes emails to stop working. There is a patch for it.
by vzw614
22 Aug 2008, 19:06
Forum: Help
Topic: Would like to assign a task to developers, Can only assign t
Replies: 2
Views: 2344

Re: Would like to assign a task to developers, Can only assign t

What is the value of $g_handle_bug_threshold in config_defaults_inc.php and config_inc.php? Is the project "View Status" set to "public" or "private"? From administrator login Manage->Manage Projects -> Click on Project If the project is private, have you manually added...
by vzw614
20 Aug 2008, 13:22
Forum: General Discussion
Topic: Not getting email notifications for new accounts
Replies: 2
Views: 2927

Re: Not getting email notifications for new accounts

Did you try running /admin/check.php and testing the email functionality?

Do you have the email settings configured correctly in your config_inc.php file? ($g_enable_email_notification, $g_phpmailer_method, $g_smtp_host, etc)?

Do you have your smtp set up in your php.ini file correctly?
by vzw614
18 Aug 2008, 19:07
Forum: Help
Topic: Starting issues at higher number
Replies: 3
Views: 3011

Re: Starting issues at higher number

I found this while looking through past posts so give it a try.

ALTER TABLE mantis_bug_table AUTO_INCREMENT=100

Of course, replace the 100 with the number you want to start with.
by vzw614
18 Aug 2008, 17:22
Forum: Help
Topic: How to get a deleted issue back?
Replies: 1
Views: 1817

Re: How to get a deleted issue back?

No, unless you happen to have a backup of the database. It's a destructive delete.
by vzw614
15 Aug 2008, 13:56
Forum: Help
Topic: Mantis is really slow
Replies: 4
Views: 6707

Re: Mantis is really slow

Do you have email notifications turned on? If you do, you should execute /admin/check.php and make sure that Mantis can send emails. The usual cause for Mantis being slow is that it is trying to send out an email and has to wait for the email process to fail and time out.
by vzw614
14 Aug 2008, 19:42
Forum: Help
Topic: Emailing Specific People When a Bug is Logged for a Specific
Replies: 1
Views: 1727

Re: Emailing Specific People When a Bug is Logged for a Specific

I think the only way you'd be able to do this is by making the project "private", adding the managers you want the emails to go to to the project and setting the email notification settings correctly. The issue here is that other "managers" would not be able to view the project u...
by vzw614
14 Aug 2008, 15:26
Forum: Help
Topic: E-mailing problems with mantis 1.1.2
Replies: 2
Views: 2197

Re: E-mailing problems with mantis 1.1.2

Did you check to make sure email from Mantis works by using the \admin\check.php?

Do you have all of the settings entered correctly in your config_inc.php for email notifications to work?

Check my other posts for what settings you need to have.