[PHP] browsing permission

2001-09-06 Thread Wilbert Enserink

Hi all,


anybody knows a way to protect a directory on my webserver from browsing via
a webbrowser.
browsing is only permitted after users have logged in via a form on the
website (so, I'm not able to use htaccess).

thx.

Wilbert

-
Pas de Deux
Van Mierisstraat 25
2526 NM Den Haag
tel 070 4450855
fax 070 4450852
http://www.pdd.nl
[EMAIL PROTECTED]
-

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] browsing permission

2001-09-06 Thread Jon Haworth

Without .htaccess you have two options:

1. Does your host offer a control panel? Mine has one where I can add
password protection to any directory I wish - worth checking out.
2. require() a php file at the top of every page in that directory that does
this:

if (user is allowed here) {
  display page
} else {
  sod off
}

HTH
Jon


-Original Message-
From: Wilbert Enserink [mailto:[EMAIL PROTECTED]]
Sent: 06 September 2001 16:40
To: [EMAIL PROTECTED]
Subject: [PHP] browsing permission


Hi all,


anybody knows a way to protect a directory on my webserver from browsing via
a webbrowser.
browsing is only permitted after users have logged in via a form on the
website (so, I'm not able to use htaccess).

thx.

Wilbert


**
'The information included in this Email is of a confidential nature and is 
intended only for the addressee. If you are not the intended addressee, 
any disclosure, copying or distribution by you is prohibited and may be 
unlawful. Disclosure to any party other than the addressee, whether 
inadvertent or otherwise is not intended to waive privilege or confidentiality'

**

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]