Windows 7 IE8 Password trouble - Win7

Agent Data

Banned
Joined
Jan 9, 2010
I got a password protected web dir - while I can login to this dir with FF3 no problem IE8 is looping in the login window sorta pretending an invalid login. Are there IE restrictions to what char can be used in a password?

Notably there is a "=" character part of the password - that a problem for IE8?

Anyone a solution for this mess?
 
There could be several reasons for this.


  • The website owner is purposefully disallowing Internet Explorer log-ins to the content protected area.
  • Internet Explorer 8 does not conform to web standards as well as Firefox does.
  • The configuration of the content protected area was not done properly.
In apache (the most commonly used web server as opposed to IIS server), creating a password protected area using .htaccess and .htpasswd is somewhat simple.

.htpasswd would look something like this:

Code:
test:$apr1$FtJHH...$5U.xCYpMXGwrOb0S.FwY.1

The first line, test, is the username, while the second line is an encrypted password that translates into test as well.

.htaccess would look something like this:

Code:
AuthUserFile /var/www/whatever/.htpasswd
AuthName "Secret Place"
AuthType Basic
<Limit GET POST> 
require user test
</Limit>

No magic voodoo here, and it will work fine in IE8 and all other browsers. Both files are placed in the parent directory for the restricted area. In IIS, permissions are handled differently, and usually by Active Directory associations or custom users or groups using IIS Configuration. It is a relatively complex procedure, which I do not even care for, as I would suspect others would feel the same, which is why so many tend to use Linux/apache for web hosting...

IIS is proven to be good for web server clustering and ASP, however.

Of course, this does not necessarily solve your problem, only indicate that no sort of unusually complex activity takes place when creating restricted parts of websites. The method I have described above allows any browser in.

But, if the webmaster is using some kind of proprietary or special code, this could result in problems with any browser, that are unpredictable and unknown. My example is the most common way it is done for the most basic circumstance.

You may be able to determine if something odd is on-going by using web-sniffer on the URL you are trying to get into by using web-sniffer at: View HTTP Request and Response Header

This may give you some indication as to how the server you are accessing is configured, to a limited extent.
 
Mike,
the /webmaster/web site/space owner is me, Password protection has been generated by cPanel and no second thoughts to it :) - no problem FF3, IE8 no go! If I recall right there was no such issue in IE7. I am not in IIS/ASP/ Windows hosting.

No drama for me as FF is my primary browser and it works - I was just curious..
 
Yep, did that out of curiosity but same result - FF3 fine, IE8 login looping!

I copied the new generated string into the passwd file in the .htpasswds dir
 
found the culprit - nice bug!
it only works when the password field is blank then insert via CTRL-V and password is accepted!

how it not works:
since it is impossible to blank the password field with a mouse right-click any password pasted into it will fail to be accepted. Consequentially it seems the Password word somehow interferes when pasting a password.

Is this just me? funny bug indeed!
 
Back
Top Bottom