Connecting Tech Pros Worldwide Forums | Help | Site Map

php - htaccess

Geradeaus
Guest
 
Posts: n/a
#1: Jul 17 '05
On my webhosting I don't have access to a root directory, so I am stuck in
the public folder.

I should secure the downloads folder, this is why I wanted to use a
..htaccess file.

Only, PHP should have access to this folder..because users login using a
username and password from the database.

How can I make an htaccess file which allows the "php-user" to access the
files in the folder on a Linux webserver?

Thanks in advance!
Ben



Dmitry Lukashin
Guest
 
Posts: n/a
#2: Jul 17 '05

re: php - htaccess


PHP read files directly from filesystem, .htaccess can't deny access for PHP

On 2005-06-07, Geradeaus <gehegeradeaus@hotmail.com> wrote:[color=blue]
> On my webhosting I don't have access to a root directory, so I am stuck in
> the public folder.
>
> I should secure the downloads folder, this is why I wanted to use a
> .htaccess file.
>
> Only, PHP should have access to this folder..because users login using a
> username and password from the database.
>
> How can I make an htaccess file which allows the "php-user" to access the
> files in the folder on a Linux webserver?
>
> Thanks in advance!
> Ben
>[/color]
chotiwallah
Guest
 
Posts: n/a
#3: Jul 17 '05

re: php - htaccess


if i understand right you want to prevent people from downloading via a
direct link in your download dir. two ways to prevent that:

1. put your downloads in a database

2. use .htaccess to deny any http access to download dir and have php
read and deliver the downloads via the file system (which is not
affected by .htaccess, as dmitry wrote already), using i. e. readfile()

micha

Geradeaus
Guest
 
Posts: n/a
#4: Jul 17 '05

re: php - htaccess



"chotiwallah" <chotiwallah@web.de> schreef in bericht
news:1118216549.071878.23350@g49g2000cwa.googlegro ups.com...[color=blue]
> if i understand right you want to prevent people from downloading via a
> direct link in your download dir. two ways to prevent that:
>
> 1. put your downloads in a database
>
> 2. use .htaccess to deny any http access to download dir and have php
> read and deliver the downloads via the file system (which is not
> affected by .htaccess, as dmitry wrote already), using i. e. readfile()
>
> micha[/color]

thanks for your advice, how could I not think about that...


Closed Thread