[us...@httpd] Authentication for HTTP_USER_AGENT

2010-05-06 Thread Evuraan
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

[us...@httpd] use ssi to enforce Content-disposition header

2010-04-10 Thread Evuraan
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

Re: [us...@httpd] disable Accept-Ranges

2009-12-08 Thread Evuraan
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

[us...@httpd] disable Accept-Ranges

2009-12-08 Thread Evuraan
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.! -

[us...@httpd] htpasswd ui question

2009-11-22 Thread Evuraan
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

Re: [us...@httpd] $_POST equivalent env variable in apache

2009-05-19 Thread Evuraan
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

[us...@httpd] $_POST equivalent env variable in apache

2009-05-18 Thread Evuraan
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,