Jump to content

nickbro

Members
  • Posts

    4,190
  • Joined

  • Last visited

Everything posted by nickbro

  1. You need to program the lessons and resources in the HAP Config system, setting lesson times, etc. You will then go to the Booking System CP and set the term dates. You can inspect staticbookings.xml and see what's appearing
  2. Ok, hmm, that should be enabled for the display page but disabled else were, good that you've fixed it though
  3. The only thing I can think of is because it's a forest. I've never tested it in these conditions. Does students work?
  4. Edit the master page, look for , change it to IE=9
  5. Thanks for the heads up, updated it now, although the changes didn't effect the dll
  6. Here's the code to clear logons, you can schedule it with Windows Task Scheduler 1. Save this as clearlogons.sql (c:\) USE [hap] GO UPDATE [dbo].[TrackerEvents] SET [LogoffDateTime] = GETDATE() WHERE [dbo].TrackerEvents.LogoffDateTime is null GO 2. Add a scheduled task to run as a user with rights to the database (or use a logon id) 3. This is the command to run: (use osql -? to find out what you can change) osql -E -i c:\clearlogons.sql
  7. Here's the SQL Scripts, sorry for the delay: USE [hap] GO DELETE FROM [dbo].[TrackerEvents] WHERE [dbo].TrackerEvents.LogonDateTime <= '1/1/12' GO and to just clear any empty logoffs UPDATE [dbo].[TrackerEvents] SET [LogoffDateTime] = GETDATE() WHERE [dbo].TrackerEvents.LogonDateTime <= '1/1/12' AND [dbo].TrackerEvents.LogoffDateTime is null GO
  8. Issue found, add this to your web.config: Will be fixed in the next release of HAP.Web and HAP.Win (v1.2 for 8.1 is going through certification atm)
  9. 60 second timeout will be introduced in the next release
  10. Check AD that everyone has a account name and a UPN name
  11. This is my hapConfig.xml homepage section
  12. I'll look into these for you. With the app hanging, click on it and pressing ALT+F4 tricks it into finishing.
  13. Can't wait to play on BF4 (PC) when I get home, the beta was pretty good. I think it's 24gb because EA ship both the x86 and x64 versions?!?!
  14. Good to hear. Yep it's the server that serves up the HTML and JavaScript.
  15. Server side
  16. See IE10 and IE11 and Windows 8.1 and __doPostBack - Scott Hanselman, it's an ASP.net issue, NOT HAP+. •An update is available for the .NET Framework 4 on Windows XP, Windows Server 2003, Windows Vista, Windows Server 2008, Windows 7, and Windows Server 2008 R2: October 2013 - NDP 4 - Win7SP1/Win2K3SP2/Win2K8R2SP1/Win2K8SP2/VistaSP2/WinXPSP3 •An update is available for the .NET Framework 3.5 SP1 on Windows XP, Windows Server 2003, Windows Vista, and Windows Server 2008: June 2013 - NDP 3.5 SP1 - Win2K3SP2/Win2K8SP2/VistaSP2/WinXPSP3 •An update is available for the .NET Framework 2.0 SP2 on Windows XP and Windows Server 2003: September 2013 - NDP 2.0 SP2 - Win2K3SP2/WinXPSP3 •An update is available for the .NET Framework 3.5.1 on Windows 7 SP1 and Windows Server 2008 R2 SP1: June 2013 - NDP 3.5 SP1 - Win7SP1/Win2K8R2SP1 •An update is available for the .NET Framework 3.5.1 on Windows 7 SP1 and Windows Server 2008 R2 SP1: September 2013 - NDP 2.0 SP2 - Win7SP1/Win2K8R2SP1 •An update is available for the .NET Framework 2.0 SP2 on Windows Server 2008 SP2: September 2013 - NDP 2.0 SP2 - Win2K8SP2/VistaSP2 •An update is available for the .NET Framework 3.5 on Windows 8 and Windows Server 2012: September 2013 - NDP 2.0 SP2 - Win8RTM/WinRTRTM/Win2K12RTM javascript - doPostback failing in IE 11+ Windows 8.1 - Stack Overflow
  17. That's a ASP.net issue, you need this hotfix: A hotfix is available for the ASP.NET browser definition files in the Microsoft .NET Framework 4.0
  18. It's by design, it stops users from Opening the files, they need to download the files (and there are more alerts telling them to save the file if they want to edit them). I've made HTML viewers for PDF/TXT/DOCX/XLS/Picture documents which is what the Open option does.
  19. Yep, you may struggle with it because of hap controlling that part, but you can always download the source and edit that.
  20. There's some API References on codeplex: Home Access Plus+ - Documentation Basically you'd just need to make new .aspx pages, most of which will have javascript/jquery
  21. I just upgraded one of DC's and it seem to work ok with the over the top upgrade, just remember to do adprep first. Just upgraded to 2012 R2 because of the Windows 8.1. GPO objects, plus it was quite easy. Had to upgrade System Center to 2012 R2 too, which I'm rolling out to the site servers at our primaries at the moment. Server 2012 R2 will be rolled out after that upgrade has finished to help support Windows 8.1. The DC hosted at the high school for the cluster network (currently just runs the primaries) is a virtual server in hyper-v on a 2008 R2 CC4 server
  22. What's the 2000 name of the group, it may need that
  23. Can you go into IIS manager, go into the Website, into the HAP folder, under IIS authentication, go into the properties of the Anon User, and check it's using Application Pool Identity
  24. HAP+ works best on IIS 7+, Windows Server 2008 R2 is the version I use and code against. Does your HAP+ install's external access go through a reverse proxy?
  25. Can you post a screenshot of what you are entering to get that error
×
×
  • Create New...