When i go to a page on my server that is php it asks me for authentication.

but none of the windows passwords work.

how do i get this off so that people can get to the web page?

Re: PHP5 and IIS6 by Chris

Chris
Wed Apr 05 13:03:01 CDT 2006

Make sure that the IUSR_ account has read access to the files...

--

Cheers

Chris Crowe [IIS MVP 1997 -> 2006]
http://blog.crowe.co.nz
------------------------------------------------


"todd" <todd@discussions.microsoft.com> wrote in message
news:9E68CAD4-9B93-4AA8-B778-BF3B8460D9E7@microsoft.com...
> When i go to a page on my server that is php it asks me for
> authentication.
>
> but none of the windows passwords work.
>
> how do i get this off so that people can get to the web page?



Re: PHP5 and IIS6 by David

David
Wed Apr 05 16:21:02 CDT 2006

By default, that does not happen. So, you have made non-default
configuration changes but do not know which one is causing this. Thus, you
need to troubleshoot it to figure it out (or if you know what was changed,
that is also useful)

Report the IIS log entries for your requests that cause the password dialog
to pop up.
http://blogs.msdn.com/david.wang/archive/2005/12/31/HOWTO_Basics_of_IIS6_Troubleshooting.aspx

If the errors are 401, try:
http://blogs.msdn.com/david.wang/archive/2005/07/14/HOWTO_Diagnose_IIS_401_Access_Denied.aspx

Read the following blog entries to understand how:
1. authentication, including anonymous, works
http://blogs.msdn.com/david.wang/archive/2005/05/27/Access_Denied_to_Administrators_or_Anonymous_User.aspx
2. IIS uses user identity to execute requests
http://blogs.msdn.com/david.wang/archive/2005/06/29/IIS_User_Identity_to_Run_Code_Part_2.aspx
3. some browsers choose to auto-login:
http://blogs.msdn.com/david.wang/archive/2005/07/04/Why_you_get_login_prompt_on_VS2005_with_Integrated_Auth.aspx


Right now, it sounds like you have anonymous authentication enabled, but the
anonymous user cannot logon, either because of wrong password, group policy
denying logon, etc. The 401 Diagnosis blog entry should give you clues.

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//

"todd" <todd@discussions.microsoft.com> wrote in message
news:9E68CAD4-9B93-4AA8-B778-BF3B8460D9E7@microsoft.com...
> When i go to a page on my server that is php it asks me for
> authentication.
>
> but none of the windows passwords work.
>
> how do i get this off so that people can get to the web page?