vote up 0 vote down star

How do I use PHP to check whether a folder is password protected or not? I am using a PHP script that check for return codes 401 and 403 but when it runs into a folder that is password protected it recognizes that its a 403 but does not allow the popup box for username and password to display? How do I detect that the folder is password protected so I can tell my script to ignore it?

flag

3 Answers

vote up 0 vote down

Assuming the server uses standard HTTP Authentication, the page is password protected if following conditions are met,

  1. The response status code is 401.
  2. www-authenticate header is present in response.

Zhihong

link|flag
vote up 3 vote down

Actually 403 means forbidden. A password-protected resource would normally return 401 Unauthorized.

You already have the information you need: The HTTP response code (403 or whatever) is how you know that the resource (folder, file) is inaccessible.

link|flag
vote up 0 vote down

You say you already have a script to check if the header code is 401 and 403 and yet you want to know how you can check if a page sends a 403 header?

Perhaps you mean talking about the Authentication header.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.