Jon Bake
Jon Bake
I believe the login form is defined via omniauth: https://github.com/omniauth/omniauth/blob/a62d36b3f847e0e55b077790112e96950c35085a/lib/omniauth/form.rb
> Currently username takes me from the uid field of AD (which is shown as a number) and I want to display displayName (name and surname) there. Where can I...
Can you post the command you used to install the plugin? Also, what errors are showing?
That looks correct according to the Bitnami docs. This method of plugin installation is specific to Bitnami, i.e. they provide the `rake plugin:install` task. Are any errors logged when you...
You would have to read the log file to determine the underlying issue. Can you see what error is showing in the log file?
@psunkana Can you describe what this change is? Why is it necessary? Maybe provide a before and after screenshot of the styling changes.
Is it a duplicate of https://github.com/jonmbake/discourse-ldap-auth/pull/47?
Hi. Did you clear your browsers cookies? Is there anything logged in the server log?
@skddc I believe if you turn off _Use real names_ in your Admin Settings, it will automatically create the account and will not prompt for real name.
A way to update the plugin to support real name might be to update the User creation code, e.g. https://github.com/jonmbake/discourse-ldap-auth/blob/8ccbfd9f93a284543f8008b739c713f309de6391/lib/ldap_user.rb#L31, to set `user#full_name`: https://github.com/discourse/discourse/blame/721ee3642558d960db9345c6238a457aa7f5d674/app/models/user.rb#L106. It would require a bit more...