| bio | website | blogs.visigo.com/chriscoulson |
|---|---|---|
| location | Mississauga, Canada | |
| age | ||
| visits | member for | 2 years |
| seen | Jun 15 at 13:46 | |
| stats | profile views | 13 |
I am a consultant specializing in SQL Server, .NET and Sharepoint development. I have been designing and developing solutions on the Microsoft stack for the last 12 years. Please contact me at Visigo Software Consulting if you would like to engage my services.
|
May 28 |
comment |
Migrating FBA from SP2010 to 2013 Just a comment on using the password format of 'Encrypted' - I generally recommend people use a password format of 'hashed'. The reason being that: encrypted passwords can be decrypted, while hashed passwords cannot (making them more secure). Also, for encrypted passwords, the same key is needed everywhere they are used, making it more troublesome to setup. |
|
May 26 |
answered | Migrating FBA from SP2010 to 2013 |
|
May 22 |
answered | How to set default login with windows prompt for all intranet users? |
|
Apr 15 |
answered | Forms Authentication - Users not read in central admin and access denied |
|
Apr 3 |
answered | Give anonymous users access to only one page on SharePoint Site |
|
Mar 8 |
answered | MembershipRequestWebPart Registration Error |
|
Jan 22 |
comment |
Failed to Initialize the encryption algorithm Why not just use Hashed? It's more secure than Encrypted. The only reason I can think of to use encrypted is if you have to retrieve the user's actual password - which IMHO is a bad idea. |
|
Jan 21 |
answered | SharePoint 2013 External Users |
|
Jan 16 |
answered | FBA login failed if passwordFormat=“Encrypted” in web.config files |
|
Jan 4 |
awarded | Yearling |
|
Oct 19 |
answered | Password Recovery webpart in CKS FBA is ignoring the configured email template |
|
Oct 17 |
answered | Forgot password in sharepoint with activedirectory membership? |
|
Oct 3 |
comment |
FBA web app user permissions replicate to full control even after login For SharePoint 2010 it's not set in the web.config - if you want a custom login page you specify it in Central Admin -> Manage Web Applications -> Authentication Providers. Anonymous custom application pages need to inherit from UnsecuredLayoutsPageBase to have anonymous access. |
|
Jul 5 |
comment |
HTTPS Login page not showing browser prompt to remember password Powershell commands to change expiry (from jasear.wordpress.com/2011/01/10/…) $sts = Get-SPSecurityTokenServiceConfig $sts.ServiceTokenLifetime = (New-TimeSpan -Days 365) $sts.FormsTokenLifetime = (New-TimeSpan -Days 365) $sts.LogonTokenCacheExpirationWindow = (New-TimeSpan –seconds 1) $sts.UseSessionCookies = $false $sts.Update() |
|
Jul 5 |
comment |
HTTPS Login page not showing browser prompt to remember password The 'Sign me in automatically' doesn't actually tell the browser to save the password - it tells the browser to keep the authentication cookie after the browser has been closed. By default the cookie is saved only for the session - which is why you're prompted for your username/password if you close/reopen your browser. By checking the box, you should be logged in automatically if you close/reopen your browser. Note that even when sign me in is checked there is an expiry on that cookie and it's short by default. This expiry can be changed via PowerShell though. |
|
Jul 3 |
answered | HTTPS Login page not showing browser prompt to remember password |
|
Jun 16 |
awarded | Supporter |
|
Jun 16 |
answered | Remove extra sign-in step after enabling Forms Based Authentication |
|
Jun 7 |
comment |
Creating a custom authentication provider for SharePoint 2010 I didn't run into these strange behaviours. As for deployment, I just deployed the membership provider to the GAC and implemented like you would a sqlmembershipprovider: donalconlon.wordpress.com/2010/02/23/… |
|
Jun 1 |
answered | FBA Custom Login Mixed - Access Denied Loops Back to Login Page |