Search found 144 matches

by vzw614
30 Jul 2008, 20:38
Forum: Help
Topic: Save attachments to server
Replies: 2
Views: 3443

Re: Save attachments to server

You'll need to add these to config_inc.php and set them accordingly. We store our attachments in the database so I'm not sure what exact changes you'll need to make. ################################### # Mantis File Upload Settings ################################### # --- file upload settings -----...
by vzw614
30 Jul 2008, 17:24
Forum: Customizations
Topic: Customize view page
Replies: 11
Views: 14614

Re: Customize view page

The single quotes go around each of the options, not the outside array..

= array ('selection', 'edit' )

Look in config_defaults_inc.php for how to use the array.
by vzw614
30 Jul 2008, 17:21
Forum: Help
Topic: send emails on any change of status
Replies: 4
Views: 3968

Re: send emails on any change of status

That looks correct. To debug your email notifications you can add the following to your config_inc.php file... # --- system logging --- # This controls the logging of information to a separate file for debug or audit # $g_log_level controls what information is logged # see constant_inc.php for detai...
by vzw614
30 Jul 2008, 14:17
Forum: Help
Topic: send emails on any change of status
Replies: 4
Views: 3968

Re: send emails on any change of status

Check out the Mantis manual. It's for 1.2 but most of the info still applies to your version. http://www.scribd.com/full/2088848?access_key=key-m8e0unedgjvshqlc2hw You've already identified what you need to change. You'll want to add lines to your config_inc.php file to set thresholds for all of the...
by vzw614
30 Jul 2008, 14:08
Forum: Help
Topic: No e-mail notifications on new install ver.1.0.7 on Ubunutu
Replies: 1
Views: 1830

Re: No e-mail notifications on new install ver.1.0.7 on Ubunutu

Mantis uses 2 config files. First it loads settings from config_defaults_inc.php then it loads config_inc.php. Anything that is defined in config_inc.php overrides what was in config_defaults_inc.php. Find the setting you need to change in config_defaults_inc.php and copy Them to config_inc.php and ...
by vzw614
30 Jul 2008, 14:01
Forum: Help
Topic: MySQL Error
Replies: 7
Views: 4650

Re: MySQL Error

You could search through reported bugs here and see if you can find anything. Like I said, I don't use MySQL so I can't really help you much more with the issue.

http://www.mantisbt.org/bugs/login_page.php
by vzw614
29 Jul 2008, 19:22
Forum: Help
Topic: MySQL Error
Replies: 7
Views: 4650

Re: MySQL Error

It looks like your query is timing out. I don't use MySQL so I'm not sure how to tell you to fix the problem but try googling "mysql query timeout" and see if there's a setting you can change to increase the timeout. You could also google "mysql error 2006"
by vzw614
29 Jul 2008, 19:19
Forum: Help
Topic: E-Mail notification on new issues
Replies: 2
Views: 2217

Re: E-Mail notification on new issues

Check this post
http://www.mantisbt.org/forums/viewtopic.php?f=3&t=5905

Also check my other posts. This is a very common question and I've helped several people with it.
by vzw614
29 Jul 2008, 19:18
Forum: Help
Topic: How to Send an email when new issue reported (V1.1.1)
Replies: 5
Views: 4271

Re: How to Send an email when new issue reported (V1.1.1)

Has anyone gotten any emails from Mantis (are you sure Mantis is configured properly to be able to send emails)? Make sure you have this line set... $g_enable_email_notification = ON; There is a page that allows you to test emails, open \admin\check.php in your mantis directory and about half way do...
by vzw614
29 Jul 2008, 19:08
Forum: General Discussion
Topic: How to set up strict access right?
Replies: 2
Views: 2640

Re: How to set up strict access right?

Yes, make the project "private". Then you will need to manually assign users to the project. Only users you assign to the project will be able to work with the project. The one EXCEPTION to this is that anyone you have made an ADMINISTRATOR can work with all projects, even if the project i...
by vzw614
29 Jul 2008, 18:46
Forum: General Discussion
Topic: Problem with Email Notification
Replies: 30
Views: 24234

Re: Problem with Email Notification

You're sure that you have.. $g_phpMailer_method = 2; $g_limit_email_domain = OFF; Are you behind a firewall, either hardware or software based? It's possible that the firewall is blocking port 465 because that isn't the usual port that SMTP uses. At this point that's about all I can help you with be...
by vzw614
28 Jul 2008, 15:49
Forum: Help
Topic: How to Send an email when new issue reported (V1.1.1)
Replies: 5
Views: 4271

Re: How to Send an email when new issue reported (V1.1.1)

Yes, search my posts for other email notification topics. I have posted how to do this several times.
by vzw614
24 Jul 2008, 18:25
Forum: Help
Topic: Email notifications
Replies: 1
Views: 1968

Re: Email notifications

Each user can change their "preferences" by going to My Account -> Preferences and setting which email notifications they want to receive. These over-ride global and project email notification settings.
by vzw614
24 Jul 2008, 18:17
Forum: General Discussion
Topic: BOOLEAN / PGSQL / CASTING / etc.
Replies: 1
Views: 2335

Re: BOOLEAN / PGSQL / CASTING / etc.

Check out this bug. It's a known issue and has been patched.

http://www.mantisbt.org/bugs/view.php?id=7655
by vzw614
23 Jul 2008, 17:31
Forum: Help
Topic: Adding Customer Columns Per Project mantis 1.1.1
Replies: 2
Views: 2239

Re: Adding Customer Columns Per Project mantis 1.1.1

If the line you pasted from your config file is what's in there, you're missing the closing single quote after 'custom_Server_Type ' At this point you can't display certain custom fields in certain projects because all projects use the same "views". You could head over to the MantisBT bug ...