RE: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread rajesh.gannarapu
Hi, I tried in all ways, but facing the same error SSLRequire %{REQUEST_URI} !~ m\/abc\/qwert/ Starting httpd: Syntax error on line 1066 of /etc/httpd/conf/httpd.conf: SSLRequire: parse error -- Gannarapu -Original Message- From: SOPRO [mailto:[EMAIL PROTECTED] Sent: Thur

Re: [EMAIL PROTECTED] Help with mod_rewrite rules

2006-08-10 Thread Bill Moseley
On Thu, Aug 10, 2006 at 08:38:32PM -0400, Joshua Slive wrote: > On 8/10/06, Bill Moseley <[EMAIL PROTECTED]> wrote: > >I suppose the simple way is the following: > > > >RewriteCond %{REQUEST_URI} \.(jpe?g|gif|png|txt|doc|ppt|pdf)$ > >RewriteCond %{REQUEST_URI} !/css/ > >Rewr

Re: [EMAIL PROTECTED] Help with mod_rewrite rules

2006-08-10 Thread Joshua Slive
On 8/10/06, Joshua Slive <[EMAIL PROTECTED]> wrote: RewriteConds apply only to the RewriteRule immediately following them. There are various ways to avoid having to write the same conds multiple times, for example: RewriteCond %{REQUEST_URI} !\.(jpe?g|gif|png|txt|doc|ppt|pdf)$ Should obviousl

Re: [EMAIL PROTECTED] Help with mod_rewrite rules

2006-08-10 Thread Joshua Slive
On 8/10/06, Bill Moseley <[EMAIL PROTECTED]> wrote: I suppose the simple way is the following: RewriteCond %{REQUEST_URI} \.(jpe?g|gif|png|txt|doc|ppt|pdf)$ RewriteCond %{REQUEST_URI} !/css/ RewriteCond %{REQUEST_URI} ^/Rural [nocase] RewriteRule

Re: [EMAIL PROTECTED] WebServer slower after turned on KeepAlive

2006-08-10 Thread Qingshan Xie
Joshua, Thanks a lot for you reply. I also think about the possible explanation. Theoretically, Without "KeepAlive On", Apache parent will pick whatever needed number of multiple children to handle multiple requests in parallel. However, in the condition of "KeepAlive On", a specific child, whic

[EMAIL PROTECTED] Help with mod_rewrite rules

2006-08-10 Thread Bill Moseley
I'm trying to use a skip rule after a RewriteCond, but then the conditions are not checked. I've got these rewrite rules: RewriteCond %{REQUEST_URI} \.(jpe?g|gif|png|txt|doc|ppt|pdf)$ RewriteCond %{REQUEST_URI} !/css/ RewriteRule ^/(.+)$ /domains/default/$1 [la

[EMAIL PROTECTED] Re: how to customise response to OPTIONS request?

2006-08-10 Thread Jens Theisen
Brandon Fosdick wrote: What do you mean by "add basic webdav functionality" to a cgi app? I mean implement a level 1 webdav server with a cgi interface. A PROPFIND, for instance, would be served by the cgi application in the same way the GET and POSTs already are. You may be able to get aw

Re: [EMAIL PROTECTED] Conditions based on reverse lookup

2006-08-10 Thread Joshua Slive
On 8/10/06, Marc Perkel <[EMAIL PROTECTED]> wrote: Joshua Slive wrote: > On 8/10/06, Marc Perkel <[EMAIL PROTECTED]> wrote: >> I'm running Apache 2.2. Here's what I want to do. I want to restrict >> access based on a failed reverse host lookup. For example, if the IP of >> the client fails reve

Re: [EMAIL PROTECTED] Conditions based on reverse lookup

2006-08-10 Thread Marc Perkel
Joshua Slive wrote: On 8/10/06, Marc Perkel <[EMAIL PROTECTED]> wrote: I'm running Apache 2.2. Here's what I want to do. I want to restrict access based on a failed reverse host lookup. For example, if the IP of the client fails revers lookup I want then to not be able to post. Can that be do

Re: [EMAIL PROTECTED] XML turned off

2006-08-10 Thread Ki Song
> On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: >>> On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: A quick question: Is there something special that needs to be turned on on a web server to allow it to display XML documents? The server we're on doesn't render any XML docu

Re: [EMAIL PROTECTED] XML turned off

2006-08-10 Thread Joshua Slive
On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: > On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: >> A quick question: Is there something special that needs to be turned on on a >> web server to allow it to display XML documents? >> >> The server we're on doesn't render any XML document. >> >> The

Re: [EMAIL PROTECTED] XML turned off

2006-08-10 Thread Nick Kew
On Thursday 10 August 2006 20:57, Ki Song wrote: > http://mail.knifecenter.com/lookupdetail.xml HTTP/1.1 200 OK Date: Thu, 10 Aug 2006 19:27:04 GMT Server: Apache/2.0.54 (Fedora) Last-Modified: Thu, 10 Aug 2006 18:32:39 GMT ETag: "101467e-e7-d713fc0" Accept-Ranges: bytes Content-Length: 231 Conne

Re: [EMAIL PROTECTED] XML turned off

2006-08-10 Thread Ki Song
> On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: >> A quick question: Is there something special that needs to be turned on on a >> web server to allow it to display XML documents? >> >> The server we're on doesn't render any XML document. >> >> The exact same file that I created works on one web

Re: [EMAIL PROTECTED] XML turned off

2006-08-10 Thread Joshua Slive
On 8/10/06, Ki Song <[EMAIL PROTECTED]> wrote: A quick question: Is there something special that needs to be turned on on a web server to allow it to display XML documents? The server we're on doesn't render any XML document. The exact same file that I created works on one web server, but does

[EMAIL PROTECTED] XML turned off

2006-08-10 Thread Ki Song
A quick question: Is there something special that needs to be turned on on a web server to allow it to display XML documents? The server we're on doesn't render any XML document. The exact same file that I created works on one web server, but does not work on a different server. Ki ---

Re: [EMAIL PROTECTED] how to customise response to OPTIONS request?

2006-08-10 Thread Brandon Fosdick
Jens Theisen wrote: > Hello, > > I have a cgi application and want to add basic webdav functionality. I > wonder if it is an option to implement webdav on the cgi level. What do you mean by "add basic webdav functionality" to a cgi app? You may be able to get away with allowing mod_dav to contro

Re: [EMAIL PROTECTED] LoadModule failed in windows - Help Help Help

2006-08-10 Thread Joshua Slive
On 8/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi All, os_handle = LoadLibraryExW(wpath, NULL, 0); if (!os_handle) os_handle = LoadLibraryExW(wpath, NULL, LOAD_WITH_ALTERED_SEARCH_PATH); if (!os_handle) is not able

Re: [EMAIL PROTECTED] Using mod_auth_basic to secure dynamic pages from database

2006-08-10 Thread Cairen Lajia
Joshua, Thank you very much for your help! Today is first day on this list, and you made my first trip very enjoable. Best, Cairen "Joshua Slive" <[EMAIL PROTECTED]> Sent by: [EMAIL PROTECTED] 08/10/2006 11:51 AM Please respond to users@httpd.apache.org To users@httpd.apache.org c

Re: [EMAIL PROTECTED] Odd Apache-mod_perl behavior

2006-08-10 Thread Joshua Slive
On 8/9/06, Mon-Chaio Lo <[EMAIL PROTECTED]> wrote: At this point, we are stumped. Anyone have any ideas on what might be going on, or maybe point us in another direction in debugging this issue? The directory I would recommend is http://perl.apache.org/maillist/modperl.html Joshua.

Re: [EMAIL PROTECTED] Enabling fprintf in PHP from Apache.

2006-08-10 Thread Joshua Slive
On 8/10/06, Robert Cahn <[EMAIL PROTECTED]> wrote: I've just written a script that uses some files to build another file on the server. When I run the file I get the following message Fatal error: Call to undefined function: fprintf() in /home/rcahn/public_html/genenrollment2.php on line 259

Re: [EMAIL PROTECTED] Using mod_auth_basic to secure dynamic pages from database

2006-08-10 Thread Joshua Slive
On 8/10/06, Cairen Lajia <[EMAIL PROTECTED]> wrote: Joshua, Thank you very much for your prompt response. We try to avoid restarting the apache as few as possible, so beside using the in httpd.conf, are there any other ways to do this? Or any third part product that you know for this purpos

Re: [EMAIL PROTECTED] DBD Authentication using MySQL

2006-08-10 Thread Nick Kew
On Thursday 10 August 2006 15:40, Rob Sterenborg wrote: > When I use: "Require user " > I'm authenticated correctly and see the directory listing. So you've got authn_dbd is working. > When I use: "Require group admins" That uses mod_authz_groupfile and an AuthGroupFile directive. > I get the

Re: [EMAIL PROTECTED] Using mod_auth_basic to secure dynamic pages from database

2006-08-10 Thread Cairen Lajia
Joshua, Thank you very much for your prompt response. We try to avoid restarting the apache as few as possible, so beside using the in httpd.conf, are there any other ways to do this? Or any third part product that you know for this purpose? Thanks again for your help! Cairen "Joshua

Re: [EMAIL PROTECTED] Using mod_auth_basic to secure dynamic pages from database

2006-08-10 Thread Joshua Slive
On 8/10/06, Cairen Lajia <[EMAIL PROTECTED]> wrote: Hi All, This is a newbie question, and is my first post. I am trying to secure some pages of one of our applications using mod_auth_basic. I kind of know how to secure the page if it exists in the file system. But in my case, all these pages a

Re: [EMAIL PROTECTED] Conditions based on reverse lookup

2006-08-10 Thread Joshua Slive
On 8/10/06, Marc Perkel <[EMAIL PROTECTED]> wrote: I'm running Apache 2.2. Here's what I want to do. I want to restrict access based on a failed reverse host lookup. For example, if the IP of the client fails revers lookup I want then to not be able to post. Can that be done? There's probably

[EMAIL PROTECTED] Using mod_auth_basic to secure dynamic pages from database

2006-08-10 Thread Cairen Lajia
Hi All, This is a newbie question, and is my first post. I am trying to secure some pages of one of our applications using mod_auth_basic. I kind of know how to secure the page if it exists in the file system. But in my case, all these pages are stored in the database, even including the folde

[EMAIL PROTECTED] Conditions based on reverse lookup

2006-08-10 Thread Marc Perkel
I'm running Apache 2.2. Here's what I want to do. I want to restrict access based on a failed reverse host lookup. For example, if the IP of the client fails revers lookup I want then to not be able to post. Can that be done? ---

Re: [EMAIL PROTECTED] rotatelogs and gzip

2006-08-10 Thread SOPRO
Hi Marc, I use logrotate and it's work fine for me... :-) I created a separate file for apache: /etc/logrote.d/apache /var/log/apache/access_log /var/log/apache/error_log /var/log/apache/ssl_engine_log /var/log/apache/ssl_request_log { postrotate /usr/sbin/apachectl graceful endscri

[EMAIL PROTECTED] Enabling fprintf in PHP from Apache.

2006-08-10 Thread Robert Cahn
I've just written a script that uses some files to build another file on the server.  When I run the file I get the following message Fatal error: Call to undefined function: fprintf() in /home/rcahn/public_html/genenrollment2.php on line 259When I run the same script in localhost under FC5 using

Re: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread SOPRO
Gannarapu, I guess you have a odd slash after 'm'. Try this: %{REQUEST_URI} !~ m\/abc\/qwert/ Fabricio. 2006/8/10, Boyle Owen <[EMAIL PROTECTED]>: > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 9:14 AM > To: users@httpd.a

Re: [EMAIL PROTECTED] DBD Authentication using MySQL

2006-08-10 Thread Rob Sterenborg
On Thu, August 10, 2006 15:45, Joshua Slive wrote: ... >> Below is the config for the "test" directory and the error I get. >> As you can see, AuthBasicAuthoritative is not set so should default to On. >> (No >> .htaccess files in use.) I tried both settings, but the same error keeps >> showing up.

[EMAIL PROTECTED] rotatelogs and gzip

2006-08-10 Thread Marc MENDEZ
Hi, I use rotate logs like with this line : CustomLog "|/usr/sbin/rotatelogs /var/log/httpd/access_adagio_aspe_fr.log-%Y-%m-%d-%H_%M_%S 5M" combined Is there a way to compress the old log with gzip for instance ? Should I use logrotate instead ? Thanks for your suggestions !

Re: [EMAIL PROTECTED] problem after upgrade from Apache 2.0.49 to 2.0.58

2006-08-10 Thread Shawn Beard
This worked great. Thank you. Shawn Beard Web Administrator, MCSE, MCSA, MCP Iowa Foundation for Medical Care Information Systems [EMAIL PROTECTED] Office: 515-440-8581 >>> [EMAIL PROTECTED] 8/9/2006 12:18:50 PM >>> Hi, First find the location of the the shared library libgcc_s.so.1. You ca

RE: [EMAIL PROTECTED] multiple ssl-hosts per ip possible

2006-08-10 Thread Rob Sterenborg
On Thu, August 10, 2006 15:36, Boyle Owen wrote: ... >> - all certs for the hosts are bundled within one file >> > > Never heard of this... AFAIK, a certificate has a unique "common name" > which is supposed to match the domain name requested by the client. I don't > know how you'd have several CNs

Re: [EMAIL PROTECTED] DBD Authentication using MySQL

2006-08-10 Thread Joshua Slive
On 8/10/06, Rob Sterenborg <[EMAIL PROTECTED]> wrote: Hi all, It took me a long time but I was finally able to compile Apache with DBD and get it "working". That is: it seems to authenticate (no errors indicating otherwise) but it reports an error about an Authoritative handler. Searching aroun

Re: [EMAIL PROTECTED] WebServer slower after turned on KeepAlive

2006-08-10 Thread Joshua Slive
On 8/10/06, Qingshan Xie <[EMAIL PROTECTED]> wrote: Hi,All, We have apache-2.0.54 installed on Solaris and Linux boxes. We did a bounch of Load-Test with KeepAlive On or Off on multiple jpg, gif, text files. The test results are discourage. The webServer has slower response time when KeepAl

RE: [EMAIL PROTECTED] multiple ssl-hosts per ip possible

2006-08-10 Thread Boyle Owen
> -Original Message- > From: Marten Lehmann [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 2:52 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] multiple ssl-hosts per ip possible > > Hello, > > I recently read, that it is possible the have more than one > ssl-h

[EMAIL PROTECTED] multiple ssl-hosts per ip possible

2006-08-10 Thread Marten Lehmann
Hello, I recently read, that it is possible the have more than one ssl-host per ip-address. This shall be possible with two special requirements: - all ssl-hosts share the same key - all certs for the hosts are bundled within one file For the letter requirement I think it doesn't only have to

Re: [EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Ashutosh Mohanty
Hi, Boyle yes i got that already,Actually i did this mistake because previously the virtual host setting was like *:80 , and when i moved all those virtualhosts to different m/c i forgot to chnnge the Name VirtualHost to alike. anyway thanks a lot,as you pointout the exact possible problem. Ashu

RE: [EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Boyle Owen
> -Original Message- > From: Ashutosh Mohanty [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 11:27 AM > To: Apache Group > Subject: RE: [EMAIL PROTECTED] Virtualhost Problem > > > I made the mistake in NameVirtualHost that is, > > Instead of writing :: > > NameVirtualHost

Re: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread Ashutosh Mohanty
[EMAIL PROTECTED] wrote: > mod_ssl.so is not available at modules directory. > then go to the following link and please read docs. http://httpd.apache.org/docs/2.2/ssl/ssl_howto.html (for httpd-2.2) > > > > -Original Message- > From: Ashutosh Mohanty [mailto:[EMAIL PROTECTED] > Sent: T

RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread rajesh.gannarapu
mod_ssl.so is not available at modules directory. -Original Message- From: Ashutosh Mohanty [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 3:48 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] mod_ssl with Httpd2.2 Hi, [EMAIL PROTECTED] wrote: > Here is the err

Re: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread Ashutosh Mohanty
Hi, [EMAIL PROTECTED] wrote: > Here is the error: > > > Starting httpd: httpd: Syntax error on line 98 of > /etc/httpd/conf/httpd.conf: Ca > nnot load /usr/lib/httpd/modules/mod_ssl.so into server: > /usr/lib/httpd/modules/ > mod_ssl.so: cannot open shared object file: No such file or directory >

RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread rajesh.gannarapu
Here is the error: Starting httpd: httpd: Syntax error on line 98 of /etc/httpd/conf/httpd.conf: Ca nnot load /usr/lib/httpd/modules/mod_ssl.so into server: /usr/lib/httpd/modules/ mod_ssl.so: cannot open shared object file: No such file or directory

RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 11:18 AM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2 > > > Thanks for your Prompt response Boyle, > > I need to install http2.2 in my ser

RE: [EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Ashutosh Mohanty
Hi Boyle,   Thanks, i got the problem, you are simply "Genius",   I made the mistake in NameVirtualHost that is, Instead of writing :: NameVirtualHost * I wrote like :: NameVirtualHost *:80   when i changed this to NameVirtualHost * , it works,.Thanks a lot   Bye for now, H

RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread rajesh.gannarapu
Thanks for your Prompt response Boyle, I need to install http2.2 in my server for that I downloaded below rpms and installed. apr-1.2.1-1.i386.rpm apr-util-1.2.1-1.i386.rpm httpd-2.2.3-1.i386.rpm But I could not able to start the server. Do I need to install any rpm apa

Re: [EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Ashutosh Mohanty
Hi, Boyle yes i have Name VirtualHost seting in httpd.conf, NameVirtualHost *:80 Include "/usr/local/apache/conf/site.conf" (in "site.conf "this i declared VirtualHost setting as i given already) Is there any problem in this setting, between i am going through the docs. Thanks Ashutosh Syna

RE: [EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 11:00 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] mod_ssl with Httpd2.2 > > > Hi Friends, > > I want to upgrade to http2.2 from http2.0. > I downloaded below rpms

[EMAIL PROTECTED] mod_ssl with Httpd2.2

2006-08-10 Thread rajesh.gannarapu
Hi Friends, I want to upgrade to http2.2 from http2.0. I downloaded below rpms apr-1.2.1-1.i386.rpm apr-util-1.2.1-1.i386.rpm httpd-2.2.3-1.i386.rpm But I could not able to download the compatible version of mod_ssl rpm. Please let me where I can download the mod_ssl r

RE: [EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Boyle Owen
> -Original Message- > From: Ashutosh Mohanty [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 10:30 AM > To: Apache Group > Subject: [EMAIL PROTECTED] Virtualhost Problem > > Hi Owen Boyle/Everybody, > > > > > > Thanks to Boyle for his help regarding my previous proble

[EMAIL PROTECTED] DBD Authentication using MySQL

2006-08-10 Thread Rob Sterenborg
Hi all, It took me a long time but I was finally able to compile Apache with DBD and get it "working". That is: it seems to authenticate (no errors indicating otherwise) but it reports an error about an Authoritative handler. Searching around to resolve that I was pointed to the AuthBasicAuthorit

[EMAIL PROTECTED] Virtualhost Problem

2006-08-10 Thread Ashutosh Mohanty
Hi Owen Boyle/Everybody,     Thanks to Boyle for his help regarding my previous problem in apache, now I am facing another problem with accessing virtual host in apache here is my description of virtual hosting.   Os: Linux 7.2(2.4.34) Httpd-2.0.53 Php-5.0.3   I have two Virtual host setting

Re: [EMAIL PROTECTED] Apache2.0 with Weblogic --->error CONNECTION_REFUSED ....Error connecting to host 10.152.69.211:7001

2006-08-10 Thread Alexander Lazic
Hi, On Don 10.08.2006 12:08, Ruchi Agarwal02 wrote: We have installed Apache2.0.54 and configured it with weblogic9.2.Both Apache and Weblogic are installed and started properly. As the output show you are using the weblogic-plugin, isn't it?! But on accessing an application the weblogic se

RE: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 9:14 AM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Httpd.conf configuration problem > > > Hi boyle, > > SSLRequire %{REQUEST_URI} !~ m/\/bam\/qwert

RE: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread Boyle Owen
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Thursday, August 10, 2006 5:44 AM > To: users@httpd.apache.org > Cc: Boyle Owen > Subject: RE: [EMAIL PROTECTED] Httpd.conf configuration problem > Please keep all mails *on list*. So please don't: - CC

RE: [EMAIL PROTECTED] Httpd.conf configuration problem

2006-08-10 Thread rajesh.gannarapu
Hi boyle, SSLRequire %{REQUEST_URI} !~ m/\/bam\/qwert I just pasted the line from the httpd.conf file. Could you found some thing wrong in the expression? -- Gannarapu -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 10, 2006 12:40 PM To: Rajesh G