-
Posts
4,190 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by nickbro
-
Example of what it will create[ATTACH=CONFIG]19759[/ATTACH]
-
Yep, using Exchange Web Services. It should in theory work with Office 365 as well. Yep, it will remove existing, see the notes at the bottom of SIMS.net to Exchange - nb development (just wrote about that)
-
Want to export your timetable to Exchange Calendar Appointments, for all of the staff, for the whole year? I got bored yesterday and made this: http://twitter.com/techienickb/status/360373788128460801. More info and download: SIMS.net to Exchange - nb development
-
Ok, that looks all ok, I just don't know why it isn't working correctly. It should be working. IIS6 is a PITA sometimes, I'll have to look into this
-
On the above picture, in IIS click on the 2nd Edit button (the one in the wildcards section)
-
OK, can I have a screenshot of the edit form for the wildcard
-
ok, looks like IIS isn't configured correctly. Check that the wild card MIME Map is in. Can you take a screen shot of the IIS extension maps (from the posted steps above) - 38
-
If you're talking about the picture above, that isn't right. If it is showing the tabs now, then it won't let you click on them until the checks are correct. Go to /hap/api/test, then go to /hap/api/setup, then to /hap/api/setup/help Let me know the results
-
It's not loading jquery correctly, by the looks of things. Can you try another browser (chrome/firefox)
-
Which browser are you using? It looks like the CSS isn't getting loaded. Can you check /hap/style/setup.css is loading
-
Open ~/web.config in notepad and remove the svg line (it will have a comment above it saying it may need to be removed)
-
I will have to look into this issue. HAP+ isn't meant to display the admin password on the config screen (security)
-
That isn't doable out of the box, you will need a page with links that limit the booking system view. A link on a page to /hap/bookingsystem/t-Laptops will just show resources of type Laptops. So you could on the homepage, add links to: Book a Laptop Trolley: /hap/bookingsystem/t-Laptops, Book an ICT Room: /hap/bookingsystem/t-Room, Book some equipment: /hap/bookingsystem/t-Equipment
-
It's an advanced feature, only available by adding stuff to the hapConfig.xml file On the resource you want, add allowance="-15". Change the -15 to -60 (60 minutes before the lesson) or what ever number you want. A positive number is into the lesson.
-
You can use the v9.2 HAP.AD dll if needed. LDAP signing can help secure your AD. But it's optional.
-
You can try the HAP.AD dll from the v9.2 release if needed
-
Have you configured AD to allow encrypted data: How to enable LDAP signing in Windows Server 2008
-
Ok, bug found in HAP.AD, fixed, v9.3 re-released: https://hap.codeplex.com/releases/view/109831
-
Try restarting the server, also check, v9.3 is out as well
-
[HAP+ v9.0] Access control on MyFiles mapped drives
nickbro replied to FishCustard's topic in Home Access Plus+
You may want to directly edit the hapConfig.xml file -
Home drives via Web Server (Very laggy to access)
nickbro replied to Dan_ATR's topic in Home Access Plus+
HAP+ v8+ needs IIS7.5 to work best. You may need to turn off Quota information and see if it loads a bit quicker, edit hapConfig.xml and set the quota to None -
Can you follow the steps in http://www.edugeek.net/forums/home-access-plus/118903-hap-v9-2-various-ajax-glitches-myfiles-2.html#post1026110, re-apply v9.2 just to be on the safe side
-
[HAP+ v9.2] Various AJAX glitches with MyFiles
nickbro replied to FishCustard's topic in Home Access Plus+
IE9 doesn't support drag and drop either, only came in IE10 -
[HAP+ v9.2] Various AJAX glitches with MyFiles
nickbro replied to FishCustard's topic in Home Access Plus+
Very odd, it shouldn't of made any difference. Can you try this code this.Start = function() { this.FileName = ($("#uploadfilesrandom").is(":checked") ? this.FormatFileName() : this.File.name) + ""; if (this.File.name.indexOf('.') == -1) { alert(hap.common.getLocal("myfiles/upload/folderwarning").replace(/\%/g, this.FileName)); uploads.pop(this); return false; } else if ("<%=AcceptedExtensions %>".toLowerCase().indexOf(this.FileName.substr(this.FileName.lastIndexOf('.')).toLowerCase()) == -1 && "<%=DropZoneAccepted %>" != "") { alert(this.File.name + " " + hap.common.getLocal("myfiles/upload/filetypewarning") + "\n\n <%=AcceptedExtensions %>"); uploads.pop(this); return false; } if(this.File.size > <%=maxRequestLength%>) { alert(this.File.name + " " + hap.common.getLocal("myfiles/upload/filesizewarning")); uploads.pop(this); return false; } $("#progresses").append(' ' + this.FileName + ''); $("#upload-" + this.FileName.replace(/[\\'\. \[\]\(\)\-]/g, "_") + " .progressbar").progressbar({ value: 0 }); console.log(hap.common.formatJSONUrl('~/api/MyFiles/Exists/' + this.Path.replace(/\\/gi, "/").replace(/\.\.\/Download\//gi, "") + '/' + this.FileName)); $.ajax({ type: 'GET', url: hap.common.formatJSONUrl('~/api/MyFiles/Exists/' + this.Path.replace(/\\/gi, "/").replace(/\.\.\/Download\//gi, "") + '/' + this.FileName), dataType: 'json', context: this, contentType: 'application/json', success: function (data) { if (data.Name == null || confirm(hap.common.getLocal("myfiles/upload/fileexists1") + " " + this.FileName + " " + hap.common.getLocal("myfiles/upload/fileexists2"))) this.ContinueUpload(this.FileName); else { $("#upload-" + this.FileName.replace(/[\\'\. \[\]\(\)\-]/g, "_")).remove(); if (uploads.length == 1) $("#uploadprogress").slideUp('slow'); uploads.pop(this); } }, error: hap.common.jsonError }); return true; }; The other code won't work unless you open the developer tools in the browser. Safari doesn't support drag and drop upload
