Re: [EMAIL PROTECTED] Warning when starting Apache2

2007-11-10 Thread Robert A. Rawlinson
Thanks. I did but there are none. I have also done something that has caused Apache2 to stop recognizing perl scripts. Now it asks what I want to do and offers to edit the perl script. I had this working and now I am back to the problems I had in the beginning. It is very discouraging. Bob R J

Re: [EMAIL PROTECTED] Warning when starting Apache2

2007-11-10 Thread Joshua Slive
On Nov 9, 2007 5:45 PM, Robert Rawlinson <[EMAIL PROTECTED]> wrote: > When I start Apache2 I get this warning: > rcapache2 start > Starting httpd2 (prefork) [Fri Nov 09 14:52:25 2007] [warn] The > ScriptAlias directive in /etc/apache2/httpd.conf at line 215 will > probably never match because it ov

Re: [EMAIL PROTECTED] Warning when starting Apache2

2007-11-10 Thread Robert Rawlinson
How would I tell? I did not add one. Bob R [EMAIL PROTECTED] wrote: Hi, May be you have a file included somewhere before the directive with the same directive, which could be the one overlaped. - Ighal Quoting Robert Rawlinson <[EMAIL PROTECTED]>: When I start Apache2 I get this warning

Re: [EMAIL PROTECTED] Warning when starting Apache2

2007-11-09 Thread ighal . micha
Hi, May be you have a file included somewhere before the directive with the same directive, which could be the one overlaped. - Ighal Quoting Robert Rawlinson <[EMAIL PROTECTED]>: When I start Apache2 I get this warning: rcapache2 start Starting httpd2 (prefork) [Fri Nov 09 14:52:25 2007]

[EMAIL PROTECTED] Warning when starting Apache2

2007-11-09 Thread Robert Rawlinson
When I start Apache2 I get this warning: rcapache2 start Starting httpd2 (prefork) [Fri Nov 09 14:52:25 2007] [warn] The ScriptAlias directive in /etc/apache2/httpd.conf at line 215 will probably never match because it overlaps an earlier ScriptAlias. I have searched and I can not find any oth

Re: [EMAIL PROTECTED] "WARNING: APR not found" error (but I compiled with '--with-apr')

2006-12-21 Thread thomas Armstrong
Yep, Sander, it works! ./configure --with-apxs=/usr/local/httpd/bin/apxs --with-apr=/usr/local/apr-httpd/bin/apr-config --with-apr-util=/usr/local/apr-util-httpd/bin/apu-config On 12/21/06, Sander Temme <[EMAIL PROTECTED]> wrote: On Dec 21, 2006, at 4:57 AM, thomas Armstrong wrote: > I compil

Re: [EMAIL PROTECTED] "WARNING: APR not found" error (but I compiled with '--with-apr')

2006-12-21 Thread Sander Temme
On Dec 21, 2006, at 4:57 AM, thomas Armstrong wrote: I compiled from sources Apache 2.0.59 with APR 0.9.13 ./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all --with-apr=/usr/local/apr-httpd/bin/apr-config --with-apr-util=/usr/local/apr-util-httpd/bin/apu-config It works ok

[EMAIL PROTECTED] "WARNING: APR not found" error (but I compiled with '--with-apr')

2006-12-21 Thread thomas Armstrong
Hi. I compiled from sources Apache 2.0.59 with APR 0.9.13 ./configure --prefix=/usr/local/httpd --enable-so --enable-modules=all --with-apr=/usr/local/apr-httpd/bin/apr-config --with-apr-util=/usr/local/apr-util-httpd/bin/apu-config It works ok aparently, but I'm now trying to compile subversion

Re: [EMAIL PROTECTED] WARNING

2006-08-03 Thread Joshua Slive
On 8/3/06, Evan Platt <[EMAIL PROTECTED]> wrote: At 09:02 AM 8/3/2006, you wrote: >I hate to do this, but I have tried numerous times to unsubscribe in >the way I am supposed to. Thus, everything I keep receiving from >this list I now regard as spam. If someone doesn't unsubscribe me, I >am going

Re: [EMAIL PROTECTED] WARNING

2006-08-03 Thread Evan Platt
At 09:02 AM 8/3/2006, you wrote: I hate to do this, but I have tried numerous times to unsubscribe in the way I am supposed to. Thus, everything I keep receiving from this list I now regard as spam. If someone doesn't unsubscribe me, I am going to spam the list. [EMAIL PROTECTED] Yeah, that

Re: [EMAIL PROTECTED] WARNING

2006-08-03 Thread Neil A. Hillard
Hi, Emmanuel E wrote: > i think it would be worthwhile to provide a web interface to the > subscribe/unsubscribe feature on the list like mailman. > > F vE: have you checked if the unsubscribe email is landing in your junk > folder or something? > > F vE wrote: >> I hate to do this, but I have t

Re: [EMAIL PROTECTED] WARNING

2006-08-03 Thread Emmanuel E
i think it would be worthwhile to provide a web interface to the subscribe/unsubscribe feature on the list like mailman. F vE: have you checked if the unsubscribe email is landing in your junk folder or something? F vE wrote: I hate to do this, but I have tried numerous times to unsubscribe i

[EMAIL PROTECTED] WARNING

2006-08-03 Thread F vE
I hate to do this, but I have tried numerous times to unsubscribe in the way I am supposed to. Thus, everything I keep receiving from this list I now regard as spam. If someone doesn't unsubscribe me, I am going to spam the list. [EMAIL PROTECTED] _

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
Victor, Thank you for your response. It got me thinking in the right paradigm to solve the problem. My main httpd.conf file had an Include line for including other .conf files. The problem was that the syntax of this line ended in *.conf, so all of the .conf files in the specified path wer

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Victor Trac
Is the error: [warn] NameVirtualHost aaa.bbb.ccc.ddd:80 has no VirtualHosts or [warn] NameVirtualHost *:80 has no VirtualHosts If you have a directive, but the error is actually "[warn] NameVirtualHost *:80 has no VirtualHosts", then you have an extra "NameVirtualHost *:80" somewhere. Do you hav

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
Perhaps the syntax in my .conf file is wrong. Here is a more explicit description of my .conf file. NameVirtualHost aaa.bbb.ccc.ddd:80 #a bunch of stuff that is commented out ServerAdmin [EMAIL PROTECTED] DocumentRoot ibetyouwouldliketoknowthistoo ServerName e.f.com:80 CustomLog

Re: [EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Aleksandar Skodric
Your .conf should contain something like this: # name based virtualhost NameVirtualHost *:80 # default virtualhost if nothing else matches criteria . Basicly, it seems that you have stated NameVitrualHost *:80 but have none virtual host and that's why Apache is complainig. Cheers, Alek

[EMAIL PROTECTED] warning message and virtual hosts

2006-03-09 Thread Jonathan S. Abrams
I am using Apache v2.0.55. In my error log file, I am seeing the following entry. [warn] NameVirtualHost *:80 has no VirtualHosts Now, looking in my .conf file, I do see a line that reads "NameVirtualHost *:80", and it is commented out. However, when I uncommented it, I still received the w

Re: [EMAIL PROTECTED] Warning message on Solaris

2006-02-20 Thread Ganeshh HariHaran
try  lsof -i| grep -w 80 and find which all apache threads is listening on port 80, filter the one which is in question based on name or IP.take the process id from second column of the matching name or IP in question  and kill it.start your apache once again...Pls take caution if you

[EMAIL PROTECTED] Warning message on Solaris

2006-02-20 Thread Tejas Sanghavi
Hi,   I am using Apache 2.0.55 on Solaris 8.   When I try to listen on the port which is already in use, I get the message - "Address already in use: make_sock: could not bind to address ..." on the console as well as in error_log on Linux, Windows, HP-UX. But I am not getting this message on

[EMAIL PROTECTED] Warning messages

2006-02-12 Thread sridhar
Hi, On Windows the few warn messages like "[warn] Limiting internal redirects to very low numbers may cause normal requests to fail." is displayed on console is also logged in error.log file but the behaviour is different in linux the messages are displayed in console but not logged in "error.l

RE: [EMAIL PROTECTED] warning : Failed to enabl\ e the 'httpready' Accept Filter

2005-12-03 Thread Michael S Pallos
: Saturday, December 03, 2005 1:16 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] warning : Failed to enabl\ e the 'httpready' Accept Filter I am proud to say that I have configured, built and installed all the following now: httpd-2.2.0 mod_perl-2.0.2 httpd required me to fir

Re: [EMAIL PROTECTED] warning : Failed to enabl\ e the 'httpready' Accept Filter

2005-12-03 Thread Philip M. Gollucci
Ashtanga Yogi wrote: I am proud to say that I have configured, built and installed all the following now: httpd-2.2.0 mod_perl-2.0.2 httpd required me to first locally build and install apr and apr-util after which I built the main httpd and locally installed it. I then locally installed mod

[EMAIL PROTECTED] warning : Failed to enabl\ e the 'httpready' Accept Filter

2005-12-03 Thread Ashtanga Yogi
I am proud to say that I have configured, built and installed all the following now: httpd-2.2.0 mod_perl-2.0.2 httpd required me to first locally build and install apr and apr-util after which I built the main httpd and locally installed it. I then locally installed mod_perl (but have not put

Re: [EMAIL PROTECTED] Warning: DocumentRoot [htdocs] does not exist

2005-08-30 Thread jagadish gowda
Hi, Sorry, DocumentRoot C:/Apache/htdocs. When I give C:/Apache/htdocs111. Then it will say, the directoryRoot must be a directory. I am working on Windows Platform. Actually I have taken the binary zip file.extracted it, and running it. Thanks, Jagadeesha T --- Joshua Slive <[E

Re: [EMAIL PROTECTED] Warning: DocumentRoot [htdocs] does not exist

2005-08-30 Thread Joshua Slive
On 8/30/05, jagadish gowda <[EMAIL PROTECTED]> wrote: > Hi, >Thanks for the response. >I tried with the full path as given below. >DocumentRoot C:/apahce/htdocs. You have a typo here. > >I have logged in as a Administrator. >I am starting Apache from the Commnadpromt. Is > th

Re: [EMAIL PROTECTED] Warning: DocumentRoot [htdocs] does not exist

2005-08-30 Thread jagadish gowda
Hi, Thanks for the response. I tried with the full path as given below. DocumentRoot C:/apahce/htdocs. I have logged in as a Administrator. I am starting Apache from the Commnadpromt. Is there any way I can run debug so that I would know what is the document root it is taking. Tha

Re: [EMAIL PROTECTED] Warning: DocumentRoot [htdocs] does not exist

2005-08-30 Thread Joshua Slive
On 8/30/05, jagadish gowda <[EMAIL PROTECTED]> wrote: > Hi all, > I am using Apache 2.0.54 in windows. > Whenever I run Apache. it is saying > Warning: DocumentRoot [htdocs] does not exist > Does anybody know the solution. > I have tried with the full path, > DocumentRoot "C:/apache/htdocs"

[EMAIL PROTECTED] Warning: DocumentRoot [htdocs] does not exist

2005-08-30 Thread jagadish gowda
Hi all, I am using Apache 2.0.54 in windows. Whenever I run Apache. it is saying Warning: DocumentRoot [htdocs] does not exist Does anybody know the solution. I have tried with the full path, DocumentRoot "C:/apache/htdocs" also DocumentRoot "htdocs" where serverroot is C:/apache. Plea

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Joost de Heer
>> I don't have ssl configured at all on that server, and won't >> be using it. Any ideas why that would be on there? I tried >> searching the apache site, and can't seem to find the answers. > > I would search for 443 in your {server}/conf/httpd.conf file. See what > you need to comment out. Don

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Jody Cleveland
> Any idea what the problem was? Only thing I can figure was a permissions problem. Originally, I copied the directory from one server to another. I checked the permissions, and they seemed fine. But, just for grins, I deleted the directory, created it from scratch, and then it worked. I just copi

Re: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread John Hicks
Jody Cleveland wrote: Ok, I solved it: I renamed the existing directories, created new ones, and copied the data into it. Now, apache starts up fine. Any idea what the problem was? - The official User-To-User support forum

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Jody Cleveland
Ok, I solved it: > I'm running Redhat 4.0 AS server, and I'm trying to get apache running > on it. > > When I try to run service httpd start, I get this error: > # service httpd start > Starting httpd: Warning: DocumentRoot [/var/www/html/wals] does not > exist >

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Jody Cleveland
> Just a suggestion on my part but perhaps doing a apachectl > configtest would yield more information. Syntax OK - jody - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org

Re: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Spike Burkhardt
Jody, Just a suggestion on my part but perhaps doing a apachectl configtest would yield more information. spike Jody Cleveland wrote: Are you trying to start it as root (required for ports like 80 & 443)? Yes, I am. I would search for 443 in your {server}/conf/httpd.conf file.

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Jody Cleveland
> Are you trying to start it as root (required for ports like 80 & 443)? Yes, I am. > I would search for 443 in your {server}/conf/httpd.conf file. > See what you need to comment out. I search for 443, and there are 0 results. > You probably have indexing turned off & also don't have an index

RE: [EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Wick, Daniel
> -Original Message- > From: Jody Cleveland [mailto:[EMAIL PROTECTED] > Sent: Tuesday, August 16, 2005 4:53 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Warning: DocumentRoot does not exist > > Hello, > > I'm running Redhat 4.0 AS server,

[EMAIL PROTECTED] Warning: DocumentRoot does not exist

2005-08-16 Thread Jody Cleveland
Hello, I'm running Redhat 4.0 AS server, and I'm trying to get apache running on it. When I try to run service httpd start, I get this error: # service httpd start Starting httpd: Warning: DocumentRoot [/var/www/html/wals] does not exist