Search found 58 matches
- Today, 16:52
- Forum: Help
- Topic: Using Sendgrid
- Replies: 3
- Views: 36
Re: Using Sendgrid
Firewall ?
- Today, 16:27
- Forum: Help
- Topic: Using Sendgrid
- Replies: 3
- Views: 36
Re: Using Sendgrid
This is what we use here $g_phpMailer_method = PHPMAILER_METHOD_SMTP; $g_smtp_host = 'smtp.sendgrid.net'; $g_smtp_connection_mode = 'tls'; $g_smtp_username = 'apikey'; $g_smtp_password = '<your api key here>'; The only meaningful difference is that we don't set the port number, so MantisBT defaults ...
- 30 Nov 2020, 16:04
- Forum: Help
- Topic: Can you change $g_crypto_master_salt
- Replies: 3
- Views: 332
Re: Can you change $g_crypto_master_salt
$g_crypto_master_salt is used internally to generate strings such as passwords, API keys, confirmation hashes, etc.
You can safely change it.
You can safely change it.
- 30 Nov 2020, 15:47
- Forum: Help
- Topic: db_query() prevents to insert string '{'
- Replies: 2
- Views: 241
Re: db_query() prevents to insert string '{'
Our database abstraction layer uses the syntax {xxx} as placeholder for internal table names, e.g. select * from {bug} Currently the code just performs a blind replacement of '{' by the table prefix, and ' }' by the suffix. This should be done in a more discerning manner. Unfortunately, there is cur...
- 26 Oct 2020, 16:23
- Forum: General Discussion
- Topic: Mantis with MySQL
- Replies: 2
- Views: 1058
Re: Mantis with MySQL
Check your PHP / web server log for errors.
- 26 Oct 2020, 14:01
- Forum: Help
- Topic: LDAP: cannot update information in database due to encoding
- Replies: 3
- Views: 3300
Re: LDAP: cannot update information in database due to encoding
Just a thought, the reference to samAccountName in $g_ldap_uid_field configuration parameter indicates that you are using LDAP to access an Active Directory server, but you did not set $g_ldap_protocol_version = 3; which is required for such connections, as documented in the Admin Guide . Microsoft ...
- 26 Oct 2020, 12:54
- Forum: Help
- Topic: LDAP: cannot update information in database due to encoding
- Replies: 3
- Views: 3300
Re: LDAP: cannot update information in database due to encoding
Possibly the same issue, with MantisBT 2.24.3 - https://mantisbt.org/bugs/view.php?id=27420
@theseus did you ever find a solution to your problem ?
@theseus did you ever find a solution to your problem ?
- 02 Jun 2020, 15:57
- Forum: Help
- Topic: Upgrade Old version of Mantis version 1 to latest version
- Replies: 2
- Views: 1772
- 02 Jun 2020, 11:00
- Forum: Help
- Topic: Mantisbt LDAP startTLS
- Replies: 1
- Views: 1360
Re: Mantisbt LDAP startTLS
Please have a look at https://mantisbt.org/bugs/view.php?id=15361
We are still waiting for that pull request, so If you're willing to do the legwork and submit one with working code based on the attached patch, I'll gladly review it.
We are still waiting for that pull request, so If you're willing to do the legwork and submit one with working code based on the attached patch, I'll gladly review it.
- 14 May 2020, 14:01
- Forum: Help
- Topic: MySQL migration from localhost to webhost
- Replies: 4
- Views: 2231
- 27 Mar 2020, 11:04
- Forum: French
- Topic: Mise à jours 2.5.1 -> 2.23.0
- Replies: 1
- Views: 4189
Re: Mise à jours 2.5.1 -> 2.23.0
> J'imagine que je ne peux pas passer vers la 2.23.0 d'un seul coup.
Si, bien sûr.
Le processus de mise à jour est décrit dans la documentation (en anglais, désolé).
http://mantisbt.org/docs/master/en-US/A ... ll.upgrade
Si, bien sûr.
Le processus de mise à jour est décrit dans la documentation (en anglais, désolé).
http://mantisbt.org/docs/master/en-US/A ... ll.upgrade
- 27 Mar 2020, 10:59
- Forum: General Discussion
- Topic: Related Changesets BOX
- Replies: 1
- Views: 3406
Re: Related Changesets BOX
Related changesets is still there and working just fine in MantisBT 2.x
See for example https://mantisbt.org/bugs/view.php?id=26811#changesets
As a side note, why 2.1.0 ? You should upgrade to the latest (2.24)
See for example https://mantisbt.org/bugs/view.php?id=26811#changesets
As a side note, why 2.1.0 ? You should upgrade to the latest (2.24)
- 27 Mar 2020, 10:51
- Forum: General Plugin Discussion
- Topic: Using Composer for installing MantisBT plugins
- Replies: 2
- Views: 4382
Re: Using Composer for installing MantisBT plugins
Nice !
I'll give that a shot when I have some time.
I'll give that a shot when I have some time.
- 03 Jan 2020, 01:58
- Forum: General Discussion
- Topic: APPLICATION ERROR #1502
- Replies: 7
- Views: 7567
Re: APPLICATION ERROR #1502
It was removed from the admin guide, as it was no longer necessary.
See https://github.com/mantisbt/mantisbt/co ... ff5638ed46
See https://github.com/mantisbt/mantisbt/co ... ff5638ed46
- 03 Jan 2020, 01:50
- Forum: General Discussion
- Topic: Product Matrix
- Replies: 4
- Views: 4094
Re: Product Matrix
Look at pull request #3 which was an attempt to make it compatible with MantisBT 1.3, back in 2016. I had started to review it, then got sidetracked and it never went through. It may even be mergeable, but I don't have time to check now. Anyway you should probably start from that point. Adapting 1.3...