I use a simple .htaccess file to protect a folder:
AuthUserFile /blah/blah/.htpasswd
AuthGroupFile /dev/null
AuthName "my music store"
AuthType Basic
require valid-user
it works well.
I would like to whitelist a specific HTTP_USER_AGENT ( iphones,
specifically) so that they're let in w/o any p
Can apache SSI be used to enforce Content-disposition for a file from
within a shtml page?
many thanks in advance.
-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist
2009/12/8 André Warnier :
> Evuraan wrote:
>>
>> How do I disable Accept-Ranges?
>>
>>
>> Origin servers that accept byte-range requests MAY send
>>
>> Accept-Ranges: bytes
>>
>> Servers that do not accept
How do I disable Accept-Ranges?
Origin servers that accept byte-range requests MAY send
Accept-Ranges: bytes
Servers that do not accept any kind of range request for a
resource MAY send
Accept-Ranges: none
Thanks in advance.!
-
hello,
i use htpasswd to control user authentication but the user list has
grown to an extent where i am seeking alternatives.
Is there some sort of ui for htpasswd|htaccesss which wud let users
sign up, the admin approves the correct and denies the other, also
providing simpler user management
thanks for your replies and your time.
now that I know it is impossible to do, here is what I was trying to do:
I was trying to avoid having to float a form handler in php or w/e to
grab the form POST data -
and grab $POST (if it were available) from the ssi blah.shtml and be
happy with the f
Greetings..!
Question:much like $_POST in php, used to collect values from a form
sent with method="POST", is there a variable (like $QUERY_STRING in
case of a GET) to grab data from a POST request?
I am trying to avoid having a php snippet to read form data. Like
$QUERY_STRING in case of a GET,