[us...@httpd] apache2-2.2.3-16.18 https connection takes 30s

2009-01-11 Thread Ashok Raja R
Hi, I am running a Apache 2.2.3-16.18 on a SUSE ES-10-SP2. Everything was fine till the time. But all of the sudden https connection is taking too much time, approximately 30 seconds, which is too much for the client. I have not done any changes to the apache configuration. Everything was wor

Re: [us...@httpd] Troubleshooting Apache Out of Memory Errors

2009-01-11 Thread Plutocrat
Just so you know the conclusion of the story I started looking at ways to reduce the memory footprint of Joomla. I've currently enabled its inbuilt cache, which seems to have done the trick. I'll run it like this for a while and let you know what happens, but it seems to have been OK for

[us...@httpd] _default_ vs *, when do they differ?

2009-01-11 Thread Eric Covener
Does anyone have a concrete example where the "_default_" and "*" arguments to NameVirtualHost/VirtualHost behave different from eachother? http://httpd.apache.org/docs/2.2/mod/core.html#virtualhost http://httpd.apache.org/docs/2.2/vhosts/details.html -- Eric Covener cove...@gmail.com -

Re: [us...@httpd] rewrite rule ideas needed..

2009-01-11 Thread Bruce Hyatt
On Fri, Jan 9, 2009 at 6:26 AM, Anders Norrbring wrote: > Hi. > I'm looking at a setup with 6 different ServerAlias in the same single > VirtualHost, and I want a rewrite rule that can rewrite calls missing the > 'www' part to add that. > > Looking at example pages I see that this works for a sing

Re: [us...@httpd] mod_rewrite, passing GET variables forward

2009-01-11 Thread Kae Verens
Bob Ionescu wrote: 2009/1/11 Kae Verens : I want to rewrite /foo?bar=red to /index.php?page=foo&bar=red I try it with this, but it does not work: RewriteRule ^(.*)\?(.*)$ /index.php?page=$1&$2 [L] The query string is not part of the rule-patern as described in the manual. You're lookin

Re: [us...@httpd] mod_rewrite, passing GET variables forward

2009-01-11 Thread Bob Ionescu
2009/1/11 Kae Verens : > I want to rewrite /foo?bar=red to /index.php?page=foo&bar=red > I try it with this, but it does not work: > RewriteRule ^(.*)\?(.*)$ /index.php?page=$1&$2 [L] The query string is not part of the rule-patern as described in the manual. You're looking for the QSA flag to app

[us...@httpd] mod_rewrite, passing GET variables forward

2009-01-11 Thread Kae Verens
hi all, I want to rewrite /foo?bar=red to /index.php?page=foo&bar=red I try it with this, but it does not work: RewriteRule ^(.*)\?(.*)$ /index.php?page=$1&$2 [L] however, if I instead use an ampersand: RewriteRule ^(.*)\&(.*)$ /index.php?page=$1&$2 [L] I can rewrite /foo&bar=red to /index.php?p