Jump to content

nickbro

Members
  • Posts

    4,190
  • Joined

  • Last visited

Everything posted by nickbro

  1. It's all in the filters who can use it
  2. The all files was only there for domain admins, it shouldn't work for anyone else
  3. it already should, look at the filter list
  4. Ok, that's an odd error message. Looks like the logon tracker is having issues on the client side. Make sure you run the exe with parameters not raw
  5. Thanks for the spot, I must of missed creating one of the new live tile handlers after ~/scripts/hap.web.js.js line 204 add hap.livetiles.RegisterTileHandler("myfiles", function (type, initdata, size) { this.id = (initdata.Group + initdata.Name).replace(/[\s'\/\\\&\.\,\*]*/gi, ""); this.html = '' + initdata.Name + ''; $("#" + initdata.Group).append(this.html); $.ajax({ url: hap.common.formatJSONUrl("~/api/myfiles/drives"), type: 'GET', context: this.id, dataType: "json", contentType: 'application/JSON', success: function (data) { var s = ""; for (var i = 0; i < (data.length > 3 ? 3 : data.length) ; i++) s += "" + data[i].Name + "" + (data[i].Space == -1 ? " " : ' ' + data[i].Space + '%'); $("#" + this + " span label").html(s); setInterval("$('#" + this + " > span > i').animate({ height: 'toggle' });", 6000); }, error: hap.common.jsonError }); });
  6. It really does sound like the services aren't getting activated correctly
  7. The group should be an AD Group, not an OU.
  8. hmm, that's odd, can you do some http://www.edugeek.net/forums/home-access-plus/86059-hap-json-debugging.html
  9. Ok scratch that, it wont work in a cluster. In that case you would use a different SQL Connection string Server=myServerAddress;Database=myDataBase;User Id=myUsername;Password=myPassword; Create a SQL User in the cluster for HAP and tell HAP to use it
  10. A VM would work. If your servers are 2012 I think you can install Hyper-V
  11. I suppose you can always set up another instance of HAP+ for the other domain
  12. None unfortunately, it's how HAP+ ensures security on your network. It's best to use a member server, usually it's a Terminal/Remote Desktop Server
  13. Hi all, just a quick poll to find out how many users would like Multi-Domain support from HAP+?
  14. thanks, screenshots would be good
  15. ok, that's odd. It works fine for me, after clearing my cache.
  16. You need to make sure the AD mail parameter is filled in. HAP+ uses AD a lot.
  17. Hmm, it should work, hidefrom goes first in the code, then the show to private bool isVisible(string showto, string hidefrom) { if (showto == "All" || isBSAdmin || User.IsInRole("Domain Admins")) return true; foreach (string s in hidefrom.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries)) if (ADUser.UserName.ToLower().Equals(s.ToLower().Trim())) return false; else if (User.IsInRole(s.Trim())) return false; foreach (string s in showto.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries)) if (ADUser.UserName.ToLower().Equals(s.ToLower().Trim())) return true; else if (User.IsInRole(s.Trim())) return true; return false; }
  18. That error is usually because you have hit save before some of the core information is put into HAP+'s setup page. You don't need to put the OU bits in straight away. Double check your FQDN is correct
  19. can you try going to /hap/api/mypic, it may be getting cached
  20. it's in the hapconfig.xml
  21. Make sure the studentPhotoHandler is set to nothing though
  22. Ok, that looks all of, odd that it's not working. Can you paste the file name and path here so I can examine it, see if there's any special characters it does't like
  23. Ok, just released the update for this: v8.5.1211.1240 is out on the v8.5 release. Ok, it should be on codeplex, it's attached if needed as it looks like codeplex is down atm
  24. You should be able to edit the login.aspx page and add it in yourself
  25. Ok, I'll make a change to HAP+ to use the thumbnailPhoto instead
×
×
  • Create New...