-
Posts
4,190 -
Joined
-
Last visited
Content Type
Forums
News
20th
EduGeek EDIT Conference
Blogs
Everything posted by nickbro
-
I don't know, I don't use office 365, we're an exchange school
-
Ok, must be an issue with admin rights, can you check you have the correct role assigned to you on office 365
-
Enable SSL in the options
-
Done, will be in the final release. The system will check to see if the user's password has expired, account is disabled or locked out before attempting to logon The strings will be in the strings.xml file so you can customize them
-
most of that is from the v10 upgrade. Just enter an email into the firstlineemails attribute
-
Check the firstline emails attribute in hapConfig You may need to also check that the user your are logging on as has the mail attribute filled out
-
If it's a Ricoh MFP you can use the Ricoh app in the app store, it even allows you to put a user code in
-
That teaches me for not testing the new minification code, switched to using a Microsoft dll. Updated the release, HAP.Web.dll and HAP.Web.Controls.dll are all that needs updating, and the new AJAXMini.dll
-
Been there since v9.7, set just one quantity on the resource and enable canShare
-
wpad.dat and Windows Phone 8
nickbro replied to themightymrp's topic in Internet Related/Filtering/Firewall
I don't think Windows Phone works properly with pac files. unless it's proxy:port; without the direct bit at the end -
If you need it to map the S:\ first to run sims, I've published the app we use here which maps the s:\ and then runs pulsar.exe SIMS.net Remote - nb development
-
Can you remove the space between MOH and Staff, as it uses Server 2000 naming
-
ok, can I see a copy of the web.config from the bookingsystem folder please?
-
Ok. that sounds like a AD issue with the role provider, can you have a look at ~/bookingsystem/web.config and check they are AD groups, not AD OUs
-
ah, in that case, hmm. Can you try setting the resource to showto="All". I want to try and figure out if it's a HAP+ ad issue or a resource issue
-
v10 or v9? if v10, please try the attached dllbin.zip
-
ah, good to hear, sounds like it hadn't updated it's reverse dns listing
-
ok, hmm, wonder why it works ok for us. Do the ipads get a dhcp address which is in your domain? I think by default our DHCP uses .local, but domain joined are .internal
-
ok, make sure reverse DNS is working correctly.
-
Have you enabled kerberos authentication
-
Show to enables the user to see the ticket, make aware sends an email to that user about the ticket. Make aware adds the user to show to, but it is mainly used to email that user
-
Depends how you've set the application pool up. It's either everyone or IIS AppPool\Apppoolname. Give it write access to the folder you need
-
Code project to the rescue: Download File Using C# - CodeProject private void buttonDownloadFile_Click(object sender, EventArgs e) { string url = @"http://www.thereforesystems.com/wp-content/uploads/2008/08/image35.png"; // Create an instance of WebClient WebClient client = new WebClient(); // Hookup DownloadFileCompleted Event client.DownloadFileCompleted += new AsyncCompletedEventHandler(client_DownloadFileCompleted); // Start the download and copy the file to c:\temp client.DownloadFileAsync(new Uri(url), @"c:\temp\image35.png"); } void client_DownloadFileCompleted(object sender, AsyncCompletedEventArgs e) { MessageBox.Show("File downloaded"); } Use ASYNC
-
1> Can't replicate that one, it always gets cleared for me 2> That's by design, so you can notify users depending on what you want to do 3> Fixed in latest help desk release
-
I believe @Minimo has attempted to fix this in the latest release.
