Re: [EMAIL PROTECTED] CGI question

2007-04-14 Thread Joost de Heer
> I used wget. It is a little hard to capture with firefox because the > redirect gets followed before you have a chance to examine where you > are. And it can't be done manually (via telnet) because you are using > ssl. HTTPS manual testing can be done with: openssl s_client -connect server:port

Re: [EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread Dmitriy Gorbenko
Joshua Slive пишет: On 4/14/07, Joshua Slive <[EMAIL PROTECTED]> wrote: That's relatively easy. In the first vhost, use something like ServerAlias 1*.domain.com 2*.domain.com 3*.domain.com ... I forgot to say, you'll also need to reorder the two sections, because requests that don't match an

Re: Re[2]: [EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread Joshua Slive
On 4/14/07, Joshua Slive <[EMAIL PROTECTED]> wrote: That's relatively easy. In the first vhost, use something like ServerAlias 1*.domain.com 2*.domain.com 3*.domain.com ... I forgot to say, you'll also need to reorder the two sections, because requests that don't match any ServerName/ServerAl

Re: Re[2]: [EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread Joshua Slive
On 4/14/07, Dmitriy Gorbenko <[EMAIL PROTECTED]> wrote: The problem in that I should process domains like [0-9]*.domain.com by one way, and domain names like [a-z]{3}.domain.com by another. This what I need: ServerName [0-9]*.domain.com ProxyRequests Off ProxyPass / htt

Re[2]: [EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread Dmitriy Gorbenko
megaspaz пишет: Serveralias supports * but I'm not sure if it supports the regex you want, but if it's one vhost, then ServerAlias *.some.domain should work for you. On Saturday 14 April 2007 11:05 am, Dmitriy Gorbenko wrote: Hi all I would like to create a VirtualHost to process domain n

Re: [EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread megaspaz
Serveralias supports * but I'm not sure if it supports the regex you want, but if it's one vhost, then ServerAlias *.some.domain should work for you. On Saturday 14 April 2007 11:05 am, Dmitriy Gorbenko wrote: > Hi all > > I would like to create a VirtualHost to process domain names such as > [0

[EMAIL PROTECTED] ServerName directive regular expression

2007-04-14 Thread Dmitriy Gorbenko
Hi all I would like to create a VirtualHost to process domain names such as [0-9]*.some.domain. Currently, ServerName directive did not support regular expressions, but maybe I can do it by another way ? Thanks. - The offi

Re: [EMAIL PROTECTED] Apache2.2 php5 with sessions

2007-04-14 Thread Sander Temme
Hey Ofloo, On Apr 14, 2007, at 5:47 AM, Ofloo wrote: This might be an ignorant question, but it bothers me, I have created a session I left my browser open for a week and yet the session still exists. Is this normal !? I checked session_cache_expire and this is set to 180 (default) but af

[EMAIL PROTECTED] Apache2.2 php5 with sessions

2007-04-14 Thread Ofloo
This might be an ignorant question, but it bothers me, I have created a session I left my browser open for a week and yet the session still exists. Is this normal !? I checked session_cache_expire and this is set to 180 (default) but after one week all variables still exist.. -- View this message

[EMAIL PROTECTED] authn_dbm problem

2007-04-14 Thread Pavel Stratil
Hi, I keep getting the following error when trying to use dbm files for authentication: [Sat Apr 14 13:22:01 2007] [error] [client 127.0.0.1] (2)No such file or directory: could not open dbm (type SDBM) auth file: /opt/services/apache/htdocs/dbmpasswd The htaccess is: AuthType basic AuthNam

Re: [EMAIL PROTECTED] Calling COBOL via CGI

2007-04-14 Thread Jaqui Greenlees
--- Joshua Andrews <[EMAIL PROTECTED]> wrote: > I am reviewing technical possibilities for calling > COBOL programs via CGI to > read mainframe flat-file data. I would probably > compile the COBOL to > executables and then pass parameters. > > My main questions are: > > 1. Has anyone else don