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

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

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

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

[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

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

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

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

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,

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

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

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

[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

[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

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

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

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

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.

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

[EMAIL PROTECTED] -help

2005-12-16 Thread Randy Grafton
- 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

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

[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

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

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