Re: [us...@httpd] password protected files

2010-01-21 Thread Igor Cicimov
Put that file in separate protected directory and write RewriteRule...just an idea. On Jan 22, 2010 1:36 AM, "Nasir Zia" wrote: My directory authentication works fine. But i want to restrict only one file behind authentication which is not working for me On Thu, Jan 21, 2010 at 6:19 PM, Nilesh

[us...@httpd] Using mod_proxy_balancer... GET missing!

2010-01-21 Thread Douglas Garstang
I have two servers sitting behind apache that I need to load balance between. My config is: ServerName lbal01.nyc.xxx.com ServerAlias openelements.xxx.com ProxyRequests Off Order deny,allow Allow from all ProxyPass /balancer-ma

Re: [us...@httpd] Handling multipart/form-data requests via Apache Module

2010-01-21 Thread Jain Sachinkumar
Hello Devraj, Thanks for the quick response. I am using C to write my module. Can you give me some guideline to decode the mime string? If the contents of multipart data is just text file, it is easy to read it and write to other file, but in case of zipped file or image file, how this is to be

Re: [us...@httpd] Redirect url and preserve new name

2010-01-21 Thread Nilesh Govindarajan
On 01/21/2010 09:50 PM, Eric Covener wrote: 2010/1/21 Juan Jesús Cremades Monserrat: Hi! I'm configuring the Apache Server. I have a server mounted with the next url: http://VMS-GEN-000/ And a Wiki into with http://VMS-GEN-000/wiki/ url I want that apache redirects to the wiki if the user ty

Re: [us...@httpd] Redirect url and preserve new name

2010-01-21 Thread Eric Covener
2010/1/21 Juan Jesús Cremades Monserrat : > Hi! > > I'm configuring the Apache Server. I have a server mounted with the next > url: http://VMS-GEN-000/ > > And a Wiki into with  http://VMS-GEN-000/wiki/ url > > I want that apache redirects to the wiki if the user types: > http://wiki.mydomain.com a

[us...@httpd] Redirect url and preserve new name

2010-01-21 Thread Juan Jesús Cremades Monserrat
Hi! I'm configuring the Apache Server. I have a server mounted with the next url: http://VMS-GEN-000/ And a Wiki into with http://VMS-GEN-000/wiki/ url I want that apache redirects to the wiki if the user types: http://wiki.mydomain.com

Re: [us...@httpd] Re: Running Python over FastCGI

2010-01-21 Thread Robin Becker
On 21/01/2010 13:54, Nilesh Govindarajan wrote: On 01/21/2010 11:31 AM, Nilesh Govindarajan wrote: Hi, I have Apache 2.2.14 with mod_fastcgi. I am running PHP using this configuration - AddHandler php-fcgi .php FastCgiServer cgi-bin/php-cgi Action php-fcgi cgi-bin/php-cgi Options +ExecCGI

Re: [us...@httpd] password protected files

2010-01-21 Thread Nasir Zia
My directory authentication works fine. But i want to restrict only one file behind authentication which is not working for me On Thu, Jan 21, 2010 at 6:19 PM, Nilesh Govindarajan wrote: > On 01/21/2010 05:44 PM, Nasir Zia wrote: > >> AOA, >> >> how can i password protect a single file with htacc

Re: [us...@httpd] Re: Running Python over FastCGI

2010-01-21 Thread Eric Covener
On Thu, Jan 21, 2010 at 8:54 AM, Nilesh Govindarajan wrote: > On 01/21/2010 11:31 AM, Nilesh Govindarajan wrote: > List, any ideas ? > Please don't bump your thread so quickly. Do you really not find sufficient info searching the web for e.g. "python fastcgi apache"? -- Eric Covener cove...@gm

[us...@httpd] Re: Running Python over FastCGI

2010-01-21 Thread Nilesh Govindarajan
On 01/21/2010 11:31 AM, Nilesh Govindarajan wrote: Hi, I have Apache 2.2.14 with mod_fastcgi. I am running PHP using this configuration - AddHandler php-fcgi .php FastCgiServer cgi-bin/php-cgi Action php-fcgi cgi-bin/php-cgi Options +ExecCGI And it is working properly. Is there any such

Re: [us...@httpd] password protected files

2010-01-21 Thread Nilesh Govindarajan
On 01/21/2010 05:44 PM, Nasir Zia wrote: AOA, how can i password protect a single file with htaccess. i am using below technique but it not works for me AuthName "test" AuthType Basic AuthUserFile /path to file/.htpasswd require valid-user Nasir I think your server is not permitting Aut

[us...@httpd] password protected files

2010-01-21 Thread Nasir Zia
AOA, how can i password protect a single file with htaccess. i am using below technique but it not works for me AuthName "test" AuthType Basic AuthUserFile /path to file/.htpasswd require valid-user Nasir