Re: Logging begrenzen

2008-01-18 Thread Rainer Sokoll
On Fri, Jan 18, 2008 at 09:11:10AM +0100, Petra Humann wrote: Ich vermute der Fehler lag daran, dass ein php-File Daten aus einem File abrufen wollte, welches gerade von einem anderen Programm geschrieben wurde. Gibt es bei Apache eine Direktive - um die Größe eines Logfiles zu

AW: Logging begrenzen

2008-01-18 Thread Neps, Frank
Hallo Petra, zum einen gibt es je nach Linux die Geschichte mit logrotate, kennst Du vermutlich. Kennst Du (speziell bei Apache den Befehl rotatelogs2 (beim Apache 1.x ohne die Zahl 2 hinten)? Kannst Dir ja mal die man-page anschauen, ob Dir das weiterhilft. Gruß, Frank

Re: Logging begrenzen

2008-01-18 Thread Petra Humann
Aber wenn der Fehler vom PHP kam: PHP hat sein eigenes error reporting. Danke. Gefährliche Standardeinstellungen! http://de.php.net/manual/de/ref.errorfunc.php log_errors_max_len Viele Grüße. Petra Humann -- Mail:[EMAIL PROTECTED] WWW: http://wwwtcs.inf.tu-dresden.de/~humann/

Re: Logging begrenzen

2008-01-18 Thread Petra Humann
Gibt es bei Apache eine Direktive - um die Größe eines Logfiles zu begrenzen, - oder um die Anzahl der Logeinträge pro Request zu begrenzen, - oder um die Loggingrate pro Zeiteinheit zu begrenzen? Aber wenn der Fehler vom PHP kam: PHP hat sein eigenes error reporting. Habe gerade wieder den

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Krist van Besien
On Jan 18, 2008 6:48 PM, Mandy Singh [EMAIL PROTECTED] wrote: Thanks ascs. This is a good explanation. The only other question that partially remains unanswered is that if I run apacheN on port 80 (and access my site as http://mysite.com) and run apacheN+1 on port 8080 (and access site as

[EMAIL PROTECTED] RE: [SPAM] - Re: [EMAIL PROTECTED] Multiple Instances of Apache - Email found in subject

2008-01-18 Thread jmacaranas
Do a port translation... J From: Mandy Singh [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 12:48 PM To: users@httpd.apache.org Subject: [SPAM] - Re: [EMAIL PROTECTED] Multiple Instances of Apache - Email found in subject Thanks ascs. This is a good explanation. The only other

RE: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Axel-Stephane SMORGRAV
You can have as many instances of Apache as you wish on a Unix box. On Windows, I do not know but I suppose you can. Just like two Vhosts, two servers cannot bind the same IP/port combo. What I do is that I make a server root for each instance of Apache. In that server root I create the

Re: [EMAIL PROTECTED] Fedora 8 apache php has strange issue for Segmentation fault

2008-01-18 Thread Zhen Zhou
Sorry, now this issue could be closed. I miss a step that create cacti database. ;-) Anyway, thanks a lot, Zhou Zhen On Jan 15, 2008 12:15 PM, Res [EMAIL PROTECTED] wrote: Go ask Fedora, they bastardise most things they put in their distro so they should help you fix it :) On Tue, 15 Jan

Re: [EMAIL PROTECTED] apache configuration for svn repositories and websvn

2008-01-18 Thread Administrator Web Possibilities
Thanks for the ideas... I still haven't been able to do exactly what I want. I have evolved the idea somewhat and found a potential solution (using AliasMatch) but I still don't know exactly how to configure it. I've compromised my original idea by having WebSVN located at the URL /browse but I'm

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Dragon
Mandy Singh wrote: Thanks ascs. This is a good explanation. The only other question that partially remains unanswered is that if I run apacheN on port 80 (and access my site as http://mysite.comhttp://mysite.com) and run apacheN+1 on port 8080 (and access site as

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Krist van Besien
On Jan 18, 2008 3:22 PM, Mandy Singh [EMAIL PROTECTED] wrote: Hi Everyone, I would like to know the experts thoughts on having multiple instances of apache on the same box. Suppose I run an app off an instance of apache, then using VHosts add 2-3 diff mini sites to it. If due to some

Re: [EMAIL PROTECTED] DocumentRoot cannot be domain protected?

2008-01-18 Thread Krist van Besien
On Jan 17, 2008 8:42 PM, Liz Kim [EMAIL PROTECTED] wrote: Is there a special way of domain/IP protecting the DocumentRoot directory? All I am trying to do is: order allow,deny allow from all deny from MY_IP_ADDRESS_HERE When this is put under any other directory, it successfully denies me

[EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Mandy Singh
Hi Everyone, I would like to know the experts thoughts on having multiple instances of apache on the same box. Suppose I run an app off an instance of apache, then using VHosts add 2-3 diff mini sites to it. If due to some reason one of the app causes apache to get hung, all my apps become

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Mandy Singh
Thank you Kris for a quick reply. However, if my other apache's are dependant on a master apache (which has it's own app running) and was the cause of failure at time because of which I want other instances, then I am still dependant on the master (troublesome) one - right? Also, if master was

[EMAIL PROTECTED] .htaccess file not read

2008-01-18 Thread Joe
Running Apache 2.2 on Debian sid. In my httpd.conf I have the following: AccessFileName .htaccess AllowOverride All In my web root I have a .htaccess file with a simple rewrite rule but nothing gets rewritten If I cut paste the rewrite rule into a Directory section in httpd.conf then the

[EMAIL PROTECTED] Access forbidden

2008-01-18 Thread Chris Arnold
Hello all! Using apache 2.2.3 on SLES10/OES2. I am trying to use trace watch logging app on our sites. I follow the instructions at the trace watch site to install the php scripts and when trying to access the install script from my browser, i get a 403 access forbidden error. The directory i

Re: [EMAIL PROTECTED] .htaccess file not read

2008-01-18 Thread Krist van Besien
On Jan 18, 2008 5:25 PM, Joe [EMAIL PROTECTED] wrote: Running Apache 2.2 on Debian sid. In my httpd.conf I have the following: AccessFileName .htaccess AllowOverride All In my web root I have a .htaccess file with a simple rewrite rule but nothing gets rewritten If I cut paste the

Re: [EMAIL PROTECTED] Looking for suggestions for URL redirection

2008-01-18 Thread Michael McGlothlin
I'd suggest using RewriteCond's in Apache to check the request headers for the right behavior and to deny if not right. Hi there, I hope that someone might have an idea or suggestion to help me here. I have a web application running on Linux in Apache 2, php5. The application manages a

RE: [EMAIL PROTECTED] Looking for suggestions for URL redirection

2008-01-18 Thread Myles Wakeham
Thank you for this suggestion. I think I can see a way of doing it with mod_rewrite. Much appreciated. Myles -Original Message- From: Michael McGlothlin [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 3:37 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Looking

[EMAIL PROTECTED] Looking for suggestions for URL redirection

2008-01-18 Thread Myles Wakeham
Hi there, I hope that someone might have an idea or suggestion to help me here. I have a web application running on Linux in Apache 2, php5. The application manages a media database that is accessed by subscription. The content is served off separate Apache servers - some are located in

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Michael Clark
Mandy Singh wrote: The only other question that partially remains unanswered is that if I run apacheN on port 80 (and access my site as http://mysite.com) and run apacheN+1 on port 8080 (and access site as http://mysecondsite.com:8080) - what can i do special to access

RE: [EMAIL PROTECTED] RE: [SPAM] - Re: [EMAIL PROTECTED] Multiple Instances of Apache - Email found in subject

2008-01-18 Thread jmacaranas
Hmm... with sum assumptions.. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, January 18, 2008 12:56 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] RE: [SPAM] - Re: [EMAIL PROTECTED] Multiple Instances of Apache - Email found in subject Do a port translation...

Re: [EMAIL PROTECTED] Multiple Instances of Apache

2008-01-18 Thread Mandy Singh
Thanks ascs. This is a good explanation. The only other question that partially remains unanswered is that if I run apacheN on port 80 (and access my site as http://mysite.com) and run apacheN+1 on port 8080 (and access site as http://mysecondsite.com:8080) - what can i do special to access