RE: [EMAIL PROTECTED] separate logs for aliases

2006-05-29 Thread Boyle Owen
-Original Message- From: Om [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 5:53 AM To: users@httpd.apache.org Cc: [EMAIL PROTECTED] Subject: Re: [EMAIL PROTECTED] separate logs for aliases Hi Shai, you can cross check once again in the apache2.2.2 manual. Check the

[EMAIL PROTECTED] Apache 2.0 Unix restrict to single child process...

2006-05-29 Thread Chappidi, Sudhakar
Hello, Can anyone help me ? In Apache 2.0 How to restrict to single child process in Unix. Is there any configuration in httpd.conf for doing this. I have tried giving the ServerLimit directive to one, but it doesn't work. INFO: My Application is Iniitialized using the HTTP request and this

RE: [EMAIL PROTECTED] Apache 2.0 Unix restrict to single child process...

2006-05-29 Thread Boyle Owen
-Original Message- From: Chappidi, Sudhakar [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 8:33 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Apache 2.0 Unix restrict to single child process... Hello, Can anyone help me ? In Apache 2.0 How to restrict to

[EMAIL PROTECTED] Running vhosts with php and virtual users

2006-05-29 Thread Mattias Segerdahl
I'm experiencing difficulties using apache in the following environment. Is there any good solution that would solve the security problems? Server version: Apache/2.2.2 Server built: May 14 2006 18:14:53 PHP 5.1.4 (cli) (built: May 5 2006 19:14:55) Virtual users are stored under

RE: [EMAIL PROTECTED] ProxyPass and reverse

2006-05-29 Thread Axel-Stéphane SMORGRAV
It is really hard to understand exactly what your problem is because your description is so sketchy. My understanding is that when you request http://pippo/ntop/showPlugins.html?icmpWatch, the backend server issues a redirect to http://localhost:3000/plugins/icmpWatch which you expect the

RE: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Axel-Stéphane SMORGRAV
Seems almost right to me. If you want the querystring appended, you need to use the QSA option. The L is not necessary since the redirect is immediate. RewriteRule ^/directoryone/directorytwo/(mypage\.php)$ /$1 [R=301,QSA] -ascs -Original Message- From: Robert Ionescu [mailto:[EMAIL

Re: [EMAIL PROTECTED] Apache Symbols (charset?)

2006-05-29 Thread Rob | Pro-Servers.Co.Uk
Ah, I have solved this problem via commenting out the 'AddDefaultCharset UTF-8' directive. :D Rob - Original Message - From: Rob | Pro-Servers.Co.Uk To: users@httpd.apache.org Sent: Monday, May 29, 2006 10:57 AM Subject: [EMAIL PROTECTED] Apache Symbols

Re: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Mariusz Handke
This wouldn't work (RewriteCond) since $2 and $3 are not known at this stage of rewriting process yet, but I'm still working on it Krist van Besien wrote: On 5/26/06, Mariusz Handke [EMAIL PROTECTED] wrote: Thanks for suggestion, that's what I will do, but I still think there should be other

RE: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Axel-Stéphane SMORGRAV
Your statement is wrong. The saves $2 and $3 are definitely known at that stage of the rewriting process. The RewriteRule pattern is the first to be evaluated. Check the mod_rewrite manual page. You can also test it for yourself with RewriteLogLevel 3 -ascs -Original Message- From:

Re: [EMAIL PROTECTED] ProxyPass and reverse

2006-05-29 Thread Giovanni
On 10:13, lunedì 29 maggio 2006, Axel-Stéphane SMORGRAV wrote: It is really hard to understand exactly what your problem is because your description is so sketchy. My understanding is that when you request http://pippo/ntop/showPlugins.html?icmpWatch, the backend server issues a redirect to

[EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Barberi Gabriele
Hi all, I need to implement a reverse proxy for export a local network server with WebSphere on the public web server. I'm currently running apache Hi all, I'm currently running apache 1.3.27 on a SuSE 8.2 and I need to use Websphere 5.1 from web. Websphere server is running on local network. I

[EMAIL PROTECTED] Apache 2.2 Fedora Core 4 RPMs

2006-05-29 Thread Marc Perkel
Is there any Apache 2.2 RPMs for Fedora Core 4? - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To unsubscribe, e-mail: [EMAIL

Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Richard de Vries
Doesn't WebSphere run on a specific port like 9080. (and not 80). Make sure to include that port in your forward statement. Thus: ProxyPass /websphere http://websphere-address:websphere-port/WS Does the reverse proxy run on the WebSphere server, or a server external to the websphere server?

[EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Josh Sephton
Hi, I'm trying to configure Apache to respond for requests to the external address of my LAN. Currently I have a Belkin wireless router into which my internet comes in through. I then have several Windows computers which connect to that router. One of these boxes has Apache2 installed on it. I

Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Richard de Vries
You will need to configure Apache to listen to the IP address on that specific machine behind your router; which is most likely a private address. i.e. 192.168.x.x or 10.10.x.x Then, in your router, go to port forwarding and tell it to forward all incoming request for port 80, to the private IP

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
Axel-Stéphane SMORGRAV wrote: The L is not necessary since the redirect is immediate. Rules below would be tested, but they wouldn't match unless the pattern starts with scheme + :// + url-path. Only other status codes than 301, 302, 303 will be forced immediately (eg. R=404, since apache

Re: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Robert Ionescu
Mariusz Handke wrote: This wouldn't work (RewriteCond) since $2 and $3 are not known at this stage of rewriting process yet, but I'm still working on it - That won't work. You can't use back references from mod_rewrite in a RegEx. - They're known, as Axel-Stéphane already said. - You must

RE: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Axel-Stéphane SMORGRAV
Just did some testing. The following should work Location /test RewriteEngine On RewriteCond%{HTTP_REFERRER} !$2$3 RewriteRule ^/(.*)/([^/]*\.)(html|htm|php)$ /test-redir.php?page=/test/$2$3 [R,L] /Location If referer does not contain $2/$3,

RE: [EMAIL PROTECTED] rewrite rule

2006-05-29 Thread Axel-Stéphane SMORGRAV
Could you give some explanations wrt. your RewriteCond ? I have never seen this kind of expressions before. -ascs -Original Message- From: Robert Ionescu [mailto:[EMAIL PROTECTED] Sent: Monday, May 29, 2006 7:55 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] rewrite rule

[EMAIL PROTECTED] htaccess

2006-05-29 Thread Mididoc Productions
hi, we have in the htaccess file a treatment for errors: ErrorDocument 403 http://www.ourdomain.com ErrorDocument 404 http://www.ourdomain.com ErrorDocument 500 http://www.ourdomain.com this is for redirecting any user to the mainpage, when he is searching a file which does not exist. this

Re: [EMAIL PROTECTED] mod_rewrite

2006-05-29 Thread Robert Ionescu
Axel-Stéphane SMORGRAV wrote: Rules below would be tested, but they wouldn't match unless the pattern starts with scheme + :// + url-path. unless the RewriteCond pattern starts with /. The above matches just fine. I meant this hypothetical case RewriteRule ^/a /b [R] RewriteRule ^/b /c

Re: [EMAIL PROTECTED] Running vhosts with php and virtual users

2006-05-29 Thread Joshua Slive
On 5/29/06, Mattias Segerdahl [EMAIL PROTECTED] wrote: I'm experiencing difficulties using apache in the following environment. Is there any good solution that would solve the security problems? Server version: Apache/2.2.2 Server built: May 14 2006 18:14:53 PHP 5.1.4 (cli) (built: May 5

SV: [EMAIL PROTECTED] Running vhosts with php and virtual users

2006-05-29 Thread Mattias Segerdahl
Running php as cgi would still involve unique uid's, and I've got about 30k+ virtual users. -Ursprungligt meddelande- Från: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] För Joshua Slive Skickat: den 29 maj 2006 22:47 Till: users@httpd.apache.org Ämne: Re: [EMAIL PROTECTED] Running vhosts

[EMAIL PROTECTED] pdf problems?

2006-05-29 Thread Bill Angus
Hi All: After upgrading to WIN32 APACHE 2.0.58 (binaries courtesy of Hunter's site - !! THANKS HUNTER !! ). we hada customer notethat .PDF files onour site cannot be displayed in their IE browser. We discovered that if we turn off MOD_DEFLATE, PDF's can be opened again. The eviro is

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

2006-05-29 Thread Sean Conner
It was thus said that the Great Sergey Tsalkov once stated: Hey guys.. My Apache was hit with a DoS attack, where the attacker was opening connections to the server and not sending any data. It quickly reached the MaxClients limit and prevented any further connections to the server. For

[EMAIL PROTECTED] htaccess ANY HELP PLEASE ?

2006-05-29 Thread Mididoc Productions
sorry to bug you again, we have in the htaccess file a treatment for errors: ErrorDocument 403 http://www.ourdomain.com ErrorDocument 404 http://www.ourdomain.com ErrorDocument 500 http://www.ourdomain.com this is for redirecting any user to the mainpage, when he is searching a file which does

[EMAIL PROTECTED] Gallery version 2.0.2

2006-05-29 Thread Cindy O'Leary
I am a complete novice at this, but my professional has been unable to help me with a problem I've had with my gallery page. I used to be able to download pictures to albums and now I can't. I get an error message that reads: Can anyone help me with this?

Re: [EMAIL PROTECTED] Configuring Apache behind a wireless router

2006-05-29 Thread Emmanuel E
apache says that cos 201.x.x.15 is not available on your local windows machine. its only available on the wireless router. tell apache to just listen on port 80 (no need to specify an ip): Listen 80 and then configure your router to forward connections on port 80 to the machine which is

[EMAIL PROTECTED] Getting Apache to use PHP under Window XP

2006-05-29 Thread Martyn Griffin
Overview: I am trying to change the httpd.conf file to add the LoadModule command for PHP V5.1.4. The instructions indicate to make a reference to the .dll file (not an .SO file). Here is the line that was added: LoadModule php5_module modules/php5apache2.dll The dll file has been moved to

Re: [EMAIL PROTECTED] Getting Apache to use PHP under Window XP

2006-05-29 Thread WDaquell
Have you tried putting PHP.ini in your Windows folder? I had to do that before PHP would work on my system. -Wraith Martyn Griffin wrote: Overview: I am trying to change the httpd.conf file to add the LoadModule command for PHP V5.1.4. The instructions indicate to make a reference to the

Re: Re: [EMAIL PROTECTED] Apache reverse proxy and IBM websphere

2006-05-29 Thread Gabriele Barberi
I already include the port but it doesn't work. The reverse proxy runs on an external server Regards Gabriele Doesn't WebSphere run on a specific port like 9080. (and not 80). Make sure to include that port in your forward statement. Thus: ProxyPass /websphere