RE: [us...@httpd] Multiple ssh login prompts

2010-01-06 Thread Boyle Owen
-Original Message- From: Patrick Horgan [mailto:phorg...@yahoo.com] Sent: Wednesday, January 06, 2010 6:41 AM To: users@httpd.apache.org Subject: [us...@httpd] Multiple ssh login prompts On a site that I set up on fedora, https://ootbcomp.com, which brings you to a mediawiki

[us...@httpd] Xampp mysql

2010-01-06 Thread Peter Maguire
I'm having another problem with xampp. Everytime I try to start up mysql it says: warning: terminating worker 1 . I have tryed reinstalling xampp but it didn't help. Sent from my iPod - The official User-To-User support

Re: [us...@httpd] Xampp mysql

2010-01-06 Thread Eric Covener
On Wed, Jan 6, 2010 at 4:46 AM, Peter Maguire wormpe...@yahoo.co.uk wrote: I'm having another problem with xampp. Everytime I try to start up mysql it says: warning: terminating worker 1 . I have tryed reinstalling xampp but it didn't help. Off-topic here. -- Eric Covener cove...@gmail.com

Re: [us...@httpd] mod_proxy.c configuration problem for a tomcat6-bridged situation

2010-01-06 Thread Alvise Nicoletti
Eric Covener wrote: On Mon, Jan 4, 2010 at 12:38 PM, Alvise Nicoletti li...@alvisenicoletti.com wrote: That is the configuration that I tryed and it's not working: Proxy * AddDefaultCharset off Order

Re: [us...@httpd] mod_proxy.c configuration problem for a tomcat6-bridged situation

2010-01-06 Thread Eric Covener
On Wed, Jan 6, 2010 at 6:04 AM, Alvise Nicoletti li...@alvisenicoletti.com wrote: I would like to restrict access to everything-but-mywebsite like the example: IfModule mod_proxy.c ProxyRequests Off Proxy * AddDefaultCharset off Order

[us...@httpd] apache 2.2.3 centos 5.4 httpd.worker seg fault

2010-01-06 Thread Krzysztof Serwin
I would like to say hello to you all and say as an introduction that I am really rarely using mailing lists but this time I have run out of other options. Shortly, I am using httpd 2.2.3 running on Centos 5.4 which causes some problems as soon as soon as I switch it to use Worker MPM by editing

Re: [us...@httpd] mod_proxy.c configuration problem for a tomcat6-bridged situation

2010-01-06 Thread Alvise Nicoletti
Eric Covener wrote: On Wed, Jan 6, 2010 at 6:04 AM, Alvise Nicoletti li...@alvisenicoletti.com wrote: I would like to restrict access to everything-but-mywebsite like the example: IfModule mod_proxy.c ProxyRequests Off Proxy * AddDefaultCharset off

Re: [us...@httpd] ETag (entity tag) response header not being added to server side include's

2010-01-06 Thread Eric Covener
On Tue, Jan 5, 2010 at 8:03 PM, Geoff Millikan gmilli...@t1shopper.com wrote: [The Apache documentation] should more clearly state that it generates ETags for static files only. The resource in question is not really a static file. I imagine there's nothing I can do to help get the 2.2 docs

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Reese
On 05-Jan-10 02:52, Boyle Owen wrote: I am restructuring a Web site and need to move a number of files to different subdirectories. The files have an embedded date code in [filename]DDMMYY.ext format, I was hoping to hook the YY.ext portion to redirect ...05.html files to the 2005/

RE: [us...@httpd] ETag (entity tag) response header not being added to server side include's

2010-01-06 Thread Geoff Millikan
Thanks. Apache 2.2 rocks and it's still rocking the free world after 15 years this February. Here's to another 15 years - keep up the good work Apache Project! smime.p7s Description: S/MIME cryptographic signature

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Reese
On 05-Jan-10 17:43, Igor Cicimov wrote: You can try this RewriteEngine On RewriteRule (.*)([0-9]{2}).html$ /20$2/$1$2.html [R,L] I wrote it on the go and haven't tested it. It might be done in different way probably but give this one a go and will see what can we do if it is not working.

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Reese
On 06-Jan-10 13:16, Reese wrote: On 05-Jan-10 17:43, Igor Cicimov wrote: You can try this RewriteEngine On RewriteRule (.*)([0-9]{2}).html$ /20$2/$1$2.html [R,L] I'm also not sure what would prevent this from becoming endlessly recursive, since the domain/2005/file013105.html file may still

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Patrick Horgan
Reese wrote: On 06-Jan-10 13:16, Reese wrote: On 05-Jan-10 17:43, Igor Cicimov wrote: You can try this RewriteEngine On RewriteRule (.*)([0-9]{2}).html$ /20$2/$1$2.html [R,L] I'm also not sure what would prevent this from becoming endlessly recursive, since the domain/2005/file013105.html

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Reese
On 06-Jan-10 15:50, Patrick Horgan wrote: So adding RewriteCond %{HTTP_HOST} domain\.com is needed, yes? RewriteRule (.*)(0[0-9]).html$ /20$2/$1$2.html [R,L] Hmmm. So adding more specificity, for years 2005-2009 and only for the affected domain, this should work: RewriteCond

Re: [us...@httpd] mod_proxy.c configuration problem for a tomcat6-bridged situation

2010-01-06 Thread Alvise Nicoletti
Alvise Nicoletti wrote: Eric Covener wrote: On Wed, Jan 6, 2010 at 6:04 AM, Alvise Nicoletti li...@alvisenicoletti.com wrote: I would like to restrict access to everything-but-mywebsite like the example: IfModule mod_proxy.c ProxyRequests Off Proxy *

Re: [us...@httpd] Mod_Rewrite voodoo

2010-01-06 Thread Igor Cicimov
One more thing, it will work for this century only since 20xx is hard coded in the rule. Thought should mention it although it's not going to be your problem in 2100 haha On Thu, Jan 7, 2010 at 7:58 AM, Reese howel...@inkworkswell.com wrote: On 06-Jan-10 15:50, Patrick Horgan wrote: So

[us...@httpd] Re: Mod_Rewrite voodoo

2010-01-06 Thread Jonesy
On Thu, 7 Jan 2010 08:23:12 +1100, Igor Cicimov wrote: One more thing, it will work for this century only since 20xx is hard coded in the rule. Thought should mention it although it's not going to be your problem in 2100 haha Actually, it will. 2100 is the last year in *this* century of the

Re: [us...@httpd] Re: Mod_Rewrite voodoo

2010-01-06 Thread Res
On Thu, 7 Jan 2010, Jonesy wrote: On Thu, 7 Jan 2010 08:23:12 +1100, Igor Cicimov wrote: One more thing, it will work for this century only since 20xx is hard coded in the rule. Thought should mention it although it's not going to be your problem in 2100 haha Actually, it will. 2100 is the

[us...@httpd] Trouble installing on windows 7

2010-01-06 Thread William Foster
Hi, I am trying to install Apache HTTP Server v2.2.14 on a machine recently upgraded to Windows 7. Apache worked fine under Windows XP, but when I go to install this in Windows 7, the install script appears to hang. In the install wizard dialog it states: Installing Apache HTTP Server 2.2.14

RE: [us...@httpd] Trouble installing on windows 7

2010-01-06 Thread Wesley Stupar
Hi William, Sorry to say, I cannot help on this one. But for what little solace it is, I believe that Windows 7 is a sham and an affront to the user community. It is simply an attempt to gather more money into the Microsoft coffers. Have you considered Linux? Wes Stupar -Original

Re: [us...@httpd] Trouble installing on windows 7

2010-01-06 Thread William Foster
Hi Wes, Well it was a free copy, so no money to Microsoft on this one. I figured out the issue. There was a hidden dialog underneath the install shield dialog asking if I wanted to grant permission. Once I discovered that and granted permission it installed fine. Now I'm facing another issue.

Re: [us...@httpd] Trouble installing on windows 7

2010-01-06 Thread William Foster
Hello, I figured it out, the issue was that Windows 7 firewall was blocking port 80 by default. I added a rule to allow port 80 and now it works correctly. Thanks. -William On Wed, Jan 6, 2010 at 8:07 PM, William Foster willia...@gmail.com wrote: Hi Wes, Well it was a free copy, so no

[us...@httpd] Apache on IA64

2010-01-06 Thread Pravesh Rai
Hi All, Has anybody tried to port Apache (2.2.6 onwards) to IA64 setup ? If yes, what would be the major precautions needs to be taken in that case ? Thank, Pravesh - The official User-To-User support forum of the Apache HTTP