Re: Apache startet nicht, keine Fehlermeldungen

2006-10-12 Thread Ren� Thiel
Arne Heizmann schrieb:
 Seit heute weigert sich Apache, zu starten. Es gibt keine
 Fehlermeldungen. Die Datei error.log ist leer. access.log auch.

Schau doch mal in die Ereignisanzeige:
%SystemRoot%\system32\eventvwr.msc
unter Anwendungsprotokoll.


Gruß
René Thiel (Rennkuckuck)
mailto:[EMAIL PROTECTED]
--
http://rennkuckuck.de - Die Rumänien-Seiten
http://rtol.de - Dynamische Webseiten mit PHP, mySQL und CSS





--
Apache HTTP Server Mailing List users-de 
  unsubscribe-Anfragen an [EMAIL PROTECTED]
   sonstige Anfragen an [EMAIL PROTECTED]
--



Re: [EMAIL PROTECTED] CGI receives SIGTERM

2006-10-12 Thread Steve Swift
As far as I know Apache doesn't send Sigterm to a running CGI. This has nothing to do with the Timeout directive.A couple of weeks ago I asked the opposite question: How can I timeout a CGI that is hung/looping? and the answer I got, from trusted sources was that it cannot be done with Apache alone, but would require an external monitor.
Something else on your system is doing this.On 11/10/06, Nguyen, Nguyen Vu [EMAIL PROTECTED]
 wrote:Hi guys,As far as I know the Timeout directive does control the amount of time a CGI
has before receiving a SIGTERM. However my CGI still receives a SIGTERMafter what appears to be a random amount of time that is much less than whatI have set in the Timeout directive. The client side still has the
connection to the CGI when it receives the SIGTERM. So I'm wondering underwhat other circumstances does apache send SIGTERM to a CGI? Any help is verymuch appreciated.Thanks.-
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 PROTECTED]  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]-- Steve Swift
http://www.swiftys.org.uk


Re: [EMAIL PROTECTED] Fixing Localhost on a Mac

2006-10-12 Thread Steve Swift
Out of the box Apache will display one of the index.html* files in the directory pointed to by the DocumentRoot directive in the https.conf configuration file. I say one of the index.html* files because it comes with a plethora of languages defined.
On 12/10/06, David Blomstrom [EMAIL PROTECTED] wrote:
I hired someone to install and configure Apache, PHP, MySQL and phpMyAdmin on my new MacBook Pro and set up a virtual host that I could use as a guide. It's kinda sorta working, but there are some major problems. For example, he installed phpMyAdmin inside one of my websites, and 
http://localhost displays the home page of that same website.Anyway, it seems like localhost is a logical place to start fixing things, but I'm confused. Can someone tell me what file would normally be displayed at 
http://localhost on a Mac (I thought it was Apache's welcome page) and what I need to do to make it display
 there?I moved phpMyAdmin to /Users/MyName/Sites, where my websites are stored. After I get localhost figured out, I'd like to set it up to display at either 
http://localhost/phpMyAdmin or http://phpMyAdminThanks.
-- Steve Swifthttp://www.swiftys.org.uk


[EMAIL PROTECTED] connector from apache/tomcat to Webspher

2006-10-12 Thread Maurizio_Salviato

Does anybody know how to redirect an application request from a
Apache/tomcat frontend to a websphere?
Thanks.

Maurizio Salviato
Servizio Supporto Sistemi
Integrazione Sistemi  Office Automation Gruppo PAM s.p.a.
(041-5496-226 fax.041-5496-296
* [EMAIL PROTECTED]


-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] cgi-bin woes

2006-10-12 Thread Thom Hehl
It appears that you are correct. I've been doing some research on this 
computer and things are a mess! I will be to work straightening them out.


Thanks so much for all the help from everyone.

Joshua Slive wrote:

On 10/11/06, Thom Hehl [EMAIL PROTECTED] wrote:


I checked the logs and there is literally nothing in them. I stopped
httpd, blew away everything in the logs directory, restarted httpd and
re-created the 404 and there is not a single file in the logs directory.
Nada!


As Owen mentions, this is very suspicious.  It probably indicates that
the http server that you are connecting to with your browser is not
the same one that you are configuring.  Either you have more than one
http server running on the machine, or the URL that you think maps to
that machine really maps to another machine.

Joshua.

-
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 PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
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 PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] old game - method POST not allowed when using SSL client certs

2006-10-12 Thread masro

Hi List,

i do an update from Apache 2.0.54 to 2.0.59, now i've the following problem:

The following VHOST configuration dosent work, when i use POST requests 
within the secured directory


VirtualHost *:443
   ServerName xgames.org
   DocumentRoot /htdocs/
   SSLEngine On
   SSLCertificateFile conf/cert/server.crt
   SSLCertificateKeyFile conf/cert/server.key
   SSLCACertificateFile conf/cert/ca-bundle.cer
   SSLVerifyDepth 3
   SSLOptions +StdEnvVars +OptRenegotiate +ExportCertData
   SSLVerifyClient optional
   Directory /htdocs/secure
   SSLVerifyClient require
   /Directory
/VirtualHost

Got errors like:
[Thu Oct 12 11:09:32 2006] [error] SSL Re-negotiation in conjunction 
with POST method not supported! hint: try SSLOptions +OptRenegotiate


When i use the following configuration it work's. I've to use 
SSLVerifyClient none instead of SSLVerifyClient optional, may it be 
a bug or a feature, possibly im only to stupid, please tell me if i'm a 
dump fool ;-)


VirtualHost *:443
   ServerName xgames.org
   DocumentRoot /htdocs/
   SSLEngine On
   SSLCertificateFile conf/cert/server.crt
   SSLCertificateKeyFile conf/cert/server.key
   SSLCACertificateFile conf/cert/ca-bundle.cer
   SSLVerifyDepth 3
   SSLOptions +StdEnvVars +OptRenegotiate +ExportCertData
   SSLVerifyClient none
   Directory /htdocs/secure
   SSLVerifyClient require
   /Directory
/VirtualHost

Why i can't use SSLVerifyClient optional ?

regards
Christian Gottschalch



-
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 PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Please help on Apache Modules

2006-10-12 Thread Devireddy, Nagendra Reddy (STSD)
 Hi,

An application that I am working on has dependency on some Apache
modules. I
downloaded and compiled the Apache HTTP server 2.0.59.

The Application has some dependency on the Apache Modules. In httpd.conf
the
following lines are there:

LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule dav_module modules/mod_dav.so
LoadModule info_module modules/mod_info.so
LoadModule mime_magic_module modules/mod_mime_magic.so

From where can I get latest Apache Modules for HP-UX (PA-RISC) platform.

Regards,

Nagendra

-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] Please help on Apache Modules

2006-10-12 Thread Boyle Owen
 -Original Message-
 From: Devireddy, Nagendra Reddy (STSD) [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, October 12, 2006 1:12 PM
 To: users@httpd.apache.org
 Subject: [EMAIL PROTECTED] Please help on Apache Modules
 
  Hi,
 
 An application that I am working on has dependency on some Apache
 modules. I
 downloaded and compiled the Apache HTTP server 2.0.59.
 
 The Application has some dependency on the Apache Modules. In 
 httpd.conf
 the
 following lines are there:
 
 LoadModule proxy_module modules/mod_proxy.so
 LoadModule proxy_connect_module modules/mod_proxy_connect.so
 LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
 LoadModule proxy_http_module modules/mod_proxy_http.so
 LoadModule dav_module modules/mod_dav.so
 LoadModule info_module modules/mod_info.so
 LoadModule mime_magic_module modules/mod_mime_magic.so
 
 From where can I get latest Apache Modules for HP-UX 
 (PA-RISC) platform.

They came with the distro - you just need to enable them at compile
time. See http://httpd.apache.org/docs/2.0/install.html#configure

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 

 
 Regards,
 
 Nagendra
 
 -
 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 PROTECTED]
   from the digest: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]

 
 
This message is for the named person's use only. It may contain confidential, 
proprietary or legally privileged information. No confidentiality or privilege 
is waived or lost by any mistransmission. If you receive this message in error, 
please notify the sender urgently and then immediately delete the message and 
any copies of it from your system. Please also immediately destroy any 
hardcopies of the message. You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. The sender's company reserves the right to monitor all e-mail 
communications through their networks. Any views expressed in this message are 
those of the individual sender, except where the message states otherwise and 
the sender is authorised to state them to be the views of the sender's company.

-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] not uploading at full speed

2006-10-12 Thread Chris Ackford

yeh i know what u mean lol

chris
- Original Message - 
From: Jeff Mohler [EMAIL PROTECTED]

To: users@httpd.apache.org
Sent: Tuesday, October 10, 2006 9:48 PM
Subject: Re: [EMAIL PROTECTED] not uploading at full speed



Depends what your upload speed is..and like all networking scenarios
where nothing is guaranteed, we'll see

On 10/11/06, Chris Ackford [EMAIL PROTECTED] wrote:

a ok well as you can tell im running it from my house internet and im
only 15 so how about a roung of allouse lol so rele i dont have any money 
to

buy E1 anyway i am upgrading to 8 MB/s soon do you think that will be
better ?

chris
- Original Message -
From: Jeff Mohler [EMAIL PROTECTED]
To: users@httpd.apache.org
Sent: Tuesday, October 10, 2006 8:41 PM
Subject: Re: [EMAIL PROTECTED] not uploading at full speed


 Your european equal to a T1 in the US.


 On 10/11/06, Chris Ackford [EMAIL PROTECTED] wrote:
 whats that ?
 - Original Message -
 From: Jeff Mohler [EMAIL PROTECTED]
 To: users@httpd.apache.org
 Sent: Tuesday, October 10, 2006 7:44 PM
 Subject: Re: [EMAIL PROTECTED] not uploading at full speed


  Purchase an E1.
 
  On 10/11/06, Chris Ackford [EMAIL PROTECTED] wrote:
 
 
  oh ok what can i do about that ?
 
  - Original Message -
  From: Steve Swift
  To: users@httpd.apache.org
 
  Sent: Tuesday, October 10, 2006 11:30 AM
  Subject: Re: [EMAIL PROTECTED] not uploading at full speed
 
  ADSL upload speeds are in BITS/Sec so my 288KB/s is about 28.8K 
  bytes

  per
  second, allowing 8bits per byte and overhead of the TCP/IP protocol
  packaging.
  An upload speed reported as 237 KB/s has a maximum transmission 
  speed

  of
  roughly 23.7 thousand characters per second.  You're getting about
  half
  of
  that, which might imply two transfers running concurrently or
  congestion
  in
  your local loop (your exchange in other words).
 
 
  On 10/10/06, Boyle Owen [EMAIL PROTECTED] wrote:
-Original Message-
From: Chris Ackford [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 10, 2006 9:40 PM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] not uploading at full speed
   
how comes the max my users can get is 14kb/s that 1 person
using the server i am currently using 2.2MB Broadband running
at about 237 KB/S upload look here for total specs
http://www.speedtest.net/result/49345028.png any reason
  why
my users can get max 14 kb/s ?
  
   Lots of reasons... very few would have anything to do with 
   apache.

  
   To determine if apache *is* responsible, add localhost to the 
   list

   of
   aliases and try downloading via localhost (obviously, you need to 
   do

   this on the server). If it's fast, it ain't apache.
  
   Apache usually just hands the data on to TCP/IP to deliver and
   doesn't
   care how fast it ships...
  
   Rgds,
   Owen Boyle
   Disclaimer: Any disclaimer attached to this message may be 
   ignored.

  
   
chris
   
  
  
   This message is for the named person's use only. It may contain
  confidential, proprietary or legally privileged information. No
  confidentiality or privilege is waived or lost by any 
  mistransmission.

  If
  you receive this message in error, please notify the sender 
  urgently

  and
  then immediately delete the message and any copies of it from your
  system.
  Please also immediately destroy any hardcopies of the message. You
  must
  not,
  directly or indirectly, use, disclose, distribute, print, or copy 
  any

  part
  of this message if you are not the intended recipient. The sender's
  company
  reserves the right to monitor all e-mail communications through 
  their

  networks. Any views expressed in this message are those of the
  individual
  sender, except where the message states otherwise and the sender is
  authorised to state them to be the views of the sender's company.
  
  
  -
   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 PROTECTED]
 from the digest:
  [EMAIL PROTECTED]
   For additional commands, e-mail: [EMAIL PROTECTED]
  
  
 
 
 
  --
  Steve Swift
  http://www.swiftys.org.uk
 
  -
  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 PROTECTED]
   from the digest: [EMAIL PROTECTED]
  For additional commands, e-mail: [EMAIL PROTECTED]
 


 -
 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 PROTECTED]
   from the digest: [EMAIL PROTECTED]
 For 

[EMAIL PROTECTED] Error: The Listener Thread Didn't Exit

2006-10-12 Thread Sean Lo
To whom it may concern,

Whenever I try to start Apache with MPM worker, I got lots of 'the listener 
thread didn't exit' error message. Anything wrong with my configuration?

Thanks,


Sean
---
Below is the configuration and ErrorLog

ServerLimit 80
ThreadLimit 25
StartServers 40
MaxClients 2000
MaxSpareThreads 1000
MinSpareThreads 250
ThreadsPerChild 25

[Thu Oct 12 09:36:25 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Thu Oct 12 09:36:25 2006] [notice] LDAP: SSL support unavailable
[Thu Oct 12 09:36:25 2006] [notice] Digest: generating secret for digest 
authentication ...
[Thu Oct 12 09:36:25 2006] [notice] Digest: done
[Thu Oct 12 09:36:25 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Thu Oct 12 09:36:25 2006] [notice] LDAP: SSL support unavailable
[Thu Oct 12 09:36:26 2006] [notice] HP-UX_Apache-based_Web_Server/2.0.45 
(Unix) DAV/2 configured -- resuming normal operations
[Thu Oct 12 09:36:35 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:36 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:37 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:38 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:39 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:40 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:41 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:42 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:43 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:44 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:45 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:46 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:47 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:48 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:49 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:50 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:51 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:52 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:53 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:54 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:55 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:56 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:57 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:58 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:36:59 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:00 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:01 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:02 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:03 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:04 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:05 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:07 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:08 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:09 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:10 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:11 2006] [crit] the listener thread didn't exit
[Thu Oct 12 09:37:12 2006] [crit] the listener thread didn't exit
[Thu Oct 12 10:47:39 2006] [warn] child process 15091 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15092 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15093 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15095 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15096 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15098 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15100 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [warn] child process 15101 still did not exit, 
sending a SIGTERM
[Thu Oct 12 10:47:39 2006] [notice] caught SIGTERM, shutting down


-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] old game - method POST not allowed when using SSL client certs

2006-10-12 Thread Serge Dubrouski

Yes, but the patch is unoficial and it didn't make into source tree
for 2.0.XX. So I decided not to use it and upgraded to 2.2.3.

On 10/12/06, masro [EMAIL PROTECTED] wrote:

there wasn patch for 2.0.54, thers also an BugReport at
http://issues.apache.org/bugzilla/show_bug.cgi?id=12355, i know

k will try the patch for 2.0.54 which hopefully works with 2.0.59, cant
update to 2.2.0 because of some third-party modules

regards

Serge Dubrouski schrieb:
 The only way is upgrading to 2.2.3. It's a well known bug in 2.0.XX
 that was fixed in 2.2.X

 On 10/12/06, masro [EMAIL PROTECTED] wrote:
 Hi List,

 i do an update from Apache 2.0.54 to 2.0.59, now i've the following
 problem:

 The following VHOST configuration dosent work, when i use POST requests
 within the secured directory

 VirtualHost *:443
ServerName xgames.org
DocumentRoot /htdocs/
SSLEngine On
SSLCertificateFile conf/cert/server.crt
SSLCertificateKeyFile conf/cert/server.key
SSLCACertificateFile conf/cert/ca-bundle.cer
SSLVerifyDepth 3
SSLOptions +StdEnvVars +OptRenegotiate +ExportCertData
SSLVerifyClient optional
Directory /htdocs/secure
SSLVerifyClient require
/Directory
 /VirtualHost

 Got errors like:
 [Thu Oct 12 11:09:32 2006] [error] SSL Re-negotiation in conjunction
 with POST method not supported! hint: try SSLOptions +OptRenegotiate

 When i use the following configuration it work's. I've to use
 SSLVerifyClient none instead of SSLVerifyClient optional, may it be
 a bug or a feature, possibly im only to stupid, please tell me if i'm a
 dump fool ;-)

 VirtualHost *:443
ServerName xgames.org
DocumentRoot /htdocs/
SSLEngine On
SSLCertificateFile conf/cert/server.crt
SSLCertificateKeyFile conf/cert/server.key
SSLCACertificateFile conf/cert/ca-bundle.cer
SSLVerifyDepth 3
SSLOptions +StdEnvVars +OptRenegotiate +ExportCertData
SSLVerifyClient none
Directory /htdocs/secure
SSLVerifyClient require
/Directory
 /VirtualHost

 Why i can't use SSLVerifyClient optional ?

 regards
 Christian Gottschalch



 -
 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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



 -
 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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]



-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
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 PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Cannot Start HTTPD Service

2006-10-12 Thread Bjorgen T. Eatinger



Whenever I try 
starting the httpd service, I get the following error:

[EMAIL PROTECTED] service httpd startStarting httpd: 
/usr/sbin/httpd: error while loading shared libraries: libldap-2.2.so.7: cannot 
open shared object file: No such file or directory [FAILED]
I've obtained 
and installed the very latest openldap (v2.3) and it did NOT install this 
library. I have no idea why Apache needs this library in the first 
place.

Any ideas as 
to how I can fix this? We are dead in the water not being able to start 
the server.

Thank you so much, 
Bjorgen T. Eatinger


[EMAIL PROTECTED] Rewriting depending on access through subdomain

2006-10-12 Thread Hermann Kleister
Hello,
I have a shared hosting setup with one domain example.org and a 
subdomain test.example.org. The document root of example.org is
/home/user1/example.org/ and the document root for
test.example.org lies within this, in
/home/user/example.org/test/. A document in
/home/user/example.org/test/, e.g. foo.html can thus be reached
as http://example.org/test/foo.html and
http://test.example.org/foo.html. Now I want to rewrite documents
under test/ using mod_rewrite but this leads to problems depending
how e.g. foo.html is accessed.

For the first case

RewriteBase /test/
Rewrite ^(.*)\.html$ $1-new.html [R=301, L]

leads to success, for the second it needs to be

RewriteBase /
Rewrite ^(.*)\.html$ $1-new.html [R=301, L]

How can I solve this for both cases?
Note I dont have access to httpd.conf.

Thanks in advance.

H. Kleister








___ 
Der frühe Vogel fängt den Wurm. Hier gelangen Sie zum neuen Yahoo! Mail: 
http://mail.yahoo.de

-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Cannot Start HTTPD Service

2006-10-12 Thread Nick Kew
On Thursday 12 October 2006 17:31, Bjorgen T. Eatinger wrote:
 Whenever I try starting the httpd service, I get the following error:

 [EMAIL PROTECTED] service httpd start
 Starting httpd: /usr/sbin/httpd: error while loading shared libraries:
 libldap-2.2.so.7: cannot open shared object file: No such file or
 directory [FAILED]

So presumably you compiled it (either all of apache or one or
more module you're loading) against that library.

 I've obtained and installed the very latest openldap (v2.3) and it did
 NOT install this library.  I have no idea why Apache needs this library
 in the first place.

 Any ideas as to how I can fix this?  We are dead in the water not being
 able to start the server.

Are you using ldap?  If so, just compile apr and apache using the library 
versions you do have installed.  If not, just don't load the ldap modules.
Or if necessary recompile without ldap support.

-- 
Nick Kew

Application Development with Apache - the Apache Modules Book
http://www.prenhallprofessional.com/title/0132409674

-
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 PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] How to Obtain Modules Independently?

2006-10-12 Thread ganesh ganesh
Hi Jay, From apache you can get mod_imap alone this can be done using --enable-imap. But it seems the cyrus imap has to be installed individually. Will update you shortly on this.!
GANESHOn 10/12/06, Bjorgen T. Eatinger [EMAIL PROTECTED] wrote:
Hello Ivan,I've thought of that, but unfortunately, there are too many dependenciesalready, and you cannot --force an uninstall of an RPM package.However, you CAN force an INSTALL of a package, but I cannot find a 
v2.2Apache RPM.I could force an install of the 2.0 version that comes withthe Fedora Core 5 distribution, and then use Yum to update it, but Yummay think that version 2.2 is installed and not update.
Also, this will not fix the fax that I do not have the mod_imap.somodule, as this module is NOT an Apache core module.Where do I get modules by themselves?Thank you, Jay-Original Message-
From: Ivan Barrera A. [mailto:[EMAIL PROTECTED]]Sent: Wednesday, October 11, 2006 6:39 PMTo: users@httpd.apache.orgSubject: Re: [EMAIL PROTECTED]
] How to Obtain Modules Independently? I have spent many hours trying to figure out where I can get these modules.I even downloaded the very latest Apache tar ball and installed it (2.3) and ran through the process of installing it on my
 machine at a different place than standard, and I still cannot find those modules.What gives here? So the long and short of it is, where can I get these modules I need and simply install them on my machine so that Apache will run again?
 This is extremely frustrating.Any help is so much appreciated!I think the right way, would be to uninstall apache using RPM, and then, re install it using rpm.Something like
rpm -e httpdand then reinstall it via yum, or with rpm's Sincerely, Jay www.edenaudio.com http://www.edenaudio.com
-The official User-To-User support forum of the Apache HTTP ServerProject.See URL:
http://httpd.apache.org/userslist.html for more info.To unsubscribe, e-mail: [EMAIL PROTECTED]  from the digest: 
[EMAIL PROTECTED]For additional commands, e-mail: [EMAIL PROTECTED]--This message has been scanned for viruses and dangerous content by
MailScanner, and is believed to be clean.-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 PROTECTED]  from the digest: 
[EMAIL PROTECTED]For additional commands, e-mail: [EMAIL PROTECTED]-- Regards,
GANESH.