Re: [PHP] php and .htaccess...can't figure it out!

2005-09-15 Thread John Nichel
blackwater dev wrote: Which means absolutely nothing to me...can someone shed some light on all this? Why can't I use .htaccess files as this is all driving me a little batty! Did you try as someone suggested before, and put bogus content in the .htaccess file to see if Apache was even read

Re: [PHP] PHP and .HTACCESS

2003-10-04 Thread Curt Zirzow
* Thus wrote Marek Kilimajer ([EMAIL PROTECTED]): > it is virtualy impossible to make the browser forget the credentials. You sorta of can. If you redirect the user to something like: http://username:[EMAIL PROTECTED]/path/ The browser will/should forget the credentials. Curt -- List Stats

Re: [PHP] PHP and .HTACCESS

2003-10-04 Thread Mika Tuupola
On Fri, 3 Oct 2003, Marek Kilimajer wrote: > > thing that I can not find anywhere is how to code it so a user can click logoff > > and have it route them to another page and remove their authentication that was > > set. > it is virtualy impossible to make the browser forget the credentials.

Re: [PHP] PHP and .HTACCESS

2003-10-03 Thread Sid
If I've got my basics right, the auth user and pass will be sent by the browser. You will need a way to tell the browser not to send the user and pass anymore. - Sid - Original Message - From: "James D. Stallings" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: 3 October 2003 Friday 9:0

Re: [PHP] PHP and .HTACCESS

2003-10-03 Thread Marek Kilimajer
it is virtualy impossible to make the browser forget the credentials. How this is solved is that the logoff link is login.php?logoff=username In login.php you check for $_GET['logoff'] variable, if it is set you will not let the user with the same name ($_GET['logoff']) log in. James D. Stalling

Re: [PHP] PHP and .HTACCESS

2003-10-03 Thread Chris Shiflett
--- "James D. Stallings" <[EMAIL PROTECTED]> wrote: > I user goes to www.mysite.com and clicks on a link called STAFF > The STAFF.mysite.com is protected with authentication using > .htaccess The staff enters their ID and Password and is allowed in. > I want to have a button that says LOGOFFF that

Re: [PHP] PHP and .htaccess

2001-03-29 Thread Michael J. Seely
HI I have a directory that works like this. The owner of each listing in the directory clicks on a little box that appears before their name and info in the directory. An Enter User Name and Password page is shown ( a simple form, can look as you like) The imbedded listing number is used

Re: [PHP] PHP and .htaccess

2001-03-29 Thread Philip Olson
this tutorial may help : http://zend.com/zend/tut/authentication.php regards, philip On Thu, 29 Mar 2001, Les Neste wrote: > Hi all, > > We're all familiar with the skanky little box the web browser pops up to > get your username/password in response to a 401 from the web server. What > I