-
Posts
4,190 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by nickbro
-
It's all in the filters who can use it
-
The all files was only there for domain admins, it shouldn't work for anyone else
-
it already should, look at the filter list
-
SQL Offload to other machine and permissions
nickbro replied to TheScarfedOne's topic in Home Access Plus+
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 -
Home page 'My Files' missing disk space indicators since 8.5
nickbro replied to mobybrick's topic in Home Access Plus+
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 }); }); -
It really does sound like the services aren't getting activated correctly
-
The group should be an AD Group, not an OU.
-
Home page 'My Files' missing disk space indicators since 8.5
nickbro replied to mobybrick's topic in Home Access Plus+
hmm, that's odd, can you do some http://www.edugeek.net/forums/home-access-plus/86059-hap-json-debugging.html -
SQL Offload to other machine and permissions
nickbro replied to TheScarfedOne's topic in Home Access Plus+
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 -
A VM would work. If your servers are 2012 I think you can install Hyper-V
-
I suppose you can always set up another instance of HAP+ for the other domain
-
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
-
Hi all, just a quick poll to find out how many users would like Multi-Domain support from HAP+?
-
thanks, screenshots would be good
-
ok, that's odd. It works fine for me, after clearing my cache.
-
You need to make sure the AD mail parameter is filled in. HAP+ uses AD a lot.
-
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; }
-
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
-
can you try going to /hap/api/mypic, it may be getting cached
-
it's in the hapconfig.xml
-
Make sure the studentPhotoHandler is set to nothing though
-
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
-
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
-
You should be able to edit the login.aspx page and add it in yourself
-
Ok, I'll make a change to HAP+ to use the thumbnailPhoto instead
