RE: [EMAIL PROTECTED] content filtering by access

2005-12-09 Thread Wagner, Aaron
Check the $PHP_AUTH_USER variable. I think that once you go thru the restricted area and log on, you AUTH is carried in the browser thru unrestricted areas too. Check by looking at phpinfo() on a unrestricted page after you go thru the restricted area and logon. Thanx Aaron N Wagner Monitori

RE: [EMAIL PROTECTED] Apache2 not running

2005-12-12 Thread Wagner, Aaron
> -Original Message- > From: Elizabeth Datig [mailto:[EMAIL PROTECTED] > Sent: Monday, December 12, 2005 11:55 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Apache2 not running > > I previously installed Apache 2 and it was working fine, > apparently the > Adware virus go

RE: [EMAIL PROTECTED] Apache2 not running

2005-12-12 Thread Wagner, Aaron
to start > automatically. Sorry about that, I'm new to this and am > venturing out into > unknown territory. Do you know if there is a source to show > you exactly what > information is supposed to be in the configuration file? > > > >From: "Wagner, Aaron

RE: [EMAIL PROTECTED] Apache2 not running

2005-12-12 Thread Wagner, Aaron
pache is in not > there. What should I do? Thanks for your help and responding > so quickly. > > > >From: "Wagner, Aaron" <[EMAIL PROTECTED]> > >Reply-To: users@httpd.apache.org > >To: users@httpd.apache.org > >Subject: RE: [E

RE: [EMAIL PROTECTED] Unable to access networked drives

2005-12-14 Thread Wagner, Aaron
we have an alias in production that points to another server/share.    Alias /MRODocs "//crprchfnp05/e2e monitoring east/"   make sure the share gives rights to the id that Apache is using to run, ie domain\id Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center O

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Wagner, Aaron
preg_replace($pattern, $replacement, $string);   preg_replace("/\n\r *\n\r/","\n\r", $string )   \n\r *\n\r - for a windowz maching and they may be in the wrong order.   Your basically replacing all double linefeeds with a single linefeed. Replace the \n\r with whatever your OS uses as a

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Wagner, Aaron
That's nice but it doesn't fix the blank lines it just skips them in the file parse. I think he wants to clean the file. If the file gets big, he could take a performance hit skipping multiple lines. Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.51

RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File

2005-12-27 Thread Wagner, Aaron
n [mailto:[EMAIL PROTECTED] > Sent: Tuesday, December 27, 2005 5:05 PM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Delete Blank Lines In A Text File > > Quoting "Wagner, Aaron" <[EMAIL PROTECTED]>: > > > That's nice but it doesn'

RE: [EMAIL PROTECTED] Newbe needs help passing form data

2005-12-29 Thread Wagner, Aaron
> -Original Message- > From: Arnie & Georgia Stender [mailto:[EMAIL PROTECTED] > Sent: Thursday, December 29, 2005 12:22 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Newbe needs help passing form data > > Hello, > I am setting up my own Internet presence starting with

RE: [EMAIL PROTECTED] allow certain IP

2006-01-10 Thread Wagner, Aaron
http://httpd.apache.org/docs/2.0/mod/mod_access.html#allow Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: JC [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 10, 2006 14:20 > To: Apache Users > Sub

RE: [EMAIL PROTECTED] How to make webservice global

2006-01-31 Thread Wagner, Aaron
From: mohan devanoor [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 31, 2006 07:30To: users@httpd.apache.orgSubject: [EMAIL PROTECTED] How to make webservice global hello all, i am working on Apache 2.0.55 is there any way to make my webservice global i.e it works

RE: [EMAIL PROTECTED] How to rotate the logs in Windows XP?

2006-03-02 Thread Wagner, Aaron
From: PKarthick [mailto:[EMAIL PROTECTED] Sent: Thursday, March 02, 2006 13:39To: users@httpd.apache.orgSubject: [EMAIL PROTECTED] How to rotate the logs in Windows XP? Hi all, I need to have separate log files on daily basis...for every 24 hours new log file should b

RE: [EMAIL PROTECTED] Connection refused, most times.

2006-03-21 Thread Wagner, Aaron
Look at 'server-status' and see how many workers you have available. Maybe you also have a bunch of 'zombie' threads that need to killed. URL: http://servername/server-status You may need to enable the server-status in the httpd.conf file. ##

RE: [EMAIL PROTECTED] FW: apache for windows child respawn behaviour

2006-03-24 Thread Wagner, Aaron
> -Original Message- > From: George Herlin [mailto:[EMAIL PROTECTED] > Sent: Friday, March 24, 2006 03:40 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] FW: apache for windows child respawn behaviour > > Hello, > > My organisation has just rolled out a new site, built by IBM

RE: [EMAIL PROTECTED] Apache and Active Directory

2006-04-06 Thread Wagner, Aaron
I'm working on an LDAP auth perl module for my apache2 Server thru mod_perl2. Appears that it may do the job. Apache2-AuthNetLDAP-0.01 on CPAN Aaron > -Original Message- > From: Daniel Silva [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 06, 2006 12:22 > To: users@httpd.apache.org >

RE: [EMAIL PROTECTED] Re: Re: ASP on Apache

2006-05-05 Thread Wagner, Aaron
If you feel up to it, you can also install mod_perl and use Apache::ASP   http://www.apache-asp.org/index.html     Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations   "SELECT * FROM life     ORDER BY important_stuff ASC"   From: a nn [ma

RE: [EMAIL PROTECTED] Auth Apache 2 agaisnt AD Groups

2006-05-24 Thread Wagner, Aaron
> -Original Message- > From: Aaron Axelsen [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 24, 2006 15:28 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Auth Apache 2 agaisnt AD Groups > > Is it possible to authentication apache2 agaisnt Active Directory 2003 > groups? I've

[users@httpd] apache2 compile on Win32

2005-05-20 Thread Wagner, Aaron
Does anyone know of a good place to take me thru compiling Apache2 from source for Win platforms? I've read the apache site's info but I've never compiled, I need one with baby steps. aaron - The official User-To-User support

RE: [users@httpd] Config apache with php

2005-05-23 Thread Wagner, Aaron
Try LoadModule php_module C:/php-4.3.11-Win32/sapi/php4apache2.dll (you may also need quotes around the path) Or move the php4apache2.dll to the modules folder and use this (this is what's in my httpd.conf) LoadModule php4_module modules/php4apache2.dll aaron > -Original Message- > F

RE: [users@httpd] Estrange Redirection

2005-05-25 Thread Wagner, Aaron
> -Original Message- > From: Fernando Remus Nagel [mailto:[EMAIL PROTECTED] > Sent: Wednesday, May 25, 2005 3:24 PM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] Estrange Redirection > > > Uhhh...I think We'll need a bit more information, like: > > What operating sy

RE: [users@httpd] Large file upload problem!

2005-06-06 Thread Wagner, Aaron
Have you checked this? http://httpd.apache.org/docs/mod/core.html#limitrequestbody Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Harish Sundaram [mailto:[EMAIL PROTECTED] > Sent: Monday, June 06, 2005

RE: [users@httpd] mod_perl trouble

2005-06-22 Thread Wagner, Aaron
> -Original Message- > From: Jan Eden [mailto:[EMAIL PROTECTED] > Sent: Wednesday, June 22, 2005 7:33 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] mod_perl trouble > > Hi, > > I just installed mod_perl 2.0.1 as a DSO for Apache 2.0.53. > When trying the minimal example

RE: [users@httpd] Is my assumption right about DocumentRoot?

2005-07-05 Thread Wagner, Aaron
Doc Root is a relative starting 'root'. All the directories under doc root are still using the correct directory structure. The only exception is to use 'alias' (search on the apache documentation for explanation) Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Ope

RE: [users@httpd] OS 10048

2005-07-05 Thread Wagner, Aaron
Go into 'Services' in 'control panel/administrative tools' and stop service and set service to 'manual' start. It is prob set to 'automatic' Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Alf C Stockto

RE: [users@httpd] Serving large files over slow links - weirdness

2005-07-11 Thread Wagner, Aaron
Check this documentation out, default is 300 seconds. http://httpd.apache.org/docs-2.0/mod/core.html#timeout Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Mark Morley [mailto:[EMAIL PROTECTED] > Sent:

RE: [EMAIL PROTECTED] Regular Expression Question

2005-07-27 Thread Wagner, Aaron
(^(/cgi-bin/mycgiscript$)) Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Chase [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 27, 2005 8:59 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECT

FW: [EMAIL PROTECTED] Regular Expression Question

2005-07-27 Thread Wagner, Aaron
[^/cgi-bin/mycgiscript$] Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Wagner, Aaron [mailto:[EMAIL PROTECTED] > Sent: Wednesday, July 27, 2005 9:37 PM > To: users@httpd.apache.org &

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Wagner, Aaron
You probably have not installed apache as a service yet.  Go into you services and see if it's listed.  If not, go to your Apache/bin folder and type "apache -k install" and that will install is as a service and then run "apache -k start"       Thanx Aaron N Wagner Monitoring Systems and Ne

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Wagner, Aaron
services and Apache is there and it's set to start up automatically.  Which it isn't. Suzy"Wagner, Aaron" <[EMAIL PROTECTED]> wrote: You probably have not installed apache as a service yet.  Go into you services and see if it's listed.  If no

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Wagner, Aaron
t recognised as an internal or external command, operable > program or batch file." I've tried all kinds of combinations of spaces, > speech marks and capitals, etc.> > Also I only have two log files within Apache: Access and Error and both > of these are e

RE: [EMAIL PROTECTED] Apache2 on Win XP

2005-08-12 Thread Wagner, Aaron
I'm not sure what you mean exactly by 'security' but if you mean authentication There are not many authentication modules that will work on windowz. I had to end up using mod_auth_dbm, an old flat files auth mod. The windows version also runs under just 2 threads. All the responses are unde

RE: [EMAIL PROTECTED] Apache checks authentication twice

2005-09-12 Thread Wagner, Aaron
If the AuthName of the excel directrory is different that the Authname of the original page, then it will prompt. It thinks it's a different realm. Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Stefan-

RE: [EMAIL PROTECTED] Starting Apache

2005-09-27 Thread Wagner, Aaron
> -Original Message- > From: Neil Conduit [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 27, 2005 12:58 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Starting Apache > > My Apache 2 server starts automatically whenever I start my > computer. Is it > possible to get

RE: [EMAIL PROTECTED] rotatelogs on Windows

2005-10-05 Thread Wagner, Aaron
This is a line from my production server httpd.conf. It rotates daily. CustomLog "|D:/WebCore2/Apache2/bin/rotatelogs.exe D:/WebCore2/Apache2/logs/history/commonLog.%Y-%m-%d-%H_%M_%S.log 86400 -300" combined Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations

RE: [EMAIL PROTECTED] rotatelogs on Windows

2005-10-05 Thread Wagner, Aaron
> One more thing...when I did this, the hour, minute and seconds > always show as 00_00_00, as in access_2005_10_04_00_00_00.log. Is > that what you guys are seeing too? I guess the time doesn't start > when you start the server, it treats it as if it's the beginning of > the day? I didn't

RE: [EMAIL PROTECTED] permission denied only on some directories

2005-10-28 Thread Wagner, Aaron
Look for 'Options -Indexes'(turn off directory listing) Or 'Options +Indexes'(turn on directory listing) in your httpd.conf Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMA

RE: [EMAIL PROTECTED] About Access Log

2005-11-18 Thread Wagner, Aaron
From: TK [mailto:[EMAIL PROTECTED] Sent: Friday, November 18, 2005 2:03 PMTo: users@httpd.apache.orgSubject: [EMAIL PROTECTED] About Access Log Hi, I'm running Apache 2.0 on Windows XP SP2. I have 2 questions about Apache access log.   1. How could I get a fine-gr

RE: [EMAIL PROTECTED] About Access Log

2005-11-18 Thread Wagner, Aaron
ated, what is the name of the log file and where is it stored?   BTW, what does the '-300' mean?     On 11/18/05, Wagner, Aaron <[EMAIL PROTECTED]> wrote: From: TK [mailto:[EMAIL PROTECTED]] Sent: Friday, November

RE: [EMAIL PROTECTED] Configuring to listen on more than one port

2005-11-21 Thread Wagner, Aaron
Yes, just put another listen on the line below that one Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center Operations 804.515.6298 > -Original Message- > From: Samuel [mailto:[EMAIL PROTECTED] > Sent: Monday, November 21, 2005 3:26 PM > To: users@httpd.apache.

RE: [EMAIL PROTECTED] Odd .htaccess problem

2005-12-05 Thread Wagner, Aaron
Are the realms the same for both login prompts? Can you remove the .htaccess from /www ? I'm not sure but I thing the blank htaccess file in /www will still try to 'find out' who you are even if there is no 'required' parameter set. Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO