Jump to content

nickbro

Members
  • Posts

    4,190
  • Joined

  • Last visited

Everything posted by nickbro

  1. Add it in to the web.config file near the other
  2. Browse to /images/haplogo.png, it should give a little pointer to what's going wrong
  3. MyFiles is an unrestricted section, it'll restrict on the mapping definitions. To stop a specific user group from seeing MyFiles, open ~/myfiles/web.config and edit it like ~/bookingsystem/web.config
  4. Hmm I don't know, can you restart the server it's on? It's something to do with some of the HAP+ stuff not being loaded into cache
  5. Should be
  6. Restart IIS
  7. It's how exchange works, it will attempt to load as much data as it can into RAM to avoid HDD IO calls, even with an SSD RAM is quicker
  8. I don't directly support using TMG with HAP+ for auth as it can cause issues like this
  9. Is that an AD Group or an AD Org Unit?
  10. The system is now set to ban specific IP addresses if it detect abuse of the login box to try and get in. You can release the bans by recycling the HAP application pool
  11. RDP, BBC News Mobile, Engadget, Weather, Met Office, Skype, Lync, Nokia Apps, Flashlight XT, Grapher Calculator, Paypal, Translator
  12. That's what ADFS is for. It'll redirect the user to one of your servers over https to authenticate and then send them back, your server will send a token saying, yes or no
  13. SSO isn't supported in HAP+ as some of the components in HAP+ don't seem to work correctly when using Windows passthrough auth
  14. Move your contacts to outlook.com/office 365/even gmail, they then sync with you on which ever phone you use utilizing EAS, iCloud is apple only. Welcome to the dark side (lumia 920 and previous HD7 user)
  15. You will need to look at each release from v8 and look at the release notes
  16. hapConfig.xml make sure multilessonto="None"
  17. @imkzru Documentation link is on the documentation page of the HAP+ site: https://hap.codeplex.com/documentation or in the root folder of the HAP+ install
  18. Ok, you may need to turn off the multi-lesson booking mode on that resource
  19. See: http://www.edugeek.net/forums/home-access-plus/86907-mime-error.html http://www.edugeek.net/forums/home-access-plus/105529-images-not-showing-red-x.html http://www.edugeek.net/forums/home-access-plus/105321-fresh-install-home-access-plus-8-4-a.html http://www.edugeek.net/forums/home-access-plus/97572-no-image-css.html etc......
  20. Sorry, this is the correct code: try { if (curres.MultiRoom) { $("#bfmultilesson").show(); $("#bfmultiroom option").remove(); var l1 = false; var l2 = ""; var l3 = 0; for (var i = 0; i < curres.Data.length; i++) { if (!l1) l1 = (curres.Data[i].Lesson == lesson); if (l1) { l3++; if ( (curres.MaxLessons > 0 && l3 > curres.MaxLessons) || (l3 > availbookings[0] && availbookings[0] > 0 ) || curres.Data[i].Name != "FREE") { break; } $("#bfmultiroom").append('' + l3 + ' Lesson' + (l3 == 1 ? '' : 's') + ''); l2 += curres.Data[i].Lesson + ','; } } if (l2 == "") { canmulti = false; $("#bfmultilesson").hide(); } canmulti = true; } else { $("#bfmultilesson").hide(); canmulti = false; } } catch (e) { $("#bfmultilesson").hide(); canmulti = false; }
  21. Odd, can't see any difference there, here is some corrected code: try { if (curres.MultiRoom) { $("#bfmultilesson").show(); $("#bfmultiroom option").remove(); var l1 = false; var l2 = ""; var l3 = 0; var i = 0; for (i = 0; i < curres.Data.length; i++) { if (!l1) l1 = (curres.Data[i].Lesson == lesson); if (l1) { l3++; if ( (curres.MaxLessons > 0 && l3 > curres.MaxLessons) || (l3 > availbookings[0] && availbookings[0] > 0 ) || curres.Data[i].Name != "FREE") { break; } $("#bfmultiroom").append('' + l3 + ' Lesson' + (l3 == 1 ? '' : 's') + ''); l2 += curres.Data[i].Lesson + ','; } } if (i == 0) { canmulti = false; $("#bfmultilesson").hide(); } canmulti = true; } else { $("#bfmultilesson").hide(); canmulti = false; } } catch (e) { $("#bfmultilesson").hide(); canmulti = false; }
  22. Try this to fix it: ~/bookingsystem/default.aspx: line 342 should read } catch (e) { } change it to: } catch (e) { $("#bfmultilesson").hide(); canmulti = false; }
  23. Hmm I think I know why that does that, it's because the lesson you are overriding isn't free
  24. ~/app_data/staticbookings.xml and ~/app_data/bookings.xml
  25. There's a static or booking made with a user that doesn't exist any more
×
×
  • Create New...