Search found 144 matches

by vzw614
12 Sep 2008, 14:52
Forum: Help
Topic: I don't receive Emails from Mantis
Replies: 8
Views: 6017

Re: I don't receive Emails from Mantis

Is mySMTP actually a fully qualified SMTP server (you just edited it so as to not post it on here)?

Something like mailhost.mySMTP.com

Those should be the only settings you need in the php.ini file.
by vzw614
12 Sep 2008, 13:31
Forum: Help
Topic: I don't receive Emails from Mantis
Replies: 8
Views: 6017

Re: I don't receive Emails from Mantis

Well it sounds like there is a problem with the settings for SMTP in your php.ini file. You need to get those fixed (there's a section for SMTP in the php.ini file) before you can test Mantis emails.
by vzw614
11 Sep 2008, 18:03
Forum: Help
Topic: I don't receive Emails from Mantis
Replies: 8
Views: 6017

Re: I don't receive Emails from Mantis

What version of Mantis? Have you tested to make sure email notifications work? (mantis\admin\check.php) Are the SMTP settings correct in your php.ini file? Do other email notifications work in Mantis? Have you (or the user that isn't getting emails) changed any settings in My Account -> Preferences?...
by vzw614
11 Sep 2008, 14:25
Forum: Customizations
Topic: Unofficial way to customize Severity & Priority
Replies: 9
Views: 25683

Re: Unofficial way to customize Severity & Priority

Yes. The custom_string_inc.php file is where Mantis gets the actual text for the strings.
by vzw614
11 Sep 2008, 14:24
Forum: Help
Topic: Sort Bugnotes in desc order in email notification
Replies: 5
Views: 6358

Re: Sort Bugnotes in desc order in email notification

It may have been a bug in 1.1.1. You can search for it in the Mantis issues at http://www.mantisbt.org/bugs/login_page.php
by vzw614
11 Sep 2008, 14:22
Forum: Help
Topic: Sending email on new issue doesn't work
Replies: 1
Views: 2139

Re: Sending email on new issue doesn't work

Have you checked the other posts about emails not working? There seems to be a new one at least once a day. What version of mantis are you running? There was a bug in 1.1.2 that caused emails for new issues to stop working. Check my other posts and you will find a link to the patch that fixes that i...
by vzw614
10 Sep 2008, 15:31
Forum: Customizations
Topic: Unofficial way to customize Severity & Priority
Replies: 9
Views: 25683

Re: Unofficial way to customize Severity & Priority

You shouldn't make changes to config_default_inc.php because that file gets over-written when you upgrade to a new version of mantis. Copy/paste any sections you need to change into config_inc.php and make your changes there. That file is not over-written during an upgrade.
by vzw614
10 Sep 2008, 15:28
Forum: Help
Topic: Log in Mantis with Windows(domain) password
Replies: 3
Views: 3176

Re: Log in Mantis with Windows(domain) password

Sorry, I can't help you with the LDAP configuration. Someone else will need to chime in.
by vzw614
10 Sep 2008, 15:27
Forum: Help
Topic: Sort Bugnotes in desc order in email notification
Replies: 5
Views: 6358

Re: Sort Bugnotes in desc order in email notification

Yes, it affects the email layout as well as the way it is displayed on the webpage. I don't believe there is a way to change just the email unless you edit the php file that generates the email.
by vzw614
09 Sep 2008, 17:15
Forum: Help
Topic: Sort Bugnotes in desc order in email notification
Replies: 5
Views: 6358

Re: Sort Bugnotes in desc order in email notification

In config_inc.php edit ############################### # Mantis Bugnote Settings ############################### # --- bugnote ordering ------------ # change to ASC or DESC $g_bugnote_order = 'DESC'; You can also change the order of the history ################################ # Mantis Bug History S...
by vzw614
09 Sep 2008, 17:09
Forum: Customizations
Topic: view_issues_page_colums not found
Replies: 3
Views: 3591

Re: view_issues_page_colums not found

When we added custom fields we just modifed $g_view_issues_page_columns in config_inc.php instead of doing it via the web interface. I remember reading somewhere that there was an issue in the web interface when entering an array. Be sure you don't have any space after the word array and the opening...
by vzw614
09 Sep 2008, 14:27
Forum: Help
Topic: Log in Mantis with Windows(domain) password
Replies: 3
Views: 3176

Re: Log in Mantis with Windows(domain) password

You need to configure LDAP as the authentication method.
by vzw614
05 Sep 2008, 19:54
Forum: Customizations
Topic: Multiselect List custon field size
Replies: 1
Views: 3081

Re: Multiselect List custon field size

After some futher investigation I'm pretty sure the problem is when the value is being retrieved from the database. I found this line of code in \core\adodb\drivers\adodb-mssql.inc.php // returns concatenated string // MSSQL requires integers to be cast as strings // automatically cast every datatyp...
by vzw614
05 Sep 2008, 19:33
Forum: Help
Topic: Help configuring email
Replies: 9
Views: 14429

Re: Help configuring email

Are you trying to use SMTP? If you are, does your smtp server use the default port or a different port? (25 is default I believe). If it uses a different port check the config file and it shows how to include the port number to use. Have you checked your php.ini file to make sure the SMTP setting ar...