-
Posts
4,190 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by nickbro
-
Add it in to the web.config file near the other
-
Browse to /images/haplogo.png, it should give a little pointer to what's going wrong
-
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
-
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
-
Restart IIS
-
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
-
I don't directly support using TMG with HAP+ for auth as it can cause issues like this
-
Is that an AD Group or an AD Org Unit?
-
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
-
Apps on your Windows Phone
nickbro replied to CAM's topic in Windows Phone Owners Club's Windows Phone Owners Club Topics
RDP, BBC News Mobile, Engadget, Weather, Met Office, Skype, Lync, Nokia Apps, Flashlight XT, Grapher Calculator, Paypal, Translator -
SSO isn't supported in HAP+ as some of the components in HAP+ don't seem to work correctly when using Windows passthrough auth
-
[windows phone 7] iPhone to Lumia.. Transfering contacts
nickbro replied to fairm010's topic in Mobile Devices & Tablets
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) -
You will need to look at each release from v8 and look at the release notes
-
hapConfig.xml make sure multilessonto="None"
-
@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
-
Ok, you may need to turn off the multi-lesson booking mode on that resource
-
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......
-
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; }
-
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; }
-
Try this to fix it: ~/bookingsystem/default.aspx: line 342 should read } catch (e) { } change it to: } catch (e) { $("#bfmultilesson").hide(); canmulti = false; }
-
Hmm I think I know why that does that, it's because the lesson you are overriding isn't free
-
~/app_data/staticbookings.xml and ~/app_data/bookings.xml
-
There's a static or booking made with a user that doesn't exist any more
