Re: [EMAIL PROTECTED] Help building mod_auth_ldap.o against the netscape/mozilla SDK

2005-09-30 Thread Dmitriy Kirhlarov
On Thu, Sep 29, 2005 at 10:20:52PM -0400, Marc Boorshtein wrote: I'm trying to build the mod_ldap and mod_auth_ldap modules on fedora core 4 and am running into some issues. These are the steps I took: 1. download and extract httpd-2.0.54 source 2. copy the netscape sdk to srclib/ldap 3;

RE: [EMAIL PROTECTED] % mod_proxy URL issue

2005-09-30 Thread Axel-Stéphane SMORGRAV
Is it a good idea to fork a sed for each request? The RewriteRule condition will accept any URL path _containing_ /exchange/... and proxy it to what host? There are built-in functions available for RewriteMap, including functions for encoding and decoding URLs. I suggest that you use them

[EMAIL PROTECTED] Professional consulting for Apache HTTPD server

2005-09-30 Thread Trustin Lee
Hello,One of my friends is asking for me to introduce a professional consultant for Apache HTTPD server. Unfortunately I don't know anyone who can do that kind of consulting and httpd.apache.org professional service link shows me 500 internal server error.If there is anyone who can consult on

Re: [EMAIL PROTECTED] Modifying mod_access

2005-09-30 Thread Mike Cardwell
Joshua Slive wrote: It's working perfectly... Except... .htaccess files no longer work for anything that is rewritten to the sbox binary. So users can not set up stuff like Basic Authentication on those scripts. Hmmm... I haven't tried it, but I have a suspicion that you could fix

Re: [EMAIL PROTECTED] Modifying mod_access

2005-09-30 Thread Joshua Slive
On 9/30/05, Mike Cardwell [EMAIL PROTECTED] wrote: Hmmm. This doesn't seem to have fixed it. The rewrite rules always seem to get processed before the .htaccess files. Let's see the actual config. Joshua. - The official

Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Nick Couchman
I'm looking to do the same thing as Bhavin, but with a little twist: I'd like to be able for the users to save/upload files under their user id's. I'm not sure this is actually possible - maybe someone can tell me whether or not it is possible and, if it is possible, how you would go about

RE: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Boyle Owen
-Original Message- From: Nick Couchman [mailto:[EMAIL PROTECTED] Sent: Freitag, 30. September 2005 16:19 To: [EMAIL PROTECTED]; Bhavin Modi; users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER} I'm looking to do the same thing as

Re: [EMAIL PROTECTED] Help building mod_auth_ldap.o against the netscape/mozilla SDK

2005-09-30 Thread Ricardo M. Stella
Hello all, I'm trying to build the mod_ldap and mod_auth_ldap modules on fedora core 4 and am running into some issues. These are the steps I took: 1. download and extract httpd-2.0.54 source 2. copy the netscape sdk to srclib/ldap 3; run ./configure --enable-ldap --enable-auth-ldap 4.

Re: [EMAIL PROTECTED] % mod_proxy URL issue

2005-09-30 Thread Covington, Chris
Thanks ascs, This works perfectly: #OWA % character in email subject fix RewriteEngine On RewriteMap percentsubject int:escape RewriteCond $1 ^/exchange/.*\%.*$ RewriteRule (/exchange/.*) ${percentsubject:$1} [P] I've added it to: http://www-personal.umich.edu/~malth/gaptuning/apache/ ---

Re: [EMAIL PROTECTED] Alias And Redirection question

2005-09-30 Thread Joshua Slive
On 9/29/05, Simon Taylor [EMAIL PROTECTED] wrote: I am experiencing odd behaviour on our prod box when what i want to happen works on our dev box. Sorry, but this problem description is too difficult to parse for me (and apparently others, given the general lack of response). Just for

Re: [EMAIL PROTECTED] Porting of Modules using BUFF Structure in Apache 1.3 to Apache 2.0

2005-09-30 Thread Joshua Slive
On 9/29/05, Vinod Narayana [EMAIL PROTECTED] wrote: Hi List, I have been working on porting a customized module written in Apache1.3 to Apache2.0. It uses Structure BUff. I am getting errors that BUFF parameter is illegal. It seems to be deprecated. Can any one please help me

Re: [EMAIL PROTECTED] Error downloading *.gz files

2005-09-30 Thread Joshua Slive
On 9/28/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi Using Apache server running on windows machine, Have problem while downloading any of the *.gz files from the webserver, following is the error, when the open fails. The file has all the proper permission. No issues download all

[EMAIL PROTECTED] Apache wont start Please Help

2005-09-30 Thread Alessandro Gigli
Hello there,Iam new to Apache. I am using Windows XP. I have installed MySQL, then I have installed Apache,and everything is fine. Now, I have extracted the files for PHP4 into adirectory on C:/. what I have done next is to copy the php.ini file intothe WINDOWS directory. I have copied the

[EMAIL PROTECTED] cgi-bin not working in my SSL virtual host

2005-09-30 Thread Daniel Prieto
Hi, I have installed httpd-2.0.54 on a Sun box (Solaris 8) attached are my ssl.conf, and httpd.conf files ( I removed the comments AddLanguage, AddCharset, AddIcon, and AddIconByType entries). The cgi scripts work fine in the default cgi-bin directory as well as in the public.html/cgi-bin

Re: [EMAIL PROTECTED] cgi-bin not working in my SSL virtual host

2005-09-30 Thread Joshua Slive
On 9/30/05, Daniel Prieto [EMAIL PROTECTED] wrote: Location /var/daemon/apache/docs/fitt/cgi-bin SetHandler cgi-script /Location Make that Directory instead of Location See: http://httpd.apache.org/docs/2.0/sections.html#file-and-web Joshua.

Re: [EMAIL PROTECTED] cgi-bin not working in my SSL virtual host

2005-09-30 Thread Daniel Prieto
Joshua, That worked. Thank you! Also, do you (or anybody in the list) know how to use cgiwrap from the default cgi-bin directory or from its own virtual host cgi-bin directory? Daniel Joshua Slive wrote: On 9/30/05, Daniel Prieto [EMAIL PROTECTED] wrote: Location

[EMAIL PROTECTED] Possible attack?

2005-09-30 Thread Kevin O'Neil
Hello, all. I don't know if this is the right forum, but here goes. Anyone else getting nailed with a 401 error in the logs that is using full url? I never use full url for my ErrorDocument and have been getting slammed with this since about Monday. It seem that 50 or 60 times per minute the

Re: [EMAIL PROTECTED] How to use mod_rewrite with %{REMOTE_USER}

2005-09-30 Thread Bhavin Modi
On 9/29/05, Joshua Slive [EMAIL PROTECTED] wrote: On 9/29/05, Bhavin Modi [EMAIL PROTECTED] wrote: RewriteRule ^/users/$ /users/%{REMOTE_USER} [R] The %{REMOTE_USER} returns a value like uid=testuser,ou=people,dc=domain,dc=com, so I need to filter testuser from this string. Is there any other