Re: [EMAIL PROTECTED] can php module be compiled like this

2006-08-14 Thread Joshua Slive
On 8/14/06, g xy <[EMAIL PROTECTED]> wrote: Hi,All I now meet a very difficult envirenment. I have a apache http server running which was originally compiled without DSO support, now I want to substitute the php module to let it include new version of mysql client. How should I do ? can I c

[EMAIL PROTECTED] can php module be compiled like this

2006-08-14 Thread g xy
Hi,All I now meet a very difficult envirenment. I have a apache http server running which was originally compiled without DSO support, now I want to substitute the php module to let it include new version of mysql client. How should I do ? can I compile it with another apxs and then copy the i

Re: [EMAIL PROTECTED] RE: Proxy config not acting as expected

2006-08-14 Thread Joshua Slive
On 8/14/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Please delete last email...this one has more accurate information. I have an Apache 2.2.2 server set up to reverse proxy and am having some problems. Here's the config: ProxyPass / http://192.168.1.1 ProxyPassReverse / http://192.1

[EMAIL PROTECTED] RE: Proxy config not acting as expected

2006-08-14 Thread sniedermeyer
Please delete last email...this one has more accurate information. I have an Apache 2.2.2 server set up to reverse proxy and am having some problems. Here's the config: ProxyPass / http://192.168.1.1 ProxyPassReverse / http://192.168.1.1 The intent is to redirect everything hitting / to a

[EMAIL PROTECTED] Proxy config not acting as expected

2006-08-14 Thread sniedermeyer
I have an Apache 2.2.2 server set up to reverse proxy and am having some problems. Here's the config: ProxyPass / http://192.168.1.1 ProxyPassReverse / http://192.168.1.1 The intent is to redirect everything hitting / to a back end server. The backend server is a Domino server. The static fil

Fwd: [EMAIL PROTECTED] Authorization in Apache 2.2

2006-08-14 Thread alan bryan
(resending as last wasn't sent as plain text - sorry) On 8/14/06, Nick Kew <[EMAIL PROTECTED]> wrote: On Monday 14 August 2006 20:44, alan bryan wrote: > I'm trying to set up some sort of basic authentication in Apache > 2.2authenticating against a PostgreSQL > 8.1 database. > > Has anyone been

Re: [EMAIL PROTECTED] Authorization in Apache 2.2

2006-08-14 Thread alan bryan
On 8/14/06, Nick Kew <[EMAIL PROTECTED]> wrote: On Monday 14 August 2006 20:44, alan bryan wrote:> I'm trying to set up some sort of basic authentication in Apache> 2.2authenticating against a PostgreSQL> 8.1 database.>> Has anyone been able to successfully get the new mod_authn_dbd to work on > Fr

Re: [EMAIL PROTECTED] Authorization in Apache 2.2

2006-08-14 Thread Nick Kew
On Monday 14 August 2006 20:44, alan bryan wrote: > I'm trying to set up some sort of basic authentication in Apache > 2.2authenticating against a PostgreSQL > 8.1 database. > > Has anyone been able to successfully get the new mod_authn_dbd to work on > FreeBSD? Of course:-) > I've also tried mod

[EMAIL PROTECTED] Authorization in Apache 2.2

2006-08-14 Thread alan bryan
I'm trying to set up some sort of basic authentication in Apache 2.2 authenticating against a PostgreSQL 8.1 database.Has anyone been able to successfully get the new mod_authn_dbd to work on FreeBSD?  I've also tried mod_auth_pgsql which compiles fine but I get the error: "No Authn provider config

Re: [EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Robert Ionescu
Foster, Stephen (ASPIRE) wrote: # = # Rewrite to HTTPS Settings # = RewriteCond %{HTTP_HOST} !^online\.domain\.com [NC] RewriteCond %{HTTP_HOST} !^$ Use lexicographically equal (!="") here instea

[EMAIL PROTECTED] Restricting indexes to authenticated users

2006-08-14 Thread Rich Thomas
Hi,   I’m running Server version: Apache/1.3.26 (Unix) and I’m trying to figure out how I can allow anonymous access to the files in a directory yet restrict the Directory index listing only to a few authenticated users.   I know I’ll probably need to use an .htaccess file with the Opt

Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info

2006-08-14 Thread jayaram . g
Hi, I just tested with a use case which is having some bug in one of my components after modifying the mod_echo module. My finding is that if one thread execution is having a bug it kills all other threads also( I have atransaction in one thread. So all transactions are in trouble). But Apache reco

Re: [EMAIL PROTECTED] How to get Alias and ProxyPass working in vhost file with Location and Directory?

2006-08-14 Thread Joshua Slive
On 8/14/06, Chris Dagnon <[EMAIL PROTECTED]> wrote: I've got a vhost file setup to ProxyPass off to Rails on port 3000, but now we're told we have to server images and CSSs from a shared directory elsewhere. The thought is to have a /www/static/images/ where all images live and are served from.

[EMAIL PROTECTED] How to get Alias and ProxyPass working in vhost file with Location and Directory?

2006-08-14 Thread Chris Dagnon
Hello all, this is an expert-level question from a newbie: I've got a vhost file setup to ProxyPass off to Rails on port 3000, but now we're told we have to server images and CSSs from a shared directory elsewhere. The thought is to have a /www/static/images/ where all images live and are served

Re: [EMAIL PROTECTED] Application variables

2006-08-14 Thread Steve Swift
Providing you don't have too many application variables you could use environment variables set in the Apache configuration with the "SetEnv" directive, or inherited from whatever process starts your Apache with the "PassEnv" directive. It all depends if you have access to update your apache config

Re: [EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Joshua Slive
On 8/14/06, Foster, Stephen (ASPIRE) <[EMAIL PROTECTED]> wrote: RewriteCond %{HTTP_HOST} !^online\.domain\.com [NC] RewriteCond %{HTTP_HOST} !^$ RewriteRule ^/(.*) http://online.domain.com:%{SERVER_PORT}/$1 [R] RewriteCond %{REQUEST_URI} !^/heartbeat/heartbeat.htm RewriteCond %{REQU

[EMAIL PROTECTED] Help with re-write rules

2006-08-14 Thread Foster, Stephen (ASPIRE)
hi all, quick newbie question if i may. I have been playing about with re-write rules today in order to acheive the behaviour i want, the situation i currently have is that i need to match and effect the following: 1: All requests to something other than the the FQDN should be written to the FQDN

Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info

2006-08-14 Thread William A. Rowe, Jr.
[EMAIL PROTECTED] wrote: > > I wonder if anybody has tried Windows prefork for Apache 2.2.2. The issue is the lack-of-fork in the Win32 API. It's supported at the ntdll layer, meaning that all the win32-ism's such as their thread-local storage model don't survive the fork() at all. For pure N

[EMAIL PROTECTED] WebServer slower after turned on KeepAlive

2006-08-14 Thread Joshua Slive
On 8/13/06, Qingshan Xie <[EMAIL PROTECTED]> wrote: --- Joshua Slive <[EMAIL PROTECTED]> wrote: .. > Having a portion of children hanging out in keepalive > could hurt even if there are children free, because > it could cause more context switches/memory cache > misses when switching requests

Re: [EMAIL PROTECTED] How Apache manages all its children

2006-08-14 Thread Joshua Slive
On 8/14/06, Steve Swift <[EMAIL PROTECTED]> wrote: You can see some information on the child processes by enabling the /info URL in httpd.conf - but you probably knew that already. On 14/08/06, Qingshan Xie <[EMAIL PROTECTED]> wrote: > Hi, > >I am curious how Apache manages all children, wh

[EMAIL PROTECTED] Application variables

2006-08-14 Thread Nir Nußbaum
Dear all, I'd like to have Apache have application variables, to be retrieved later from within JSP pages, so I don't need to hard code them. For instance, I want it to keep a list of directories it need to scan for a certain action. How is it possible? How can I retrieve them later in Java? I loo

[EMAIL PROTECTED] installing into a chroot from outside

2006-08-14 Thread Gergely CZUCZY
hello i'm trying to install apache 2.2 (also tried with 2.0) into a chrooted environment, from outside. it compiles cleanly, but i'm unable to make the Makefile's install target to install it into the chroot. the --prefix or the config.layout's prefix options is not a choice, because if i use tha

Re: [EMAIL PROTECTED] Subscriptions

2006-08-14 Thread Joshua Slive
On 8/14/06, Oluwatope Akinniyi <[EMAIL PROTECTED]> wrote: Hi, I want to change my subscription address and I sent a 'help' command to ezmlm and got this: You can start a subscription for an alternate address, for example "[EMAIL PROTECTED]", just add a hyphen and your address (with '=' instead

[EMAIL PROTECTED] Subscriptions

2006-08-14 Thread Oluwatope Akinniyi
Hi, I want to change my subscription address and I sent a 'help' command to ezmlm and got this: You can start a subscription for an alternate address, for example "[EMAIL PROTECTED]", just add a hyphen and your address (with '=' instead of '@') after the command word: <[EMAIL PROTECTED]> This

Re: [EMAIL PROTECTED] How Apache manages all its children - Add More Info

2006-08-14 Thread jayaram . g
Hi, In windows Apache creates 2 processes. Prefork is not supported on wondows. Process 1 has minimum  of three threads as below. worker_main ( actall thread which does the work coded in modules. More threads are spawned accoding to the configuration on httpd.conf ) winnt_accept and __tmainCRTS