Forum Moderators: phranque
so my login collect username and pass
and try to go at my dir specific url like this:
user:pass@mysite.com
but it works on some computer and doesnt for others
is there any reason?
or any other way to make a login without a prompt...you know on a page ...its more elegant than a popup :)
Try searching Google for "membership site script" or similar. You should find something to satisfy your needs.
thanks for finding the direct link, choster
Thanks for this - really useful but also a bit depressing. Looks like we're going to need a work-around in our security sytstem.
As I understand it, It's now impossible to avoid the pop-up login screen if you're using htpasswd protection.
From my (very limited) knowledge of htaccess, I gather there is another method mod_rewrite with
php_include that may be a better way of going about this. Would prefer not to have to start coding this from scratch. Does anyone know a good source of php scripts for this.
Our requirements aren't very comples. We're trying to provide access to a collection of pdf-s for a database of ca 10,000 subscribers.
Again - thanks for any guidance on this.
Teri
It was never secure to pass a username and password combination in cleartext over the public Internet. I certainly would not have used it for subscriber authentication, especially since end users often use the same userids and passwords across multiple sites. The same would be true if you fed them in as www.example.com/userid/password or www.example.com/login?userid=jsmith&pwd=webmwld92 .
If you already have a database of subscribers, why not set up application-based authentication? You could set cookies to manage user sessions. The login would be embedded in a web page, eliminating the popup window.
If you were encouraging the inline form as a shorthand, well, every modern browser has a password keeper built in, so a subscribed could simply save the password on his/her local machine.