[us...@httpd] Invalid command 'php_flag', perhaps mis-spelled or defined by a module not included in the server configuration

2009-03-02 Thread J. Bakshi
Dear list, I like to suppress the error messages from my live site. That's why I have added the following in my .htaccess ~~~ php_flag display_startup_errors off php_flag display_errors off php_flag html_errors off ~~~ But after putting the

Re: [us...@httpd] Re: Max-Forwards has reached zero

2009-03-02 Thread Devon Harding
> > >> > Sounds like you've got apache proxying to itself, or in a loop > with one or more other proxy. Alternatively, something else > might be sending a bad request to Apache. But I can't say > anything useful from the information you've given. > > -- > Nick Kew > That was it, thanks!!!

[us...@httpd] Is there a known Header limit in mod_jk (or bug)?

2009-03-02 Thread fredk2
Hi, When I send a request to Tomcat via mod_jk I get the following error (code 413): Request Entity Too Large The requested resource /myapp/jsp/cookieshowvalue.jsp does not allow request data with GET requests, or the amount of data provided in the request exceeds the capacity limit. I total s

[us...@httpd] mod_ssl errors

2009-03-02 Thread Andres Morey
Hi All, I switched my LogLevel to info and noticed this error in the logs: [client ::1] (70007)The timeout specified has expired: SSL input filter read failed. Furthermore, when I do a graceful restart, I get this error: [client ::1] SSL library error 1 in handshake (server localhost:443) S

[us...@httpd] Re: Confused about LDAP authentication with Active Directory

2009-03-02 Thread Ed Avis
Mark H. Wood IUPUI.Edu> writes: >I've forgotten whether there was some special complicating factor in >the original request. Probably not - just my inability to translate the directory structure as seen in the browser into a query string. But in the end I found that Apache2::MSAD does the job w

Re: [us...@httpd] exclude errorDocument from authentication

2009-03-02 Thread Bob Ionescu
2009/3/2 : > Given that I have a root “” locked down with authentication and > that I want a custom "ErrorDocument 401 /register.html", how can I exclude > the /register.html page from the authentication location pattern? You can to override the setting with another location section:

Re: [us...@httpd] mod_cache and se

2009-03-02 Thread Eric Covener
On Mon, Mar 2, 2009 at 12:40 PM, Eric Covener wrote: > On Mon, Mar 2, 2009 at 12:26 PM, Nuno Fernandes > wrote: > >> SetEnvIf Request_URI "\.aspx$" no-cache > > This is in the manual but not yet in a 2.2.x release Updated the manual to reflect "version after 2.2.11" applicability in env.html

Re: [us...@httpd] mod_cache and se

2009-03-02 Thread Eric Covener
On Mon, Mar 2, 2009 at 12:26 PM, Nuno Fernandes wrote: > SetEnvIf Request_URI "\.aspx$" no-cache This is in the manual but not yet in a 2.2.x release -- Eric Covener cove...@gmail.com - The official User-To-User support forum

RE: [us...@httpd] mod_cache and se

2009-03-02 Thread Anthony J. Biacco
An environmental variable of no-cache won't do anything, it doesn't modify the response headers at all for you. But you can try this.. SetEnvIf Request_URI "\.aspx$" DO_nocache Header set Cache-Control no-cache env=DO_nocache Header unset Expires env=DO_nocache -Tony --- M

[us...@httpd] mod_cache and se

2009-03-02 Thread Nuno Fernandes
Hi, I'm using mod_cache and mod_disk_cache and mod_proxy in reverse-proxy mode to cache some content of some internal servers. CacheRoot "/var/cache/httpd/mod_proxy" CacheEnable disk / CacheDirLevels 5 CacheDirLength 3 CacheMinFileSize 1 CacheMaxFileSize 100 Set

[us...@httpd] exclude errorDocument from authentication

2009-03-02 Thread thomas.black
Given that I have a root "" locked down with authentication and that I want a custom "ErrorDocument 401 /register.html", how can I exclude the /register.html page from the authentication location pattern? Jeff Black This message is for the designated recipient only and may contain privileged,

Re: [us...@httpd] preforked processes don't want to die over time -> memory full

2009-03-02 Thread Tomasz Chmielewski
Tomasz Chmielewski schrieb: I have Apache 2.2.3 server, which over time (a couple of days) uses lots of memory. What uses lots of memory? Apache processes which do not want to die for some reason. The server can have only 10-20 active connections to httpd (as reported by netstat's ESTABLISHED

Re: [us...@httpd] Re: Confused about LDAP authentication with Active ?Directory

2009-03-02 Thread Mark H. Wood
On Fri, Feb 27, 2009 at 05:19:18PM +, Ed Avis wrote: > AuthLDAPBindDN "WCL\\tradingsystems" That's not a DN. A DN would look something like: sAMAccountName=tradingsystems,dc=WCL,dc=example,dc=com -- Mark H. Wood, Lead System Programmer mw...@iupui.edu Friends don't let frien

Re: [us...@httpd] Re: Confused about LDAP authentication with Active Directory

2009-03-02 Thread Mark H. Wood
I've forgotten whether there was some special complicating factor in the original request. This works here with 2.2.10: AuthTypeBasic AuthBasicProvider ldap AuthName"ADS" AuthBasicAuthoritative On AuthLDAPURL "ldap://domain controller list/ou=

[us...@httpd] Re: Confused about LDAP authentication with Active Directory - use Apache2::AuthenMSAD

2009-03-02 Thread Ed Avis
Krist van Besien gmail.com> writes: >I've bene using the following module for apache AD authentication for >quite some time. > >http://search.cpan.org/~reggers/Apache2-AuthenMSAD-0.02/AuthenMSAD.pm Thanks - that's exactly what I needed. I now have this: AuthType Basic AuthName

Re: [us...@httpd] Reading images from a jar

2009-03-02 Thread Thorsten Scherler
On Mon, 2009-03-02 at 10:59 +0100, Krist van Besien wrote: > You cannot have apache serve files inside a jar. (A jar is a > compressed archive, after all). Hmm, yeah, I hoped it could. > What I would do in your case is extract the static content from your > webapp, and deploy it to your apache we

Re: [us...@httpd] Reading images from a jar

2009-03-02 Thread Krist van Besien
On Mon, Mar 2, 2009 at 9:26 AM, Thorsten Scherler wrote: > Can I link into a jar via httpd directly? You cannot have apache serve files inside a jar. (A jar is a compressed archive, after all). What I would do in your case is extract the static content from your webapp, and deploy it to your ap

Re: [us...@httpd] Mixing rewrite with authn_dbd: Rewriting based on path value stored in mysql table

2009-03-02 Thread Roman Medina-Heigl Hernandez
Hello, I have a *partial*-working solution which I'd like to share with you. It's tricky (based on my own home structure) and limited, though. Feedback is appreciated, please! Some comments: - Debian 5.0 includes ajp 1.2.12, so I cannot get the url/dir from another column in users' table (this fu

[us...@httpd] ssl + apache2

2009-03-02 Thread Kaushal Shriyan
Hi, is there a step by step guide to configure ssl on apache2 on Gentoo OS? Thanks and Regards Kaushal

[us...@httpd] Reading images from a jar

2009-03-02 Thread Thorsten Scherler
Hi all, we have developed a block to add a new section to our page. http://juntadeandalucia.es/28f2009/index.html This section is independent from the rest of the portal. Since we are using Apache httpd to serve all images, css and js we had to implement a rewrite rule to the work dir of tomcat