Jump to content

nickbro

Members
  • Posts

    4,190
  • Joined

  • Last visited

Reputation

3,896 Excellent

2 Followers

About nickbro

Personal Information

  • Occupation
    Senior M365 Developer & Architect
  • Location
    Gilwern, Wales
  • X
  • Homepage
    http://www.nbdev.co.uk

Employer (optional)

  • Company Represented
    Jisc

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Try upgrading to v10.6 and see if that makes things work or not, take a backup so you can revert if needed. Running setup.aspx again can see if there's some configuration issue, so might be worth resetting the password
  2. HAP+ should not be installed on a domain controller, it should be on a member server The UPN should be the full domain name (NOT a FQDN of a DC) Use v10.5 for forms based logins Use v10.6 + Azure AD App Proxy for SSO constrained Kerberos delegation (this is the recommended configuration) If you move HAP+ to a new server, or the server name changes the encryption of the password will break, disable authentication on setup.aspx and re-enter the admin password and save (re apply the authentication on setup.aspx) Consider moving from on premise file storage to using OneDrive/SharePoint (this was the main reason I stopped working on HAP+)
  3. Ok, that's odd then, the system should use the UPN to find the domain controllers, is there any DNS issues on the server?
  4. App_Data/hapconfig.xml
  5. can you check the hapconfig.xml file and see what's set in there
  6. If you can install it via the documents available on the github site then yes this would be perfect. It's not in active development and apart from this forum there was never support
  7. You are right, requires p1 or a3. https://docs.microsoft.com/en-us/azure/active-directory/authentication/concept-sspr-writeback
  8. Pay? It's free, same with AppProxy.
  9. If you are getting that alert it's not coming from HAP+ as far as I can see. If you want to password resettings/changing/expiring, I would strongly recommend setting HAP+ up behind AzureAD AppProxy SSO and use AzureAD for that. It is coded to look for expired passwords, but not expiring passwords
  10. Is it giving any errors?
  11. $('input[type=text]').keyup(function (e) { if (e.keyCode == 13) { $("#<%=username.ClientID%>").val($.trim($("#<%=username.ClientID%>").val())); location.href = $("#<%=login.ClientID %>").attr("href"); } else if (e.keyCode == 220 || e.keyCode == 222) { alert("Please enter just your username"); $(this).val($(this).val().substr(0, $(this).val().length - 1)); } }); $('input[type=password]').keyup(function (e) { if (e.keyCode == 13) { $("#<%=username.ClientID%>").val($.trim($("#<%=username.ClientID%>").val())); location.href = $("#<%=login.ClientID %>").attr("href"); } });
  12. Search for the original and replace Should be near a download warning
  13. I can't test anymore as I don't work in a place that uses HAP+ anymore.
×
×
  • Create New...