Jump to content

nickbro

Members
  • Posts

    4,190
  • Joined

  • Last visited

Everything posted by nickbro

  1. Example of what it will create[ATTACH=CONFIG]19759[/ATTACH]
  2. 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)
  3. 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
  4. 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
  5. On the above picture, in IIS click on the 2nd Edit button (the one in the wildcards section)
  6. OK, can I have a screenshot of the edit form for the wildcard
  7. 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
  8. Are you using https?
  9. 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
  10. It's not loading jquery correctly, by the looks of things. Can you try another browser (chrome/firefox)
  11. Which browser are you using? It looks like the CSS isn't getting loaded. Can you check /hap/style/setup.css is loading
  12. Open ~/web.config in notepad and remove the svg line (it will have a comment above it saying it may need to be removed)
  13. I will have to look into this issue. HAP+ isn't meant to display the admin password on the config screen (security)
  14. 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
  15. 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.
  16. You can use the v9.2 HAP.AD dll if needed. LDAP signing can help secure your AD. But it's optional.
  17. You can try the HAP.AD dll from the v9.2 release if needed
  18. Have you configured AD to allow encrypted data: How to enable LDAP signing in Windows Server 2008
  19. Ok, bug found in HAP.AD, fixed, v9.3 re-released: https://hap.codeplex.com/releases/view/109831
  20. Try restarting the server, also check, v9.3 is out as well
  21. You may want to directly edit the hapConfig.xml file
  22. 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
  23. 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
  24. IE9 doesn't support drag and drop either, only came in IE10
  25. 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
×
×
  • Create New...