mod_ssl (Open SSL 0.9.8b) fuer apache-2.2.3 kompilieren, SSL/TLS libraries were missing or unusable

2006-08-21 Thread Vogel, Thomas (BOT)
Hallo Habe die Sourcen von OpenSSL 0.9.8b heruntergeladen und compiliert. ./config --prefix=$Pfad/openssl make test make make install alles soweit gut Dann den 2.2.3 er Apachen, das mod_ssl bauen halt: ./configure --enable-layout=Apache \ --prefix=Pfad/apache2 \

Ret: [EMAIL PROTECTED] Permission to connect to AJP socket

2006-08-21 Thread Dietmar . Mueller
Hello Ryszard, sorry for the stupid question. Is tomcat up and listening on localhost:8109 with AJP? regards Dietmar Ryszard Lach [EMAIL PROTECTED] am 21.08.2006 07:55:43 Bitte antworten an users@httpd.apache.org An: Apache Users Mailing List users@httpd.apache.org Kopie: Thema:

[EMAIL PROTECTED] How to disable errors and redirect allways to default.php

2006-08-21 Thread Michelle Konzack
Hello, I want http://domain.tld/ http://domain.tld/page1 http://domain.tld/page2 http://domain.tld/page3 http://domain.tld/... http://domain.tld/an_interesting_random_word but this pages and several 100.000' are handled by only ONE php script. Exactly,

[EMAIL PROTECTED] weblogic

2006-08-21 Thread Maria Elena Sanchez
Hello, I am using Apache 2.2.3, with solaris 9 and when I am going to start it, it gives me the following mistake: bash-2.05$ Syntax error on line 132 of /opt/install/psbatlatam/apache2.2.3.frontend/conf/httpd.conf: API module structure `weblogic_module' in file

Re: [EMAIL PROTECTED] How to disable errors and redirect allways to default.php

2006-08-21 Thread Steve Swift
The environment variable REQUEST_URI will contain /, /page1, /page2, /page3, /randomword so you could use this variable (perhaps without the leading /) in your default.php to select the contents of the page.On 18/08/06, Michelle Konzack [EMAIL PROTECTED] wrote:Hello,I wanthttp://domain.tld/

[EMAIL PROTECTED] mod_proxy stickysession

2006-08-21 Thread Tomer Okavi
Hi I'm currently load balancing 3 IIS6 servers with LVS (linux virtual server). and planning on moving to an apache frontend (reverse proxy) with mod_proxy_balancer (my main goal is protecting the web app on the iis's with mod_security) after reading the doc's i've setup apache as a reverse proxy

[EMAIL PROTECTED] 400 Bad Request Error

2006-08-21 Thread Rob Wilkerson
All - I'm receiving a 400 error when trying to access the following URL: http://saiprojects.com/projects/myproject/timeline?changeset=onmax=50daysback=90format=rss It only appears to happen in IE. In Firefox, I can pull up the feed XML just fine. There are messages in my error_log that

[EMAIL PROTECTED] Re: 400 Bad Request Error

2006-08-21 Thread Rob Wilkerson
One more thing I should mention: The requested file is returned with an application/rss+xml mime type. I don't know whether that has any impact on the problem I'm seeing, but I thought I'd throw it out there just in case. Thanks again. On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: All -

Re: [EMAIL PROTECTED] mod_proxy stickysession

2006-08-21 Thread John Madden
with apache i can achive that with stickeysession (L7), right? can i use this kind of configuration with apache (persistence connections from client to the same server)? i know pound (www.apsis.ch/pound/) works but i need apache for the mod_security stuff. any ideas. howto's, doc's,

Re: [EMAIL PROTECTED] mod_proxy stickysession

2006-08-21 Thread Tomer Okavi
thanks, i also found bug 38357 regarding the problem. Tomer. On 8/21/06, John Madden [EMAIL PROTECTED] wrote: with apache i can achive that with stickeysession (L7), right? can i use this kind of configuration with apache (persistence connections from client to the same server)? i know

[EMAIL PROTECTED] No Form data being passed to Scripts

2006-08-21 Thread Ian P Blackburn
Hi I have a utility I have deployed to a HP-UX webserver which has both Apache 2 Apache 1.3. The utility accepts parameters populated on a html form which is submitted and the values of this form is used to run a ksh script. However, when this html page is loaded using Apache 2 there are no

Re: [EMAIL PROTECTED] Re: 400 Bad Request Error

2006-08-21 Thread Pid
try adding ext=.rss or ext=.xml to the end of the URl, in IE Rob Wilkerson wrote: One more thing I should mention: The requested file is returned with an application/rss+xml mime type. I don't know whether that has any impact on the problem I'm seeing, but I thought I'd throw it out

Re: [EMAIL PROTECTED] No Form data being passed to Scripts

2006-08-21 Thread Joshua Slive
On 8/21/06, Ian P Blackburn [EMAIL PROTECTED] wrote: I have a utility I have deployed to a HP-UX webserver which has both Apache 2 Apache 1.3. The utility accepts parameters populated on a html form which is submitted and the values of this form is used to run a ksh script. However, when this

Re: [EMAIL PROTECTED] 400 Bad Request Error

2006-08-21 Thread Joshua Slive
On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: All - I'm receiving a 400 error when trying to access the following URL: http://saiprojects.com/projects/myproject/timeline?changeset=onmax=50daysback=90format=rss It only appears to happen in IE. In Firefox, I can pull up the feed XML just

Re: [EMAIL PROTECTED] How to disable errors and redirect allways to default.php

2006-08-21 Thread Michelle Konzack
Hi back... Am 2006-08-21 14:16:10, schrieb Steve Swift: If you want to map /anything to your default.php then look at ScriptAliasMatch or AliasMatch, depending how you setup access to default.php (I have no experience of how php is set up) I have only an index.php which has the same behaviour

Re: [EMAIL PROTECTED] How to disable errors and redirect allways to default.php

2006-08-21 Thread Joshua Slive
On 8/21/06, Steve Swift [EMAIL PROTECTED] wrote: If you want to map /anything to your default.php then look at ScriptAliasMatch or AliasMatch, depending how you setup access to default.php (I have no experience of how php is set up) Those will only work if php is running as a CGI. The easy

Re: [EMAIL PROTECTED] 400 Bad Request Error

2006-08-21 Thread Rob Wilkerson
Thanks, Joshua. That was exactly what I needed. I appreciate your help. On 8/21/06, Joshua Slive [EMAIL PROTECTED] wrote: On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: All - I'm receiving a 400 error when trying to access the following URL:

Re: [EMAIL PROTECTED] No Form data being passed to Scripts

2006-08-21 Thread Ian P Blackburn
Hi The html form tag is : FORM METHOD=POST ACTION=/cgi-bin/bom_report.ksh The korn shell script bom_report.ksh reads in the parameters from stdin using the unix function read which reads input from standard input and then assigns it to a variable, read Arg1 Then a post-query executable

Re: [EMAIL PROTECTED] How to disable errors and redirect allways to default.php

2006-08-21 Thread Michelle Konzack
Am 2006-08-21 09:43:08, schrieb Joshua Slive: Those will only work if php is running as a CGI. The easy (but perhaps hackish) way to solve this is ErrorDocument /default.php OK But make sure to have your php script reset the Status header so that clients don't receive a 404. (I assume

[EMAIL PROTECTED] mod_proxy_balancer configuration question

2006-08-21 Thread Yoav Shapira
Hi, I'm trying to configure mod_proxy_balancer with a simple cluster and have run into a configuration problem that has me stumped. It's probably very simple and I'm just missing something ;) Your help is appreciated. I have three machines, www1.mydomain.com, www2.mydomain.com, and

Re: [EMAIL PROTECTED] mod_proxy_balancer configuration question

2006-08-21 Thread Pid
Look in the server error_log to see what the 403 is being issued for, and if that doesn't help, post that to the list and we might be able to help. Yoav Shapira wrote: Hi, I'm trying to configure mod_proxy_balancer with a simple cluster and have run into a configuration problem that has me

Re: [EMAIL PROTECTED] weblogic

2006-08-21 Thread Richard de Vries
WebLogic doesn't support Apache 2.2, and Apache 2.2 is not necesarrily downwards compatible with Apache 2.0.x. I recommend you downgrade to Apache 2.0.59 and stay on a supported platform. R --- Maria Elena Sanchez [EMAIL PROTECTED] wrote: Hello, I am using Apache 2.2.3, with solaris 9 and

[EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Rob Wilkerson
All - I know this is somewhat off-topic and I apologize for that, but I'm not having any luck on the Subversion mailing list so I thought I'd ask the question from this end and see if someone can give me any suggestions on where to look and/or possible causes. I'm trying to commit a large code

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Rob Wilkerson
I'll take a look at the forensics and the packet trace. The server is on a LAN - I don't believe there are any proxies involved, but I'm not the guy who has to put together the servers. I'm just the guy that has to communicate with them. I'll ask about that. A tracert, though, shows no hops

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Joshua Slive
On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: I'll take a look at the forensics and the packet trace. The server is on a LAN - I don't believe there are any proxies involved, but I'm not the guy who has to put together the servers. I'm just the guy that has to communicate with them. I'll

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Rob Wilkerson
I just ran a tail -f on the Apache access_log while attempting the commit and it's definitely logging requests. A lot of them. And then it just stops. The server reports no error (at least not in the logs I've checked), but the client does. Could something else be terminating the connection?

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Joshua Slive
On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: I just ran a tail -f on the Apache access_log while attempting the commit and it's definitely logging requests. A lot of them. And then it just stops. The server reports no error (at least not in the logs I've checked), but the client does.

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Rob Wilkerson
That's the thing...I don't see anything. I'm not a server guy, but there just doesn't seem to be anything to see. There's the error message on the client side, but nothing to support it in any log file I know of or can find. I've pasted the end of a tail -f I just ran while attempting another

[EMAIL PROTECTED] apache with mod_wl strips Content-type header value on 202 response from WLS

2006-08-21 Thread Dmitri Colebatch
Hi all, I'm setting up an apache box to give us some additional configuration options between our load balancer and weblogic. Most of this is going to plan but yesterday someone pointed out that for 202 responses apache is returning an empty Content-type header. When I make the request

Re: [EMAIL PROTECTED] SOT: Subversion Connection to Apache Fails Mid-Stream

2006-08-21 Thread Joshua Slive
On 8/21/06, Rob Wilkerson [EMAIL PROTECTED] wrote: That's the thing...I don't see anything. I'm not a server guy, but there just doesn't seem to be anything to see. There's the error message on the client side, but nothing to support it in any log file I know of or can find. I've pasted the

[EMAIL PROTECTED] 503 response with mod_rewrite?

2006-08-21 Thread Evaldas Imbrasas
Hi all, Is there a way to return a custom document along with a 503 Network Unavailable response code using mod_rewrite rules? The documentation mentions the ability to return 3xx and 4xx, but not 5xx. If 5xx codes are unavailable - is there a specific reason why? In case you're wondering why I

[EMAIL PROTECTED] subdomain problem

2006-08-21 Thread RYAN vAN GINNEKEN
Using Apache/1.3.34 (Unix) PHP/4.4.2 configured with 4.11-STABLE FreeBSD I am having trouble creating a subdomain the rest of my virtual sites seem to work. prettysure my dns works as i can ping and get the right ip ping site1.computerking.caPING site1.computerking.ca (68.146.204.152)