FAQ - How do I enable anonymous access ?
- Enable anonymous access for a web application from the Central Admin.
Central Admin Home Page > Application Management > Authentication Providers > select the Membership Provider (authentication.aspx) and enable anonymous access from the next page.
You don't have to do anything on the IIS Manager ... enabling it from the Central Admin page will also enable it on IIS.
- Explicitly turn it on for the sites you want to be accessed anonymously.
Browse to the site, click Site Settings > Advanced Permissions > Settings >Anonymous Access (setanon.aspx) and turn on anonymous access for the site.
Update - check Yuval's
SharePoint Server 2007 anonymous access HowTo:
25 Comments:
I could really do with an idiots step by step guide for getting forms authentication working now! :-)
Nick
i took the liberty to extend the guide and created a HowTo guide for enabling anonymous access at a sharepoint 2007 site.
Maybe all of you already know this... I just discovered. when you use Sharepoint designer for a Site that uses forms authetication it won't work . To make it work... Logon to your site an det the "remeber .." checkbox... The sahrepoint designer then work with the cookie to authenticate to the Site.
Have Fun!
Patrick Imboden
1) In step 6 of the config wizard it gave an error saying that it couldn't find the web.config file. This was odd because the directory that it was referencing was there, ut the config was not. So I just created a blank web.config file, re-ran the wizard and it made it through.
2) It made me uninstalled .Net 3 Framework CTP and installing the final version BEFORE installing WSS 3.0
Anyway, thanks again this was useful.
Rob Wuhrman, PMP
Have to configure Windows SharePoint Services to use NTLM authentication
1. Determine the virtual server ID for the SharePoint Central Administration and SharePoint content virtual servers.
a. On the IIS server, click Start, point to All Programs, point to Administrative Tools, and then click Internet Information Services (IIS) Manager.
b. Locate the virtual server you need to find the ID for, right-click it, and then click Properties.
c. On the Web Site tab, , next to the Active Log Format box, click Properties.
d. Next to Log file name, you can see a path and file name, such as W3SVCxx\exyymmdd.log. The number replacing the xx after W3SVC is the virtual server ID.
2. On the IIS server, click Start, and then click Run. In the Open box, type cmd, and then click Open.
3. Change to the Inetpub\Adminscripts folder, by typing the following line, where Drive is the drive where Windows is installed:
cd Drive:\inetpub\adminscripts
4. To see the currently-configured authentication, type the following line, and then press ENTER, where xx is the virtual server ID number:
cscript adsutil.vbs get w3svc/xx/NTAuthenticationProviders
Note: The virtual server ID of the Default Web site in IIS is 1.
If the virtual server is configured for NTLM it will return the following value:
NTAuthenticationProviders : (STRING) "NTLM"
If the virtual server is configured for Kerberos it will return one of the following two statements:
NTAuthenticationProviders : (STRING) " Negotiate,NTLM"
The parameter "NTAuthenticationProviders" is not set at this node.
5. To enable NTLM on the virtual server, type the following line, and then press ENTER, where xx is the virtual server ID number:
cscript adsutil.vbs set w3svc/xx/NTAuthenticationProviders "NTLM"
Note: The virtual server ID of the Default Web site in IIS is 1.
6. Restart IIS.
a. Click Start, and then click Run. In the Open box, type cmd, and then click OK.
b. At the command prompt, type iisreset, and then press ENTER
c. Type exit, and then press ENTER to exit Command Prompt.
For more go to
read:-http://sps.uniqueworld.net/Sydney/Document%20Library/1/WSS%20SP2%20in%20R2%20Walkthrough.doc
Lets say I`m using default.master I copy this and then rename it to Defaut2.master. I then set the Default2.master as the default. Test access and voila I`m propted to logon to an anonomous enabled site. If I rest the site back to use Default.master I`m no longer propmted and have anonomus access.
Any ideas and to the cause or resolution ??
http://www.yuvalararat.com/sharepoint-server-2007-anonymous-access-howto
Post a comment