RE: [EMAIL PROTECTED] Error Starting Apache

2006-06-16 Thread Boyle Owen
-Original Message- From: Steven Pierce [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 6:24 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Error Starting Apache Good Morning, I am a newbie to Apache, but I have played with it a little. I was able to set

[EMAIL PROTECTED] chopped SSI document

2006-06-16 Thread Viktoras Didziulis
Hi! I am experiencing strange behavior of shtml document. It is loaded partially and the document is chopped when encounters #if expr=$QUERY_STRING='' directive. The same document works without any problems with my hosting provider. And it used to work with previous versions of Apache. But

[EMAIL PROTECTED] Apache 2.2, 2.0 and 1.3: Large downloads failing when Timeout parameter lowered

2006-06-16 Thread Maarten Van Horenbeeck
Hello everyone, It could be that I've identified a bug in Apache that prevents large files from being downloaded successfully when a 'lower than default' Timeout setting is used in httpd.conf. Per the standard bug guidelines I'd like to check on the list first to see whether someone else has

[EMAIL PROTECTED] how to define default name virtual host?

2006-06-16 Thread Matus UHLAR - fantomas
Hello, this is my current configuration of apache (debian: 1.3.33-6sarge1): NameVirtualHost 195.168.3.66:80 VirtualHost 195.168.3.66:80 ServerName default.fantomas.sk DocumentRoot /home/webs/default.fantomas.sk /VirtualHost VirtualHost 195.168.3.66:80 ServerName fantomas.fantomas.sk

[EMAIL PROTECTED] mod_rewrite and multiple parameters

2006-06-16 Thread Gioele Barabucci
Hi, I use mod_rewrite to map URLs like this http://mydomain/seach/a10/b30/c9/f99 to myscript.php?param_a=10param_b=30param_c_new=9param_f=99. Everithing works fine but, as the number of (optional) parameters increase, I need to create too many RewriteRules. My RewriteRules are like this

Re: [EMAIL PROTECTED] Apache stop to how after config reload or restart

2006-06-16 Thread Klaubert Herr da Silveira
Hi, my /dev/urandom is working with no problem. I do a strace as sugested, and don't found any blocking situation. However the apache start to connect quickly, no block/hang this time. The worst part, is that is a random error. Some time the server block, other time no. Klaubert --- Joshua

Re: [EMAIL PROTECTED] Apache stop to how after config reload or restart

2006-06-16 Thread Joshua Slive
On 6/16/06, Klaubert Herr da Silveira [EMAIL PROTECTED] wrote: Hi, my /dev/urandom is working with no problem. I do a strace as sugested, and don't found any blocking situation. However the apache start to connect quickly, no block/hang this time. The worst part, is that is a random error. Some

RE: [EMAIL PROTECTED] mod_rewrite and multiple parameters

2006-06-16 Thread Axel-Stéphane SMORGRAV
Here you go: RewriteRule ^/seach/(.*) /myscript.php/$1 RewriteRule ^/myscript.php/([a-z])([0-9]+)/(.*) /myscript.php/$3?param_$1=$2 [QSA,N] RewriteRule ^/myscript.php/([a-z])([0-9]+)$ /myscript.php?param_$1=$2 [QSA,L] -ascs -Original Message- From: news [mailto:[EMAIL PROTECTED] On

[EMAIL PROTECTED] Getting a literal question mark in substitution string of mod_rewrite?

2006-06-16 Thread Zembower, Kevin
I suspect that this must be a FAQ, but I searched for an hour in Google, and this list's archives, but didn't find an answer. Please point it out to me if I missed it. I want to put a literal '?' in the substitution string of a mod_rewrite rule. Here's what I have so far: RewriteRule

[EMAIL PROTECTED] URL request parameter loging

2006-06-16 Thread rturnbull
Hello to all, I'm trying to configure a Apache proxy to a java server to record client requests to a java server. However I'm running into a snag... I can't see any of the request parameters sent from the client browser to the java server. They could be sent within the java session, but

Re: [EMAIL PROTECTED] URL request parameter loging

2006-06-16 Thread Joshua Slive
On 6/16/06, rturnbull [EMAIL PROTECTED] wrote: Hello to all, I'm trying to configure a Apache proxy to a java server to record client requests to a java server. However I'm running into a snag... I can't see any of the request parameters sent from the client browser to the java server. They

[EMAIL PROTECTED] chroot (jailed) virtual sites

2006-06-16 Thread Daniel Fernandez
Hi. I am try to build a similar at Ensim virtual hosting server but i don´t understand how it jail the wesites. In the control panel I can select normal website (without chroot and with the PHP safe mode ON) or High security (chroot enabled and php safe mode OFF). Can help me. Sincerely

[EMAIL PROTECTED] DocumentRoot

2006-06-16 Thread Ivan Levchenko
Hello all, I just installed appache 2.2.2 on FreeBSD 6.1 by going into /usr/ports/www/apache22/ and doing make install clean. Everything works ok. I see my pages in the browser. By default, it loads pages from /usr/local/www/data, but I want to change it to pub. I rename data to pub, then in

Re: [EMAIL PROTECTED] DocumentRoot

2006-06-16 Thread Rainer Sokoll
On Fri, Jun 16, 2006 at 09:24:51PM +0300, Ivan Levchenko wrote: Hello all, I just installed appache 2.2.2 on FreeBSD 6.1 by going into /usr/ports/www/apache22/ and doing make install clean. Everything works ok. I see my pages in the browser. By default, it loads pages from

[EMAIL PROTECTED] apache2.0 on freebsd6.1

2006-06-16 Thread Josh Stephenson
I recently recompiled apache and php on freebsd 6.1 and now whenever I look at a webpage on that system (whether there's a page there or not) I get the output from 'apachectl' with no arguments: Usage: -f [-D name] [-d directory] [-f file] [-C directive] [-c directive] [-k

Re: [EMAIL PROTECTED] apache2.0 on freebsd6.1

2006-06-16 Thread Nathan Seven
Wow- can't really help you I'm afraid, but i think this is a nominee for most f'd up problem ever :P At first thought, could you have somehow replaced the httpd binary with the apachectl binary? -- Jupiter accepts your offer... AIM:IMFDUP On Jun 16, 2006, at 12:25 PM, Josh Stephenson

[EMAIL PROTECTED] FW: User Dir Mod NIS

2006-06-16 Thread Brent Snow, Mr.
Good Morning All, I currently have a fedora 4 system, and apache 2.0 installed. I have configured it to work with user homes (UserDir /home/*/www). It works fine as long as it is a local directory on the computer, but as soon as I join it to the NIS domain, to use the homes off of a

[EMAIL PROTECTED] ErrorDocument Question

2006-06-16 Thread Fenlason, Josh
Is there anyway to configure ErrorDocument to work with a path that for the user's locale? I want to do something like the following: ErrorDocument 401 /path/to/file/locale/rest/of/path/to/errorPage.html Is there a way to accomplish this with ErrorDocument? Is there a way to do it with any

Re: [EMAIL PROTECTED] ErrorDocument Question

2006-06-16 Thread Joshua Slive
On 6/16/06, Fenlason, Josh [EMAIL PROTECTED] wrote: Is there anyway to configure ErrorDocument to work with a path that for the user's locale? I want to do something like the following: ErrorDocument 401 /path/to/file/locale/rest/of/path/to/errorPage.html Is there a way to accomplish this

[EMAIL PROTECTED] query string from POST method

2006-06-16 Thread rturnbull
Hello to all, Is there a way though httpd proxy to show the arguments sent with a POST method? I have been trying to find a way to reveal arguments from our java application that are POST method to the server... for example

Re: [EMAIL PROTECTED] query string from POST method

2006-06-16 Thread Mike Jackson
Hello to all, Is there a way though httpd proxy to show the arguments sent with a POST method? I have been trying to find a way to reveal arguments from our java application that are POST method to the server... for example

Re: [EMAIL PROTECTED] FW: User Dir Mod NIS

2006-06-16 Thread David Salisbury
I had a similar problem once, but not identical. Apache was not accessing dbm files for the Authorizations while those files wereNFS mounted. Yet there seemed to be no problems with NSF mounts otherwise. It turned out the total client nfs package had not been totally installed, and had

[EMAIL PROTECTED] chroot-suexec

2006-06-16 Thread Daniel Fernandez
I need help to setup chroot-suexec in apache v2. Any can help? - 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: