[users@httpd] mod_session

2011-11-23 Thread Sascha Kersken
Hi @all, the mod_session documentation at http://httpd.apache.org/docs/trunk/en/mod/mod_session.html states that the session directives are valid in .htaccess context, but they do not contain information about the AllowOverride value necessary to actually use them in this context. Does anyone

Re: [users@httpd] mod_session

2011-11-23 Thread Sascha Kersken
Am 23.11.2011 um 13:25 schrieb Igor Galić: - Original Message - Hi @all, the mod_session documentation at http://httpd.apache.org/docs/trunk/en/mod/mod_session.html states that the session directives are valid in .htaccess context, but they do not contain information about

Re: [us...@httpd] list of apache modules ?

2009-12-03 Thread Sascha Kersken
Hi, I am using RHEL 5.2 and newbie in apache, as a preliminary step i executed following command to list apache modules root# httpd -l It showed me following output, core.c prefork.c http_core.c mod_so.c You can use # httpd -t -D DUMP_MODULES or its short form # httpd -M for a list of

Re: [us...@httpd] Marked as spam?

2009-12-01 Thread Sascha Kersken
Hi, I just tried to reply to a message on the how to get multiple SSL with name based vhost discussion, but it was marked as spam I don't think I mentioned anything particularly spam worthy.. Full copy of the raw email (as gmail remembers it) is at http://pastebin.com/m7aba774b I often

Re: mod_proxy und authorization

2009-02-27 Thread Sascha Kersken
Hi, [...] Location / AuthName AuthType basic AuthBasicProvider ldap AuthzLDAPAuthoritative off AuthLDAPBindDN AuthLDAPBindPassword AuthLDAPUrl AuthUserFile /dev/null /Location ProxyPass / http://intern.example.com/ ProxyPassReverse / http://intern.example.com/ Wäre nett, wenn

Re: [us...@httpd] authnz_ldap_module: [Bad search filter] error

2009-02-26 Thread Sascha Kersken
Hi, I have a strange error with authnz_ldap_module. I have searched the web and tried a lot of combinations, but nothing helps. AuthLDAPUrl ldap://server.three.two.one:389/dc=three, dc=two, dc=one?sAMAccountName?sub?(objectClass=*) NONE There must not be blanks between

Re: [us...@httpd] authnz_ldap_module: [Bad search filter] error

2009-02-26 Thread Sascha Kersken
But unfortunately it's not the cause.. No, and I've got to correct my previous answer: RFC 2253 states that Implementations MUST allow for space (' ' ASCII 32) characters to be present between name-component and ',', between attributeTypeAndValue and '+', between attributeType and '=', and

Re: [us...@httpd] authnz_ldap_module: [Bad search filter] error

2009-02-26 Thread Sascha Kersken
Think I found it: AuthLDAPBindDN ad...@three.two.one The value of AuthLDAPBindDN must be a valid LDAP DN (something like cn=username,dc=mydomainname...), but you are using something that looks like an email address. Consequently, your log entry complains about user

Re: [EMAIL PROTECTED] TUX integration in Apache

2008-11-25 Thread Sascha Kersken
André Warnier wrote: Arnab Ganguly wrote: Hi All, Curious to know whether the TUX integration is being done with the Apache?How do I check that and what is the procedure to enable and disable? Thanks and regards Arnab Is this some kind of game where we are supposed to guess what you mean ?

Re: [EMAIL PROTECTED] Escaped forward slash

2008-11-07 Thread Sascha Kersken
Hi, [...] Note that we're using apache 1.3.3x Well, starting with Apache 2.0.46 (and in all 2.2 releases) there's a core directive called AllowEncodedSlashes. By default, it's turned off so that encoded slashes are forbidden. If you turn it on, they become allowed. Unfortunately, this

Re: [EMAIL PROTECTED] Can use Alias out of root directory?

2008-10-26 Thread Sascha Kersken
Hi, Can I set Alias in httpd.conf to point to directory that is not under the root directory? Lets say I have folder A, folder B (under A) and folder C (under B) I also have folder D (under A). My root directory point to folder C. Can I set Alias for folder D or it will out of scope? you

Re: [EMAIL PROTECTED] Multiple rewrite rules

2008-10-21 Thread Sascha Kersken
Hi, I have a quick question regarding multiple mod_rewrite rules. Our security nazis have told us that we need to disable the HTTP TRACE method on our servers. The version we are using (2.0.52-41.ent, i.e. RedHat's rpm) doesn't have the TraceEnable option so we need to use the RewriteRule

Re: [EMAIL PROTECTED] how does apache serves connections and requests ?

2008-07-01 Thread Sascha Kersken
Hi, Hello all i like to ask basic question about Apache and how does it servers the requests i was reading and also saw that in unix machine its spawn process at start and every process uses N threads and in windows it is multithread is that correct ? does every single thread serve one

Re: [EMAIL PROTECTED] mod_rewrite difference Apache 2.0 and 2.2 ?

2008-06-15 Thread Sascha Kersken
Krist van Besien schrieb: On Sat, Jun 14, 2008 at 13:41, Jan [EMAIL PROTECTED] wrote: Hi! I have just noticed yesterday that one of my mod_rewrite rules which works fine in Apache 2.0 doesn't seem to work in Apache 2.2. Here is the rule: RewriteRule ^portfolio/([0-9]+)(/)?$

Re: [EMAIL PROTECTED] LoadModule directive

2008-03-31 Thread Sascha Kersken
Hello, HI, Can I have LoadModule directive inside the virtual server block in httpd.conf i.e VirtualHost *:100 DocumentRoot C:/vhost ServerName RuntimeTest1.apple.com *LoadModule setenvif_module modules/myapp.so* #ErrorLog logs/error.log #CustomLog CustomLog

Re: [EMAIL PROTECTED] LoadModule directive

2008-03-31 Thread Sascha Kersken
Hey, hi, Where do I do module specific settings ? Actually myapp.so(in example below) is a filter which redirects request to other custm build application. I would like to redirect all the request of RuntimeTest1.apple.com to custom application while other virtual host ,configured name based

Re: [EMAIL PROTECTED] LoadModule directive

2008-03-31 Thread Sascha Kersken
Hey, Hi, Thanks !! never mind :). I wrote myapp.so. Are you asking to change the implementation of myapp.so in such a way so that it reads some instruction in virtual host directive and take action upon. i.e I have following module in global part of httpd.conf LoadModule my_module

Re: [EMAIL PROTECTED] RewriteEngine

2007-05-05 Thread Sascha Kersken
Hi, why don't you have your PHP script ViewOffer.php do the redirection? Like: ?php if (!isset($_REQUEST['id'])) { header (Location: Offers.php); } Regards Sascha - Original Message - From: Davi Leal [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Saturday, May 05, 2007 11:04 AM

Re: [EMAIL PROTECTED] apache 2.2.4 and SSL

2007-05-05 Thread Sascha Kersken
Hi, but what those 2 lines mean ? i did not find something in apache documentation Actually, it's quite verbose on this: http://httpd.apache.org/docs/2.2/mod/mod_ssl.html#sslrandomseed Regards Sascha - The official

Re: [EMAIL PROTECTED] Apache2.2.4 - LDAP

2007-04-23 Thread Sascha Kersken
you used merely sets the REMOTE_USER environment variable but doesn't specify the user for the LDAP bind. Regards Sascha -Original Message- From: Sascha Kersken [mailto:[EMAIL PROTECTED] Sent: Monday, April 23, 2007 2:00 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED

Re: [EMAIL PROTECTED] Uninstalling Apache2

2007-01-22 Thread Sascha Kersken
I am fed up with Apache2 installation. I need to start from scratch. Can any one help me to uninstall Apache2 completely? On which platform? Best, Sascha - The official User-To-User support forum of the Apache HTTP Server

Re: [EMAIL PROTECTED] Uninstalling Apache2

2007-01-22 Thread Sascha Kersken
On linux platform. If you used the official Apache package from your distribution (or an update of this package), you can simply uninstall it with your package manager (e.g. rpm -e PACKAGE or apt-get remove PACKAGE). If you compiled Apache from source, however, you need to delete it

Re: [EMAIL PROTECTED] Virtual Host Issue

2007-01-07 Thread Sascha Kersken
Virtual Host IssueHi, the first virtual host doesn't have a ServerName. Regards Sascha - Original Message - From: Karl-Heinz Schulz To: users@httpd.apache.org Sent: Sunday, January 07, 2007 7:11 PM Subject: [EMAIL PROTECTED] Virtual Host Issue I try to enable virtual hosts but all

Re: mod_autoindex

2006-12-20 Thread Sascha Kersken
Hi, Ich habe ein Problem mit mod_autoindex. Es funktioniert soweit wunderbar und gut, das Problem ist aber, dass es nur begrenzt Dateien eines Ordners anzeigt. Bei mir sind das z.Zt. ~250 Stück. Darüber hinaus gibt es keine Möglichkeit per Link, an die restlichen Dateien zu kommen (Seite 2

Re: [EMAIL PROTECTED] Behaviour when CGI script fails to return?

2006-11-27 Thread Sascha Kersken
Hi Dale, I'm guessing that after some timeout (which is being recorded in the error log) the server is killing the process off. Is this correct? If so, how can I change the timeout with a configuration setting? Is the generic TimeOut parameter used for this purpose Yes. (You could test

[EMAIL PROTECTED] httpd 2.2.3 segfaults using mod_authn_dbd/sqlite

2006-11-07 Thread Sascha Kersken
Hi, when I try to use mod_authn_dbd with sqlite3 driver (the mysql driver doesn't compile at all with any of the contradictory instructions on the web, btw), I encounter the following segfault message: /usr/local/apache2/bin/apachectl: line 78: 24956 Segmentation fault $HTTPD -k $ARGV

Re: Apache 2 deinstallieren

2006-11-05 Thread Sascha Kersken
Hallo, bei einfachem ./configure ohne nähere Angaben wird alles unter /usr/local/apache2 installiert. Insofern genügt es tatsächlich, genau dieses Verzeichnis zu löschen: # rm -rf /usr/local/apache2 Bei anderen Installationslayouts wird es dagegen komplizierter, weil die einzelnen Dateien

Re: [EMAIL PROTECTED] view a directory content from browser

2006-08-16 Thread Sascha Kersken
Hi, It's this one: Options -Indexes See http://httpd.apache.org/docs/2.2/mod/core.html#options Regards Sascha - Original Message - From: [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Wednesday, August 16, 2006 11:31 AM Subject: [EMAIL PROTECTED] view a

Re: LINUX: Logdateien in Named Pipe ?

2006-05-14 Thread Sascha Kersken
Hallo Harry, nur so 'ne Vermutung: Hat die User-ID, unter der der Apache Client-Anfragen beantwortet, Schreibberechtigung für die Named Pipe? Schöne Grüße Sascha - Original Message - From: Harry Rüter [EMAIL PROTECTED] To: users-de@httpd.apache.org Sent: Sunday, May 14, 2006 10:33

Re: Zwei Apache-Server auf einer Linux-Maschine

2006-05-03 Thread Sascha Kersken
Hallo, eigentlich genügt es, beim configure-Aufruf zwei Optionen zu setzen: * --prefix=/absolutes/Installations/verzeichnis (installiert den gesamten Apache-Verzeichnisbaum unter dieses Verzeichnis -- Vorschlag: /usr/local/apache22; auch ServerRoot und DocumentRoot werden automatisch

Re: [EMAIL PROTECTED] ASP on Apache

2006-05-01 Thread Sascha Kersken
Hi, You actually have to buy another piece of software to support ASP.NET under Linux with Apache. I don't remember the name of the software. That's mod_adpdotnet which you don't actually have to buy because it's free software under the terms of the Apache Software License. See

Re: [EMAIL PROTECTED] Premature end of script headers

2006-02-21 Thread Sascha Kersken
Hi, Apache requires CGI scripts to generate their own Content-type headers. Try #!/usr/bin/perl print Content-type: text/plain\n\nHello; This should work. Best Sascha - Original Message - From: Tom Cat [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Tuesday, February 21, 2006

Re: apache http 2.1 windows

2005-11-19 Thread Sascha Kersken
unter Windows. Dafür ist aber MS Visual Studio erforderlich (teuer!). Daher eine andere Frage: WAS genau funktioniert denn an der LDAP-Authentifizierung nicht? Möglicherweise lässt es sich ja doch mit 2.0 in den Griff kriegen. Schöne Grüße Sascha Kersken

Re: [EMAIL PROTECTED] log file

2005-11-19 Thread Sascha Kersken
Hello, - Original Message - From: Montserrat Mateos [EMAIL PROTECTED] To: users@httpd.apache.org Sent: Saturday, November 19, 2005 11:50 AM Subject: [EMAIL PROTECTED] log file Hi, I want configure my access log file for apache and I want that the log file only save the client request

Re: [EMAIL PROTECTED] Authentication against Windows domain for Apache on Linux

2005-08-24 Thread Sascha Kersken
Hi, unfortunately, you didn't write what version of Windows Server you are using. If you are running Windows 2000 Server or Windows Server 2003 as an Active Directory domain controller, mod_auth_ldap works just fine. Regards Sascha - Original Message - From: Tom DSilva [EMAIL