Search found 349 matches

by mushu
08 Dec 2021, 21:24
Forum: EmailReporting
Topic: OAuth2 email authentication method needed
Replies: 31
Views: 173257

Re: OAuth2 email authentication method needed

I also found this which might be easier to implement into the code: https://github.com/adoy/PHP-OAuth2
by mushu
06 Dec 2021, 15:12
Forum: Help
Topic: Admin maintenance goes to wrong start page
Replies: 6
Views: 3811

Re: Admin maintenance goes to wrong start page

THANK YOU @atrol I think this was the missing item. It appears that the only thing I was missing was an email table change. I don't normally do a database update unless it is listed in the Change Log for the new Mantis version. I ran the database update and now I will see if it works properly. Unfor...
by mushu
01 Dec 2021, 17:28
Forum: Help
Topic: Admin maintenance goes to wrong start page
Replies: 6
Views: 3811

Re: Admin maintenance goes to wrong start page

Also, in Chrome browser console window, the following Javascript error is showing which may be part of this. When I click the [Manage] button and then enter my password, it goes to the install.php page and the following error shows up in the browser console: install.js:146 Uncaught TypeError: Cannot...
by mushu
01 Dec 2021, 17:02
Forum: Help
Topic: Admin maintenance goes to wrong start page
Replies: 6
Views: 3811

Re: Admin maintenance goes to wrong start page

Thanks for replying. My file is the same as yours. I compared it to the previous version and only minor changes were made. Wondering if something else, perhaps a custom variable was added somewhere?
by mushu
30 Nov 2021, 23:40
Forum: Help
Topic: Admin maintenance goes to wrong start page
Replies: 6
Views: 3811

Admin maintenance goes to wrong start page

Windows Server 2012R2 MantisBT 2.25.2 Every time I click the [Manage] button and enter the admin password to go into the settings, this version of Mantis goes to the /admin/install.php screen every freaking time! The previous version didn't do that. I have to go back to the main tickets screen and t...
by mushu
29 Nov 2021, 20:59
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

Would be wonderful to have that option, but.........see this thread: https://www.mantisbt.org/forums/viewtop ... 13&t=27637
by mushu
29 Nov 2021, 19:00
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

OOOHHHH I see, you were trying to tell me that I didn't need to mess with the new LDAP variables in my config file if I just set login method to MD5 and leave everything else the same. I get it now. Well, too late since I already got them in and configured lol. Now, if only we could get the email sy...
by mushu
29 Nov 2021, 18:54
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

Except it doesn't work. I set the login method to MD5 in config file and then disabled the adlogin plugin, and now going to the Mantis page it prompts for username to log in.
by mushu
29 Nov 2021, 18:13
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

No, if I disable that plugin then Mantis prompts for username/password to log in. Just tried it. Even with IIS set to Windows Authentication. So the plugin is needed to grab those user credentials and present them to Mantis automatically, thus allowing us to bypass entry of username/password.
by mushu
29 Nov 2021, 16:09
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

It still is and works just fine. I was missing some of the defaults that were set with incompatible settings. Once I added those new variables to my config file everything started working again. Just out of curiosity, if I am not supposed to use the LDAP login method when using that plugin, then whi...
by mushu
24 Nov 2021, 22:26
Forum: EmailReporting
Topic: OAuth2 email authentication method needed
Replies: 31
Views: 173257

Re: OAuth2 email authentication method needed

EDIT: I found the following links that might be of interest: MS docs on OAuth authentication: https://docs.microsoft.com/en-us/exchange/client-developer/legacy-protocols/how-to-authenticate-an-imap-pop-smtp-application-by-using-oauth PHP OAuth2 code for Microsoft: https://github.com/stevenmaguire/oa...
by mushu
24 Nov 2021, 21:44
Forum: EmailReporting
Topic: OAuth2 email authentication method needed
Replies: 31
Views: 173257

OAuth2 email authentication method needed

In the email settings screen here http://[server]/plugin.php?page=EmailReporting/manage_mailbox as per the docs here http://www.mantisbt.org/wiki/doku.php/mantisbt:plugins:emailreporting#auth_method needs to have the OAuth2 option for authenticating user accounts via POP3 and IMAP to outlook.office3...
by mushu
24 Nov 2021, 18:24
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

I've been comparing the code changes in the ldap_api.php file and starting around line 100 there is a bunch of new code that starts checking TLS protocol stuff that it didn't do before. That is what killed me since the defaults in the default_config.php file had those options enabled but our setup w...
by mushu
24 Nov 2021, 17:37
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

GOT IT FIGURED OUT! It was using STARTTLS for the LDAP server (carried in from the default config settings, thus I missed it) which is not configured for that. I turned that option off in the config file and then it logged me in and went to the "checking installation" screen and everything...
by mushu
24 Nov 2021, 16:38
Forum: Help
Topic: Admin config screen blank when login
Replies: 24
Views: 17264

Re: Admin config screen blank when login

Forgot to say that I also updated PHP from 5.6 to 7.4 and copied over the php.ini file from the old version, then verified that there were no version-specific or directory-specific issues in it. I remember reading that PHP 7 had some kind of breaking issue a while back, but assume that has all been ...