[us...@httpd] mod_rewrite documentation DR: slash for backslash

2009-06-27 Thread Kristof Zelechovski
mod_rewrite http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#quoting - Apache HTTP Server documentation says : special characters in TestString and Substitution strings can be escaped (that is, treated as normal characters without their usual special meaning) by prefixing them with a slash

[us...@httpd] doc DR: Broken link to CGI specification

2009-06-27 Thread Kristof Zelechovski
http://validator.w3.org/checklink?check=Checkhide_type=allsummary=onuri= http%3a%2f%2fhttpd.apache.org%2fdocs%2f2.0%2fenv.html W3C Link Checker: http://httpd.apache.org/docs/2.0/env.html says: errorLine: 97 http://cgi-spec.golux.com/ Status: 500 Can't connect to cgi-spec.golux.com:80 (connect:

RE: [us...@httpd] doc DR: Broken link to CGI specification

2009-06-27 Thread Kristof Zelechovski
The missing content is hosted At http://hoohoo.ncsa.illinois.edu/cgi/env.html CGI Environment Variables. _ From: Kristof Zelechovski [mailto:giecr...@stegny.2a.pl] Sent: Saturday, June 27, 2009 11:26 PM To: users@httpd.apache.org Subject: [us...@httpd] doc DR: Broken link to CGI

RE: [us...@httpd] Use of NoProxy without a DNS lookup

2009-05-29 Thread Kristof Zelechovski
Hi Dave, Requiring local applications to use raw IP numbers is rather extreme. You should have a DNS running on the LAN; local hosts can be referred to by name, DNS or no DNS, and your proxy would send these request to nowhere. IMHO, Chris -Original Message- From: David Vaughan

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-27 Thread Kristof Zelechovski
Well, the log you have got is not complete, in that the crucial work is delegated to a subshell that is not being logged. What is interesting here is the preceding line starting with a '+'. You have snipped that one, unfortunately. Try changing ac_configure and friends to '/bin/sh -x ...'; you

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-26 Thread Kristof Zelechovski
the check point to put some debugging statement. Regards, Kristof Zelechovski wrote: Look for 'long long' within ./configure. Chris - -- View this message in context: http://www.nabble.com/Unable-to-run

[us...@httpd] Internal server error for script

2009-05-25 Thread Kristof Zelechovski
When I SetHandler cgi-script in .htaccess, I get Internal server error; when I SetHandler application/x-httpd-cgi, the script runs fine. What may the reason be? Chris

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-25 Thread Kristof Zelechovski
Apparently, Apache code needs either MAP_ANON defined or some special semantics for { mmap ('/dev/zero'); }; check the documentation for mmap what that would be, and check the documentation for your OS why it is not provided. HTH, Chris -Original Message- From: Nguyen Tien Duong

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-25 Thread Kristof Zelechovski
These lines are all wrong; they should report 4,1,4,4,8. You need the exact invocation of the compiler and the source code to figure out what went wrong this time. These should be in config.log. Then repeat the offending compilation by hand and see what you get and why. Chris -Original

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-25 Thread Kristof Zelechovski
Tell configure to be more verbose or to dump debugging information. Also check for any intermediate .c files created by configure; the latest one should contain the problem. Chris - The official User-To-User support forum of

RE: [us...@httpd] Unable to run ./configure when install apache http server.Error: decision on anonymous shared memory allocation method failed

2009-05-25 Thread Kristof Zelechovski
Look for 'long long' within ./configure. Chris - 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:

RE: [us...@httpd] Internal server error for script

2009-05-25 Thread Kristof Zelechovski
In addition, /var/log/httpd-suexec.log says: cannot get docroot information. _ From: Kristof Zelechovski [mailto:giecr...@stegny.2a.pl] Sent: Monday, May 25, 2009 8:50 AM To: users@httpd.apache.org Subject: [us...@httpd] Internal server error for script When I SetHandler cgi