Re: [EMAIL PROTECTED] apache 1.3.28 not starting up - no errors??

2005-12-16 Thread Ken Murach

Thank you Christian for your help/information.

Actually come to find out, problem was with php module. PHP was being 
called from main config file and from users config file. Once I commented 
out users LoadModule php line from his config file, I was able to start up 
apache 1.3.28, but thanks again for the useful information. I will save 
your e-mail response for future references.


Best wishes and thanks again
Kenny

At 11:23 PM 12/16/2005 +0100, you wrote:

Hi there,

You can try to run it directly from the command line without the
init-script. Just call the httpd directly. That way you see
him exit.

Then make sure you are looking into the right error.log.
It does not need to be the one in your config file. Your httpd
has a hardcoded error log, that is used until it can access the
error.log defined in the config. Check the documentation
of your distribution

And finally you can start the command with "strace" or your
local dialect's tool of choice. That way you will see the
error killing your process.

hope this helps,

Christian


On Tue, Dec 13, 2005 at 01:11:08PM -0500, Ken Murach wrote:
> Hi everyone,
>
> I have a user who starts up apache 1.3.28 by running a script and giving
> the script the argument of start
>
> This was working, but now the user is unable to get this to start up
> anymore??
>
> Even as root, I am unable to start this up and there are no errors being
> recorded in the error log file??
>
> Says apache is starting and pauses for a few seconds before returning me
> back to a prompt but when I do a ps -ef | grep httpd | grep dev, it 
doesn't

> show up??
>
> Here is what I'm doing:
>
> itis-appdev # pwd
> /etc/init.d
>
> itis-appdev # ./httpd-dev stop
> kill: 17557: no such process
>
> itis-appdev # ./httpd-dev start
> Starting the DEV instance of Apache web server
>
> itis-appdev # ps -ef|grep httpd | grep dev
> root 21398 1  0   Dec 02 ?0:00
> /usr/local/apache_wds_dev/bin/httpd -f
> /www/dev/wdsphproot/apache-conf/httpd.co
>   nobody 21403 21398  0   Dec 02 ?3:28
> /usr/local/apache_wds_dev/bin/httpd -f
> /www/dev/wdsphproot/apache-conf/httpd.co
>   nobody 21405 21398  0   Dec 02 ?3:37
> /usr/local/apache_wds_dev/bin/httpd -f
> /www/dev/wdsphproot/apache-conf/httpd.co
>   mladan 23178 23172  0   Dec 02 ?0:01
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/stemcell/apache-co
>   mladan 23172 1  0   Dec 02 ?0:00
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/stemcell/apache-co
>vtole  3794 1  0   Nov 28 ?0:00 /usr/local/apache/bin/httpd
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>vtole  3798  3794  0   Nov 28 ?0:02 /usr/local/apache/bin/httpd
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>   mladan 23173 23172  0   Dec 02 ?0:01
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/stemcell/apache-co
>vtole  3795  3794  0   Nov 28 ?0:02 /usr/local/apache/bin/httpd
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>   mladan  5699 1  0   Nov 28 ?0:00
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/harvie/apache-conf
>   mladan  5700  5699  0   Nov 28 ?0:01
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/harvie/apache-conf
>   mladan  5759  5699  0   Nov 28 ?0:01
> /usr/local/apache_dev/bin/httpd -f
> /usr/users/mladan/servers/harvie/apache-conf
>
>
> Here is script that is used to start up this instance of apache:
>
> itis-appdev # cat httpd-dev
> #!/usr/bin/bash
> #
> # Paul Lembo March 2003
> # Start up the Apache DEV web server
>
> case "$1" in
> 'start')
> 
LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/usr/local/include:/usr/local/ssl/include:/usr/local/ssl/lib

> export LD_LIBRARY_PATH
> if [ -x /usr/local/apache_dev/bin/httpd -a -f
> /www/dev/conf/httpd.conf ]; then
> echo "Starting the DEV instance of Apache web server"
> /usr/local/apache_dev/bin/httpd -f /www/dev/conf/httpd.conf
> fi
> ;;
>
> 'stop')
> pid=`cat /www/dev/logs/httpd.pid`
> if [ X = "$pid"X ]; then
> echo "WARNING:  Cannot open pid file, trying ps output"
> pid=`/usr/bin/ps -fu root | grep -v grep | grep apache_dev
> | grep httpd | awk ' { print $2 } ' `
> fi
> if [ X = "$pid"X ]; then
> echo "HTTPD is not running"
> else
> /usr/bin/kill $pid
> fi
> ;;
> 'restart')
> pid=`/usr/bin/ps -fu root | grep -v grep | grep apache_dev | grep
> httpd | awk ' { print $2 } ' `
> if [ X = "$pid"X ]; then
> echo "HTTPD is not running"
> else
> /usr/bin/kill -1 $pid
> fi
> ;;
>
> *)
> echo "Usage: $0 { start | stop | restart }"
> exit 1
> ;;
> esac
> exit 0
>
> Any ideas as to why it says its starting but doesn't and doesn

Re: [EMAIL PROTECTED] apache 1.3.28 not starting up - no errors??

2005-12-16 Thread Christian Folini
Hi there,

You can try to run it directly from the command line without the
init-script. Just call the httpd directly. That way you see
him exit.

Then make sure you are looking into the right error.log.
It does not need to be the one in your config file. Your httpd
has a hardcoded error log, that is used until it can access the
error.log defined in the config. Check the documentation
of your distribution

And finally you can start the command with "strace" or your
local dialect's tool of choice. That way you will see the 
error killing your process.

hope this helps,

Christian


On Tue, Dec 13, 2005 at 01:11:08PM -0500, Ken Murach wrote:
> Hi everyone,
> 
> I have a user who starts up apache 1.3.28 by running a script and giving 
> the script the argument of start
> 
> This was working, but now the user is unable to get this to start up 
> anymore??
> 
> Even as root, I am unable to start this up and there are no errors being 
> recorded in the error log file??
> 
> Says apache is starting and pauses for a few seconds before returning me 
> back to a prompt but when I do a ps -ef | grep httpd | grep dev, it doesn't 
> show up??
> 
> Here is what I'm doing:
> 
> itis-appdev # pwd
> /etc/init.d
> 
> itis-appdev # ./httpd-dev stop
> kill: 17557: no such process
> 
> itis-appdev # ./httpd-dev start
> Starting the DEV instance of Apache web server
> 
> itis-appdev # ps -ef|grep httpd | grep dev
> root 21398 1  0   Dec 02 ?0:00 
> /usr/local/apache_wds_dev/bin/httpd -f 
> /www/dev/wdsphproot/apache-conf/httpd.co
>   nobody 21403 21398  0   Dec 02 ?3:28 
> /usr/local/apache_wds_dev/bin/httpd -f 
> /www/dev/wdsphproot/apache-conf/httpd.co
>   nobody 21405 21398  0   Dec 02 ?3:37 
> /usr/local/apache_wds_dev/bin/httpd -f 
> /www/dev/wdsphproot/apache-conf/httpd.co
>   mladan 23178 23172  0   Dec 02 ?0:01 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/stemcell/apache-co
>   mladan 23172 1  0   Dec 02 ?0:00 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/stemcell/apache-co
>vtole  3794 1  0   Nov 28 ?0:00 /usr/local/apache/bin/httpd 
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>vtole  3798  3794  0   Nov 28 ?0:02 /usr/local/apache/bin/httpd 
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>   mladan 23173 23172  0   Dec 02 ?0:01 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/stemcell/apache-co
>vtole  3795  3794  0   Nov 28 ?0:02 /usr/local/apache/bin/httpd 
> -f /usr/users/vtole/servers/mydev/apache-conf/httpd
>   mladan  5699 1  0   Nov 28 ?0:00 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/harvie/apache-conf
>   mladan  5700  5699  0   Nov 28 ?0:01 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/harvie/apache-conf
>   mladan  5759  5699  0   Nov 28 ?0:01 
> /usr/local/apache_dev/bin/httpd -f 
> /usr/users/mladan/servers/harvie/apache-conf
> 
> 
> Here is script that is used to start up this instance of apache:
> 
> itis-appdev # cat httpd-dev
> #!/usr/bin/bash
> #
> # Paul Lembo March 2003
> # Start up the Apache DEV web server
> 
> case "$1" in
> 'start')
> 
> LD_LIBRARY_PATH=/lib:/usr/lib:/usr/local/lib:/usr/local/include:/usr/local/ssl/include:/usr/local/ssl/lib
> export LD_LIBRARY_PATH
> if [ -x /usr/local/apache_dev/bin/httpd -a -f 
> /www/dev/conf/httpd.conf ]; then
> echo "Starting the DEV instance of Apache web server"
> /usr/local/apache_dev/bin/httpd -f /www/dev/conf/httpd.conf
> fi
> ;;
> 
> 'stop')
> pid=`cat /www/dev/logs/httpd.pid`
> if [ X = "$pid"X ]; then
> echo "WARNING:  Cannot open pid file, trying ps output"
> pid=`/usr/bin/ps -fu root | grep -v grep | grep apache_dev 
> | grep httpd | awk ' { print $2 } ' `
> fi
> if [ X = "$pid"X ]; then
> echo "HTTPD is not running"
> else
> /usr/bin/kill $pid
> fi
> ;;
> 'restart')
> pid=`/usr/bin/ps -fu root | grep -v grep | grep apache_dev | grep 
> httpd | awk ' { print $2 } ' `
> if [ X = "$pid"X ]; then
> echo "HTTPD is not running"
> else
> /usr/bin/kill -1 $pid
> fi
> ;;
> 
> *)
> echo "Usage: $0 { start | stop | restart }"
> exit 1
> ;;
> esac
> exit 0
> 
> Any ideas as to why it says its starting but doesn't and doesn't record any 
> errors in the error_log file??
> 
> Any help is greatly appreciated.
> Thank you
> Kenny
> 
> 
> 
> -
> The official User-To-User support forum of the Apache HTTP Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>   "   from the digest: [EMAIL PROTECTED]
> F

[EMAIL PROTECTED] SSL

2005-12-16 Thread MARG
Hi,

I've compile Apache 2.2.0 with
--with-ssl=/usr/local/ssl --enable-ssl

(i have OpenSSL in /usr/local/ssl)

What are the configuration now needed for SSL to work ?

Googled for it, found many things, but none worked.

Any help would be apreciated.

Warm Regards,
MARG

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] -help

2005-12-16 Thread Steven Pierce

What kind of help are you looking for??  Just -help does not tell the list what
you are looking for.  Do you need help installing, what?  Have you checked out
the DOC's first to see if there is an answer to your question there??

http://httpd.apache.org/docs/



*** REPLY SEPARATOR  ***

On 12/16/2005 at 9:40 AM Randy Grafton wrote:

>-
>The official User-To-User support forum of the Apache HTTP Server Project.
>See 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]
>
>
>
>
>--
>No virus found in this incoming message.
>Checked by AVG Free Edition.
>Version: 7.0.371 / Virus Database: 267.14.1/204 - Release Date: 12/15/2005




-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] -help

2005-12-16 Thread Randy Grafton



-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Vincent Jong
Listing what I did below to apply the patch, so if I made a mistake  
applying it, someone can let me know.


1. downloaded the patch to /home/some-user/temp
2. copied source tarball to /home/some-user/temp and untarred it.
3. cd /home/some-user/temp/httpd-2.2.0/modules/http
4. patch -i /home/some-user/temp/http_request.c.patch http_request.c

I then preceded to configure, make, make install. I started up the new  
apache and saw the "It works!" index page of DocumentRoot and then tried  
to access http://localhost/cgi-bin/test-cgi and the error page still  
renders in HTML markup. The patch didn't work, so I'll file a bug after my  
chiropracter appointment.


Thanks for all the help. =)

Vincent J.

On Fri, 16 Dec 2005 07:17:26 -0800, Joshua Slive <[EMAIL PROTECTED]> wrote:


On 12/16/05, Vincent Jong <[EMAIL PROTECTED]> wrote:

I'm not understanding what you mean. This was a clean install of apache
and after typing make install,
I started up this install's apache. I didn't edit the httpd.conf file.  
All

the ErrorDocument lines that are in
httpd.conf are example lines that are commented out already. So what is
happening is when a user tries to access some cgi script that isn't
configured right, this user gets the 500 Internal Server Error page. The
problem with this page is that it is displayed as HTML code. There's the
additional line of another 500 Internal Server Error occurring when  
trying
to use an ErrorDocument handling the error request. Since I've never,  
ever

configured any kind of customized error documents, I wouldn't even begin
to know where all this error document configuration is. I prefer to use
apache's default configuration and error pages.


(Well, before you were including a bunch of extra errordocuments in
your config via the Include directives at the bottom, but anyway...)

My appologies, you are correct.  I have been able to recreate the
problem.  This may be the same as the following bug:
http://issues.apache.org/bugzilla/show_bug.cgi?id=36090

Try the patch at the bottom of that report.  If that doesn't fix the
problem, please file a new bug report.

Joshua.




--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] ProxyPassReverseCookieDomain

2005-12-16 Thread Axel-Stéphane SMORGRAV
 I believe your ProxyPassReverseCookieDomain is the reverse of what it should be

You should have something like

ProxyPass /blah http://privateserver/
ProxyPassReverse /blah http://privateserver/
ProxyPassReverseCookieDomain .public.domain .private.domain

Forget about ProxyPassReverseCookiePath. You do not seem to need it.

Had you provided a complete trace from LiveHTTPHeaders, or at least the 
headers, we would have been able to provide a more accurate answer. I do 
believe, however, that your problem is with ProxyPassReverseCookieDomain. You 
need to know the value of the Host header the browser sends to publicserver, 
and the entire values of the Cookie headers in the responses from 
privateserver. Then the correct directive should be:

ProxyPassReverseCookieDomain  

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 3:51 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

It seems private server is giving 302 :

Livehttpheaders gives

http/1.x 302 object moved
Server : privateserver httpd version
Content-length:149
Content-type:text/html
Location : https://publicserver
X-powered-by:private server

The only difference between private server direct interrogation and public 
server (when authentification is done) is the 
Fact that GET has no cookie attribute when using public one ... Meanwhile, 
working directly on private server, each request has
Cookie : session-id ... So proxypass works, proxypassreverse works, 
proxypassreversecookie works ...
But browser don't send back a cookie to publicserver as that cookie seems 
'attached' to private server ...

I declared ProxyPassReverseCookieDomain and ProxyPassReverseCookiePath

ProxyPassReverseCookieDomain privateIP publicIP
ProxyPassReverseCookiePath / /

Regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Vincent Jong

Really, I didn't change anything.

I:
1. Stopped httpd
2. Renamed the older install directory from /usr/local/Apache2.2.X to  
/usr/local/Apache2.2.X.old

3. Copied the httpd source tarball to my temp directory.
4. Untarred it and did a cd to the extracted directory.
5. ./configure --prefix=/usr/local/Apache2.2.X \
   --enable-so --enable-mods-shared=all \
   --enable-ssl --with-ssl
6. make
7. make install as root
8. /usr/local/Apach2.2.X/bin/apachectl start

Accessed http://localhost/cgi-bin/test-cgi and the error page rendered in  
HTML code. I didn't make any changes whatsoever to this install's  
httpd.conf file.


Thanks,

Vincent J.

On Fri, 16 Dec 2005 06:49:29 -0800, Joshua Slive <[EMAIL PROTECTED]> wrote:


On 12/16/05, Vincent Jong <[EMAIL PROTECTED]> wrote:

Well, I did a clean install of apache. I didn't change anything, started
up apache without any httpd.conf configuration changes and tried to  
access
http://localhost/cgi-bin/test-cgi. The 500 internal error is displayed  
as

markup with the added message of:

Additionally, a 500 Internal Server Error
error was encountered while trying to use an ErrorDocument to handle the
request.

Basically the same problem as before.

This is the configure command used:

./configure --prefix=/usr/local/Apache2.2.X \
--enable-so --enable-mods-shared=all \
--enable-ssl --with-ssl


You're probably still using your old config files.

You may indeed have found a bug here, but I am very skeptical that you
can trigger it without *any* changes to the default config (such as
activating the multilingual error documents).

Joshua.




--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Joshua Slive
On 12/16/05, Vincent Jong <[EMAIL PROTECTED]> wrote:
> I'm not understanding what you mean. This was a clean install of apache
> and after typing make install,
> I started up this install's apache. I didn't edit the httpd.conf file. All
> the ErrorDocument lines that are in
> httpd.conf are example lines that are commented out already. So what is
> happening is when a user tries to access some cgi script that isn't
> configured right, this user gets the 500 Internal Server Error page. The
> problem with this page is that it is displayed as HTML code. There's the
> additional line of another 500 Internal Server Error occurring when trying
> to use an ErrorDocument handling the error request. Since I've never, ever
> configured any kind of customized error documents, I wouldn't even begin
> to know where all this error document configuration is. I prefer to use
> apache's default configuration and error pages.

(Well, before you were including a bunch of extra errordocuments in
your config via the Include directives at the bottom, but anyway...)

My appologies, you are correct.  I have been able to recreate the
problem.  This may be the same as the following bug:
http://issues.apache.org/bugzilla/show_bug.cgi?id=36090

Try the patch at the bottom of that report.  If that doesn't fix the
problem, please file a new bug report.

Joshua.


Re: [EMAIL PROTECTED] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Vincent Jong
I'm not understanding what you mean. This was a clean install of apache  
and after typing make install,
I started up this install's apache. I didn't edit the httpd.conf file. All  
the ErrorDocument lines that are in
httpd.conf are example lines that are commented out already. So what is  
happening is when a user tries to access some cgi script that isn't  
configured right, this user gets the 500 Internal Server Error page. The  
problem with this page is that it is displayed as HTML code. There's the  
additional line of another 500 Internal Server Error occurring when trying  
to use an ErrorDocument handling the error request. Since I've never, ever  
configured any kind of customized error documents, I wouldn't even begin  
to know where all this error document configuration is. I prefer to use  
apache's default configuration and error pages.


Thanks,

Vincent J.

On Fri, 16 Dec 2005 00:27:22 -0800, Octavian Rasnita <[EMAIL PROTECTED]>  
wrote:



Hi,

From: "Vincent Jong" <[EMAIL PROTECTED]>


Well, I did a clean install of apache. I didn't change anything, started
up apache without any httpd.conf configuration changes and tried to  
access
http://localhost/cgi-bin/test-cgi. The 500 internal error is displayed  
as

markup with the added message of:

Additionally, a 500 Internal Server Error
error was encountered while trying to use an ErrorDocument to handle the
request.

Basically the same problem as before.



Have you tried without that ErrorDocument line in httpd.conf?
Does that line run another cgi script?
If yes, has this script right permissions (chmod 755)?

What do you mean when you say that instead of an error it prints an html
response?
Even when Apache prints an error in the header, it also prints a short  
html

page in the body.

Maybe conf/extra/httpd-multilang-errordoc.conf print a larger html  
content,

and in that case some browsers will display that html content instead of
creating its own error page based on the error code.

Every response prints a response code. If you say that it prints just an
html page instead of an error, this means that it prints another code  
than

500. Which is that code?

Try with:

telnet localhost 80
GET http://localhost/cgi-bin/test.cgi HTTP/1.0


Teddy


-
The official User-To-User support forum of the Apache HTTP Server  
Project.

See 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]






--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] New installation error ==> [emerg] (38)Function not implemented:

2005-12-16 Thread Joshua Slive
On 12/16/05, Philippe Dhont  (Sea-ro) <[EMAIL PROTECTED]> wrote:
>
> Hello,
>
> I have a new server, dual xeon & 1gb ram.
> Os is debian linux:
> Linux deb-server 2.6.13.4 #3 SMP Wed Oct 12 10:42:37 UTC 2005 i686
> GNU/Linux
>
> My kernel is custom made and works fine, everything is working fine.
> I installed everything with apt-get install, also apache.
>
> When i start apache, i get an error in the error.log:
>
> [Fri Dec 16 15:47:26 2005] [emerg] (38)Function not implemented:
> Couldn't create accept lock
>
> I have no idea where this is coming from!
> I have other servers installed the same way and never had a problem...

Try playing with the AcceptMutex directive:
http://httpd.apache.org/docs/2.2/mod/mpm_common.html#acceptmutex

Joshua.


[EMAIL PROTECTED] New installation error ==> [emerg] (38)Function not implemented:

2005-12-16 Thread Philippe Dhont \(Sea-ro\)

Hello,

I have a new server, dual xeon & 1gb ram.
Os is debian linux:
Linux deb-server 2.6.13.4 #3 SMP Wed Oct 12 10:42:37 UTC 2005 i686
GNU/Linux

My kernel is custom made and works fine, everything is working fine.
I installed everything with apt-get install, also apache.

When i start apache, i get an error in the error.log:

[Fri Dec 16 15:47:26 2005] [emerg] (38)Function not implemented:
Couldn't create accept lock

I have no idea where this is coming from!
I have other servers installed the same way and never had a problem...

Can someone help me ?
Thnx!
Phil.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] Error message: Faulting application Apache.exe, version 0.0.0.0 faulting module php_oci8.dll

2005-12-16 Thread Todd Patrick
[stats]
Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
Windows XP
Apache 1.3.3 or Apache 1.3.4 installed as a service
PHP 5.0.5

[Error]
Recently, I tried Apache 1.3.3 or Apache 1.3.4 with PHP 5.0.5. When I
turn on support for OCI8, I receive the following message in my Windows
Event: 

Event Type: Error
Event Source:   Application Error
Event Category: (100)
Event ID:   1000
Date:   12/16/2005
Time:   8:46:32 AM
User:   N/A
Computer:   ENG-TPATRICK
Description:
Faulting application Apache.exe, version 0.0.0.0, faulting module
php_oci8.dll, version 5.0.5.5, fault address 0x1be6.

For more information, see Help and Support Center at
http://go.microsoft.com/fwlink/events.asp.
Data:
: 41 70 70 6c 69 63 61 74   Applicat
0008: 69 6f 6e 20 46 61 69 6c   ion Fail
0010: 75 72 65 20 20 41 70 61   ure  Apa
0018: 63 68 65 2e 65 78 65 20   che.exe 
0020: 30 2e 30 2e 30 2e 30 20   0.0.0.0 
0028: 69 6e 20 70 68 70 5f 6f   in php_o
0030: 63 69 38 2e 64 6c 6c 20   ci8.dll 
0038: 35 2e 30 2e 35 2e 35 20   5.0.5.5 
0040: 61 74 20 6f 66 66 73 65   at offse
0048: 74 20 30 30 30 30 31 62   t 1b
0050: 65 36 e6  

[Notes]
However, there is no entry in the Apache Error log.

What seems odd is the Apache.exe version reports as 0.0.0.0, but I don't
understand why php_oci8.dll keeps faulting with either Apache 1.3.3 and
Apache 1.3.4.

Any suggestions or helpful direction is greatly appreciated.

Thanks,

--Todd

Todd Patrick
Web Developer
DTN
9110 West Dodge Road, Suite 200
Omaha, NE 68114

[EMAIL PROTECTED]
Phone: 402-255-8155
Fax: 402-255-8825
www.dtn.com
DTN Smarter Decisions

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] Two apache servers on a single external IP address.

2005-12-16 Thread Krist van Besien
On 12/15/05, Oil Pine <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have two Fedora Core machines and a Window machine that are connected
> to the 3 of the 4 ports of my DSL router, which in turn connected with a
> DSL modem with one single external IP address.
>
> I've been running apache2 with my home pages on a FC3 machine without
> much trouble.
> (This machine has static intra-net IP of 192.168.0.118
>
> I've just installed another apache2 FC4 on another machine. (IP:
> 192.168.0.128) I am testing this one to make sure everything works out
> OK before I make it the primary web server.
>
> My DSL router has been set to forward port 80 to both .118 and .128.

How does the DSL router decide where to forward a request to?

> I suppose that the back-up machine should be set up only with IP
> (intra-net) address-based virtual servers. Can I set up name-based
> virtual servers in the back up machine. I want to run two apache servers
> at the same time.

You can set up name based virtual hosts on both machines. In fact,
both machines can even run with exactly the same config. That is what
people with multiple servers behind loadbalancers do.

Krist

--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] ProxyPassReverseCookieDomain

2005-12-16 Thread Frederick, Fabian
It seems private server is giving 302 :

Livehttpheaders gives

http/1.x 302 object moved
Server : privateserver httpd version
Content-length:149
Content-type:text/html
Location : https://publicserver
X-powered-by:private server

The only difference between private server direct interrogation and public 
server (when authentification is done) is the 
Fact that GET has no cookie attribute when using public one ... Meanwhile, 
working directly on private server, each request has
Cookie : session-id ... So proxypass works, proxypassreverse works, 
proxypassreversecookie works ...
But browser don't send back a cookie to publicserver as that cookie seems 
'attached' to private server ...

I declared ProxyPassReverseCookieDomain and ProxyPassReverseCookiePath

ProxyPassReverseCookieDomain privateIP publicIP
ProxyPassReverseCookiePath / /

Regards,
Fabian

-Message d'origine-
De : Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 16 décembre 2005 14:56
À : users@httpd.apache.org
Objet : RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

That's more or less what it usually should be.

You need to verify who issues the HTTP 302: the authentication module or the 
application?

A trace from LiveHTTPHeaders would really be useful, because we do not have 
much to work on here...

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED]
Sent: Friday, December 16, 2005 2:47 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

I tried with proxypass = proxypassreverse : / http://myprivateserver When 
authentification is done, there's a loop with always the same response by 
privateserver : http/1.x 302 object moved Still an error in proxypassreverse 
Axel ?

Regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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 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] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Joshua Slive
On 12/16/05, Vincent Jong <[EMAIL PROTECTED]> wrote:
> Well, I did a clean install of apache. I didn't change anything, started
> up apache without any httpd.conf configuration changes and tried to access
> http://localhost/cgi-bin/test-cgi. The 500 internal error is displayed as
> markup with the added message of:
>
> Additionally, a 500 Internal Server Error
> error was encountered while trying to use an ErrorDocument to handle the
> request.
>
> Basically the same problem as before.
>
> This is the configure command used:
>
> ./configure --prefix=/usr/local/Apache2.2.X \
> --enable-so --enable-mods-shared=all \
> --enable-ssl --with-ssl

You're probably still using your old config files.

You may indeed have found a bug here, but I am very skeptical that you
can trigger it without *any* changes to the default config (such as
activating the multilingual error documents).

Joshua.


RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

2005-12-16 Thread Axel-Stéphane SMORGRAV
That's more or less what it usually should be.

You need to verify who issues the HTTP 302: the authentication module or the 
application?

A trace from LiveHTTPHeaders would really be useful, because we do not have 
much to work on here...

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 2:47 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

I tried with proxypass = proxypassreverse : / http://myprivateserver When 
authentification is done, there's a loop with always the same response by 
privateserver : http/1.x 302 object moved Still an error in proxypassreverse 
Axel ?

Regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] ProxyPassReverseCookieDomain

2005-12-16 Thread Frederick, Fabian
I tried with proxypass = proxypassreverse : / http://myprivateserver 
When authentification is done, there's a loop with always the same response by 
privateserver : http/1.x 302 object moved
Still an error in proxypassreverse Axel ?

Regards,
Fabian

-Message d'origine-
De : Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED] 
Envoyé : vendredi 16 décembre 2005 14:18
À : users@httpd.apache.org
Objet : RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

I assume that what is happening is that privateserver issues a redirect to 
itself which is not rewritten by the reverse proxy, i.e. the Location header of 
the HTTP 302 is not rewritten.

This happens because you do not have the appropriate ProxyPassReverse in your 
configuration.

In order to get more insight into exactly what is going on I suggest that you 
try using LiveHTTPHeaders with Firefow, or HTTPWatch with IE. These tools will 
enable you to see the values of all headers in the requests as well as in the 
responses, and you will be able to modify your ProxyPassReverse statements 
accordingly.

If you cannot figure it out, please post a trace from LiveHTTPHeaders.

-ascs 

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED]
Sent: Friday, December 16, 2005 12:08 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

Thanks Axel ! It works now :) But a major problem appears :

Here's the scenario :

Http//publicserver displays authentification box from private server :
Entering name and password for privateserver at publicserver (here before 
sending, netstat gives no direct link to privateserver).
When completed correctly, client receives the cookie BUT appears in address 
http//privateserver page Netstat gives now a direct link to private server ... 
Is there a way to avoid this ? IOW to keep this 'tunnel' client -> public 
server -> private server ?

Regards,
Fabian

-Message d'origine-
De : Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED]
Envoyé : mardi 13 décembre 2005 14:29
À : users@httpd.apache.org
Objet : RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

After having checked the CHANGES_2.0 file, it seems like 
ProxyPassReverseCookieDomain has not made it into the 2.0.55 distribution. If 
you need that functionality you should therefore apply the patch attached to 
Bugzilla BR 10722 (patch 11915) and recompile the appropriate modules. 

The order of parameters for ProxyPassReverseCookieDomain (and 
ProxyPassReverseCookiePath) is the same as for ProxyPass.

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 13, 2005 11:36 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

Hi,

Does Apache 2.0.55 able to reverse proxy cookies using 
ProxyPassReverseCookieDomain ?
Maybe someone has a link to a sample config somewhere ? I don't understand 
ProxyPassReverseCookiePath parameter ...

Best regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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 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 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 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 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] ProxyPassReverseCookieDomain

2005-12-16 Thread Axel-Stéphane SMORGRAV
I assume that what is happening is that privateserver issues a redirect to 
itself which is not rewritten by the reverse proxy, i.e. the Location header of 
the HTTP 302 is not rewritten.

This happens because you do not have the appropriate ProxyPassReverse in your 
configuration.

In order to get more insight into exactly what is going on I suggest that you 
try using LiveHTTPHeaders with Firefow, or HTTPWatch with IE. These tools will 
enable you to see the values of all headers in the requests as well as in the 
responses, and you will be able to modify your ProxyPassReverse statements 
accordingly.

If you cannot figure it out, please post a trace from LiveHTTPHeaders.

-ascs 

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 12:08 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

Thanks Axel ! It works now :) But a major problem appears :

Here's the scenario :

Http//publicserver displays authentification box from private server :
Entering name and password for privateserver at publicserver (here before 
sending, netstat gives no direct link to privateserver).
When completed correctly, client receives the cookie BUT appears in address 
http//privateserver page Netstat gives now a direct link to private server ... 
Is there a way to avoid this ? IOW to keep this 'tunnel' client -> public 
server -> private server ?

Regards,
Fabian

-Message d'origine-
De : Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED]
Envoyé : mardi 13 décembre 2005 14:29
À : users@httpd.apache.org
Objet : RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

After having checked the CHANGES_2.0 file, it seems like 
ProxyPassReverseCookieDomain has not made it into the 2.0.55 distribution. If 
you need that functionality you should therefore apply the patch attached to 
Bugzilla BR 10722 (patch 11915) and recompile the appropriate modules. 

The order of parameters for ProxyPassReverseCookieDomain (and 
ProxyPassReverseCookiePath) is the same as for ProxyPass.

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 13, 2005 11:36 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

Hi,

Does Apache 2.0.55 able to reverse proxy cookies using 
ProxyPassReverseCookieDomain ?
Maybe someone has a link to a sample config somewhere ? I don't understand 
ProxyPassReverseCookiePath parameter ...

Best regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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 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 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 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] Two apache servers on a single external IP address.

2005-12-16 Thread Dotan Cohen
On 12/15/05, Oil Pine <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I have two Fedora Core machines and a Window machine that are connected
> to the 3 of the 4 ports of my DSL router, which in turn connected with a
> DSL modem with one single external IP address.
>
> I've been running apache2 with my home pages on a FC3 machine without
> much trouble.
> (This machine has static intra-net IP of 192.168.0.118
>
> I've just installed another apache2 FC4 on another machine. (IP:
> 192.168.0.128) I am testing this one to make sure everything works out
> OK before I make it the primary web server.
>
> My DSL router has been set to forward port 80 to both .118 and .128.
>
> I suppose that the back-up machine should be set up only with IP
> (intra-net) address-based virtual servers. Can I set up name-based
> virtual servers in the back up machine. I want to run two apache servers
> at the same time.
>
> I would appreciate your insightful suggestions.
>
> pine
>

Just set apache on the test machine to listen on a different port. Set
the router to forward that port to the test machine, and 80 to the
live machine.

Dotan Cohen
http://technology-sleuth.com/technical_answer/what_is_a_firewall.html


[EMAIL PROTECTED] caching rails generated images

2005-12-16 Thread Henning Meyer
Hello,

I use Ruby on Rails to generate images, which are delivered via
mod_fastcgi to apache2.
These images should be cached using mod_cache and mod_disk_cache.
But it does not work.
In Rails I set my http headers like this:

  expires_in 30.hours, :private => false
  @response.headers['Last-Modified'] = im.serie.received
  @response.headers['Content-Length'] = data.size
  send_data data, :type =>  'image/png', :disposition => 'inline'

The important settings from apache2 conf look like this:



  FastCgiServer /home/hmeyer/devel/dicomweb/public/dispatch.fcgi \
-initial-env RAILS_ENV=development \
-processes 5 \
-idle-timeout 60



   DocumentRoot /home/hmeyer/devel/dicomweb/public
   ErrorLog /home/hmeyer/devel/dicomweb/log/apache.log
   CustomLog   /home/hmeyer/devel/dicomweb/log/access.log combined
   SetEnv  RAILS_ENV development



CacheRoot /var/www/cache/
CacheSize 256000
CacheEnable disk /image

CacheDirLevels 5
CacheDirLength 3


   
Options ExecCGI FollowSymLinks
AddHandler cgi-script .cgi
AllowOverride all
Order allow,deny
Allow from all
ExpiresByType image/png "now plus 1 month"
ExpiresActive On
   



What am I doing wrong?

Thanx for your help!

Henning

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] Apache 2.0.54 Proxy information request

2005-12-16 Thread Rosado, Rodolfo CTR MDA/IOM
Thanks for your reply, 

Working:
Intranet(WAN)---HTTP---> apache <---HTTP--> IIS ---> Plumtree Portal SSO (using 
AD Authentication)

Not Working:
Intranet(WAN)---HTTPS---> apache <---https---> IIS > Plumtree Portal SSO 
(using AD Authentication)

Working:
Intranet ---HTTPS---> IIS <---> Plumtree Portal SSO (using AD Authentication)

When opening access to the other ITO's on the WAN they will be coming in over 
https. The reason I need to keep apache on the front door is I'll also have 
internet traffic coming through the same pipe and need to protect my back-end.  
Apache will reside in the DMZ.  

Rod



-Original Message-
From: Boyle Owen [mailto:[EMAIL PROTECTED] 
Sent: Friday, December 16, 2005 4:06 AM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] Apache 2.0.54 Proxy information request


Plain text please...

I assume when say "port 443" you mean HTTPS and not that you're just changing 
the port number under normal HTTP. Your main application is an undefined Single 
Sign-On authentication scheme. Your set up is:

Internet <--HTTPS--> apache <--HTTP--> IIS

...and this works. But when you change to:

Internet <--HTTPS--> apache <--HTTPS--> IIS

...it doesn't.

So it looks like your SSO application doesn't work via HTTPS. What do you get 
in the apache and/or IIS logs? Is there any SSO logging?

BTW, What happens if you try:

DMZ browser <--HTTPS--> IIS

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

-Original Message-
From: Rosado, Rodolfo CTR MDA/IOM [mailto:[EMAIL PROTECTED]
Sent: Donnerstag, 15. Dezember 2005 22:12
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] Apache 2.0.54 Proxy information request


Hi all,  
I'm new, have mercy.  I've set up an Apache server in my DMZ and it is 
accessed via port 443 only.  I reverse proxy requests to a back-end IIS server 
and application.  My issue is with SSO.  I configured my Apache Server in a 
test environment to accept and reverse proxy requests over port 80 and the 
information is passed correctly to the IIS server and application and allows 
the user to SSO.  However, when I change this to port 443, the SSO no longer 
works.  I can get to the backend app, but no SSO.  Is there something I haven't 
configured properly? 
 
Diese E-mail ist eine private und persönliche Kommunikation. Sie hat keinen 
Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This e-mail is of a 
private and personal nature. It is not related to the exchange or business 
activities of the SWX Group. Le présent e-mail est un message privé et 
personnel, sans rapport avec l'activité boursière du Groupe SWX.
 
 
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 
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 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] ProxyPassReverseCookieDomain

2005-12-16 Thread Frederick, Fabian
Thanks Axel ! It works now :) But a major problem appears :

Here's the scenario :

Http//publicserver displays authentification box from private server :
Entering name and password for privateserver at publicserver (here before 
sending, netstat gives no direct link to privateserver).
When completed correctly, client receives the cookie BUT appears in address 
http//privateserver page
Netstat gives now a direct link to private server ... Is there a way to avoid 
this ? IOW to keep this 'tunnel' client -> public server -> private server ?

Regards,
Fabian

-Message d'origine-
De : Axel-Stéphane SMORGRAV [mailto:[EMAIL PROTECTED] 
Envoyé : mardi 13 décembre 2005 14:29
À : users@httpd.apache.org
Objet : RE: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

After having checked the CHANGES_2.0 file, it seems like 
ProxyPassReverseCookieDomain has not made it into the 2.0.55 distribution. If 
you need that functionality you should therefore apply the patch attached to 
Bugzilla BR 10722 (patch 11915) and recompile the appropriate modules. 

The order of parameters for ProxyPassReverseCookieDomain (and 
ProxyPassReverseCookiePath) is the same as for ProxyPass.

-ascs

-Original Message-
From: Frederick, Fabian [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 13, 2005 11:36 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] ProxyPassReverseCookieDomain

Hi,

Does Apache 2.0.55 able to reverse proxy cookies using 
ProxyPassReverseCookieDomain ?
Maybe someone has a link to a sample config somewhere ? I don't understand 
ProxyPassReverseCookiePath parameter ...

Best regards,
Fabian

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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 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 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] Apache 2.2.0 bandwidth

2005-12-16 Thread Graham Frank
Ever since upgrading a dev server of mine to Apache 2.2.0, I have noticed that 
the bandwidth reported is wrong.

On the average day, the Apache server moves 40gb of bandwidth or so.  Since the 
move to 2.2.0, it claimed 780gb yesterday and 240gb today.

I checked my MRTG graphs to confirm that only 45gb has been moved each day.

Anyone have any insight to this?

OS: CentOS 4.0
Pentium 4 2.8ghz system

---
Graham Frank

-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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] "error reading the headers"

2005-12-16 Thread Boyle Owen
>  -Original Message-
> From: Michael Avila [mailto:[EMAIL PROTECTED] 
> Sent: Freitag, 16. Dezember 2005 02:59
> To:   Apache - User Mailing List
> Subject:  [EMAIL PROTECTED] "error reading the headers"
> 
> WinXP Pro
> Apache 2.0.55
> MySQL database 4.1.15
> 
> 
> I am getting this error when submitting a METHOD='Post' to Apache. 
> 
> [Thu Dec 15 20:49:48 2005] [error] [client 70.228.56.50] request failed: 
> error reading the headers, referer: 
> http://www.thecertnetwork.net/certprod/repository/index.php
> 
> I have this at the top of the php script being called but it never gets there.
> 
> error_reporting(E_ALL);
> 
> What puzzles me is that this same procedure works 99% of the time. It is 
> creating a record for a member and works with over 60 members. With 2 members 
> it does not.

So what's funny about these two users? Do they have illegal characters (spaces, 
carriage returns etc.) in there usernames?
Incidentally, this looks entirely like a PHP problem - you might have more luck 
on a PHP forum

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 
> 
> What causes an error such as that? Anything that I can try?
> 
> Thanks.
> 
> Mike
> 
>  << File: ATT232491.txt >> 
Diese E-mail ist eine private und persönliche Kommunikation. Sie hat keinen 
Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This e-mail is of a 
private and personal nature. It is not related to the exchange or business 
activities of the SWX Group. Le présent e-mail est un message privé et 
personnel, sans rapport avec l'activité boursière du Groupe SWX.
 
 
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 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] Apache 2.0.54 Proxy information request

2005-12-16 Thread Boyle Owen
Plain text please...

I assume when say "port 443" you mean HTTPS and not that you're just changing 
the port number under normal HTTP. Your main application is an undefined Single 
Sign-On authentication scheme. Your set up is:

Internet <--HTTPS--> apache <--HTTP--> IIS

...and this works. But when you change to:

Internet <--HTTPS--> apache <--HTTPS--> IIS

...it doesn't.

So it looks like your SSO application doesn't work via HTTPS. What do you get 
in the apache and/or IIS logs? Is there any SSO logging?

BTW, What happens if you try:

DMZ browser <--HTTPS--> IIS

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

-Original Message-
From: Rosado, Rodolfo CTR MDA/IOM [mailto:[EMAIL PROTECTED]
Sent: Donnerstag, 15. Dezember 2005 22:12
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] Apache 2.0.54 Proxy information request


Hi all,  
I'm new, have mercy.  I've set up an Apache server in my DMZ and it is 
accessed via port 443 only.  I reverse proxy requests to a back-end IIS server 
and application.  My issue is with SSO.  I configured my Apache Server in a 
test environment to accept and reverse proxy requests over port 80 and the 
information is passed correctly to the IIS server and application and allows 
the user to SSO.  However, when I change this to port 443, the SSO no longer 
works.  I can get to the backend app, but no SSO.  Is there something I haven't 
configured properly? 
 
Diese E-mail ist eine private und persönliche Kommunikation. Sie hat keinen 
Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This e-mail is of a 
private and personal nature. It is not related to the exchange or business 
activities of the SWX Group. Le présent e-mail est un message privé et 
personnel, sans rapport avec l'activité boursière du Groupe SWX.
 
 
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 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] 500 Internal Server Error pages being rendered as markup

2005-12-16 Thread Octavian Rasnita
Hi,

From: "Vincent Jong" <[EMAIL PROTECTED]>

> Well, I did a clean install of apache. I didn't change anything, started
> up apache without any httpd.conf configuration changes and tried to access
> http://localhost/cgi-bin/test-cgi. The 500 internal error is displayed as
> markup with the added message of:
>
> Additionally, a 500 Internal Server Error
> error was encountered while trying to use an ErrorDocument to handle the
> request.
>
> Basically the same problem as before.
>

Have you tried without that ErrorDocument line in httpd.conf?
Does that line run another cgi script?
If yes, has this script right permissions (chmod 755)?

What do you mean when you say that instead of an error it prints an html
response?
Even when Apache prints an error in the header, it also prints a short html
page in the body.

Maybe conf/extra/httpd-multilang-errordoc.conf print a larger html content,
and in that case some browsers will display that html content instead of
creating its own error page based on the error code.

Every response prints a response code. If you say that it prints just an
html page instead of an error, this means that it prints another code than
500. Which is that code?

Try with:

telnet localhost 80
GET http://localhost/cgi-bin/test.cgi HTTP/1.0


Teddy


-
The official User-To-User support forum of the Apache HTTP Server Project.
See 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]