RE: [us...@httpd] mod_dbd and multiple DB connections

2009-10-16 Thread Ben Davies
Nice one! I was hoping this had been addressed. Cheers! Ben From: nicholas@sun.com [mailto:nicholas@sun.com] On Behalf Of Nick Kew Sent: 15 October 2009 20:04 To: users@httpd.apache.org Subject: Re: [us...@httpd] mod_dbd and multiple DB connections On 15 Oct 2009, at 09:0

[us...@httpd] Help with apache reporting the wrong Port number

2009-10-16 Thread Gareth Brown
Hi All, Sorry if this is a known issue, but I have searched Google/forums etc and found no clear answer. *The problem I have *My Apache is accepting http traffic on port 81, but reporting it as port 80 - via the PHP command: $port=$_SERVER['SERVER_PORT'] I am doing it through a F5 Big-IP lo

Re: [us...@httpd] Help with apache reporting the wrong Port number

2009-10-16 Thread Tom Evans
On Fri, 2009-10-16 at 11:10 +0100, Gareth Brown wrote: > Hi All, > > Sorry if this is a known issue, but I have searched Google/forums etc > and found no clear answer. > > *The problem I have > *My Apache is accepting http traffic on port 81, but reporting it as > port 80 - via the PHP command:

Re: [us...@httpd] Help with apache reporting the wrong Port number

2009-10-16 Thread Gareth Brown
Thanks Tom, Both for Speed and accuracy. adding the following to my config did it: UseCanonicalPhysicalPort On You have saved me panic before the weekend (my project was due today and I've been messing about with this all week). Cheers Gareth Tom Evans wrote: On Fri, 2009-10-16 at 11:10 +

[us...@httpd] URL-Rewrite Problem

2009-10-16 Thread Anoop.V
I have a problem with rewriting certain urls which contains special characters.Please have a look at the following urls RewriteRule ^/Football/Quarter-Reports%C2%A0    /Football/Quarter-Reports  [R=301,L] The problem is the server interprets it differently as the special characters change the ur

Re: [us...@httpd] URL-Rewrite Problem

2009-10-16 Thread Igor Cicimov
Have you tried the NE flag in the rewrite rule? On Fri, Oct 16, 2009 at 10:41 PM, Anoop.V wrote: > I have a problem with rewriting certain urls which contains special > characters.Please have a look at the following urls > RewriteRule ^/Football/Quarter-Reports%C2%A0/Football/Quarter-Reports

Re: [us...@httpd] URL-Rewrite Problem

2009-10-16 Thread Anoop.V
Thanks for the reply, Yes.I tried.That too is not working.I find it a strange problem. --- On Fri, 10/16/09, Igor Cicimov wrote: From: Igor Cicimov Subject: Re: [us...@httpd] URL-Rewrite Problem To: users@httpd.apache.org Date: Friday, October 16, 2009, 6:30 PM Have you tried the NE flag in

[us...@httpd] Parent: child process exited with status 3221225480 -- Restarting

2009-10-16 Thread Wolfgang . Miska
Hi all, what does the status 3221225480 mean? This is the log entry [Fri Oct 16 11:10:47 2009] [notice] Parent: child process exited with status 3221225480 -- Restarting. [Fri Oct 16 11:10:47 2009] [notice] Apache/2.2.13 (Win32) PHP/5.3.0 configured -- resuming normal operations [Fri Oct 16 11:1

[us...@httpd] win x64

2009-10-16 Thread David Southwell
Can anyone tell me if it is possible to get apache 2.2.13 or 2.2.14 to running as a win XP x64 bit program with ssl or am I limited to 32 bit? I know a 32 bit version is available and will run but I would like to take advantage of a 64bit system with a quad processor. Will I need to compile it

Re: [us...@httpd] win x64

2009-10-16 Thread William A. Rowe, Jr.
David Southwell wrote: > Can anyone tell me if it is possible to get apache 2.2.13 or 2.2.14 to > running > as a win XP x64 bit program with ssl or am I limited to 32 bit? I know a 32 > bit version is available and will run but I would like to take advantage of a > 64bit system with a quad pro

[us...@httpd] SSL Server "Ignoring" mod_proxy ProxyPass directives

2009-10-16 Thread Nick Tkach
Hi, we're trying to get mod_proxy_balancer to work with an SSL virtual host, but having problems. It seems like HTTPD is "ignoring" any kind of ProxyPass at all. I have balancers and the SSL host set up as follows below. I've even tried changing the directives: ProxyPass /uim balancer://uim-

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Eric Covener
On Fri, Oct 16, 2009 at 1:05 PM, Bob Schell wrote: > The problem I am having is my PHP code is pulling the > $_SERVER['SERVER_PORT'] variable and this is coming back as 80 rather than > 443.  To narrow this problem down, I've closed port 80 by commenting out > 'LISTEN 80' so my server is ONLY list

Re: [us...@httpd] URL-Rewrite Problem

2009-10-16 Thread Jonathan Zuckerman
On Fri, Oct 16, 2009 at 6:06 AM, Anoop.V wrote: > Thanks for the reply, > Yes.I tried.That too is not working.I find it a strange problem. > > > > --- On *Fri, 10/16/09, Igor Cicimov * wrote: > > > From: Igor Cicimov > Subject: Re: [us...@httpd] URL-Rewrite Problem > To: users@httpd.apache.org

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Eric Covener
On Fri, Oct 16, 2009 at 1:48 PM, Bob Schell wrote: > However, then, within the application I am using, if I logout of the > application and/or navigate around as I used to be able to do, I get the > following URL which errors out on me: > > http://name.url.edu:443/rcsurvey/rp_survey/1.3.1/ > > You

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
Thanks again for the quick reply. How did my config also imply http over 443? On Fri, Oct 16, 2009 at 11:51 AM, Eric Covener wrote: > On Fri, Oct 16, 2009 at 1:48 PM, Bob Schell wrote: > > However, then, within the application I am using, if I logout of the > > application and/or navigate arou

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
Thanks for the quick response Eric. Well, if I add : 'UseCanonicalPhysicalPort On' I can then keep my 3rd line within be : ServerName name.url.edu (without the :443) And I DO get the proper port returned. However, then, within the application I am using, if I logout of the application and/or

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Eric Covener
On Fri, Oct 16, 2009 at 2:02 PM, Bob Schell wrote: > Thanks again for the quick reply.  How did my config also imply http over > 443? > > On Fri, Oct 16, 2009 at 11:51 AM, Eric Covener wrote: >> >> On Fri, Oct 16, 2009 at 1:48 PM, Bob Schell wrote: >> > However, then, within the application I am

Re: [us...@httpd] Apache 2 initgroups alert, Max OS X, abnormal exit in error log

2009-10-16 Thread Scott Haneda
I am bumping this one, since it saw no action at all. Should I just file a bug report? The only things that have changed since my OP, is I have found more references to this in google, dating back many year, and found the section on the source code that returns the error. I do not see h

Re: [us...@httpd] Apache config assessment

2009-10-16 Thread J. Greenlees
Andre Rodrigues wrote: Hi jaqui, My virtualhost config: ServerName portal-des DocumentRoot /srv/www/portal-des HostnameLookups Off UseCanonicalName Off ServerSignature Off

Re: [us...@httpd] Incorrect $_SERVER['SERVER_PORT'] Returned

2009-10-16 Thread Bob Schell
Thanks again Eric. Once I moved the SSL virtual host within SSL.CONF, that did the trick and everything worked as expected. Much appreciated. On Fri, Oct 16, 2009 at 12:16 PM, Eric Covener wrote: > On Fri, Oct 16, 2009 at 2:02 PM, Bob Schell wrote: > > Thanks again for the quick reply. How d