Re: Best compression for mod_perl application?

2003-07-01 Thread Sven Geisler
;-) > Slava > > - Original Message - > From: "Sven Geisler" <[EMAIL PROTECTED]> > To: "Nigel Hamilton" <[EMAIL PROTECTED]>; "Slava Bizyayev" > <[EMAIL PROTECTED]> > Cc: "Bill Marrs" <[EMAIL PROTECTED]>; <[EM

Re: Best compression for mod_perl application?

2003-07-01 Thread Sven Geisler
Hi Nigel, I had the same question three month ago. There are a few sources which compare the different modules. See mod_perl guide. My solution is now mod_deflate 1.0.18 with apache 1.3.27. My configuration in httpd.conf is: # activate compress # main switch DeflateEnable on

Re: Upgrading to perl 5.8.0 (newbie question)

2003-02-24 Thread Sven Geisler
Hi, mod_perl 1.27 is the latest stable version of mod_perl 1. You're fine. Regards, Sven. Am Mon, 2003-02-24 um 12.24 schrieb Gazi, Nasser (London): > Hi, > > I have a server which has the following pre-installed on it: > Apache/1.3.27 > mod_perl/1.27 > Perl/5.6.1 > > If I upgrade to Per

Re: pre-spawning database connections[newbie]

2003-01-13 Thread Sven Geisler
Hi Ben, Do you use Apache::DBI? I mean yes because you're using connect_on_init. Apache::DBI do not really close your DBI connection. You will get the same connection with the same connection parameters, when you call DBI->connect. All connections are cached by Apache::DBI. Yes, you should call

Re: array through pages

2003-01-13 Thread Sven Geisler
Hi koudjo, easy: use Storable qw(freeze thaw); use MIME::Base64 qw(encode_base64 decode_base64); # to encode use: $pass_throw_var = encode_base64(freeze(\@your_array)); ... # to decode use: $your_array_ref = thaw(decode_base64($pass_throw_var)); Regards Sven. Am Mon, 2003-01-13 um 10.26 sc

Re: cookies and IE

2002-10-02 Thread Sven Geisler
ct the site. > > Interesting... on the several browsers/OSs I had it tested on it seemed > to work. > > Anyway, if this is such a common question, who do you talk to to get it > stuck in the perl.apache.org page about cookies? :) > > alan > > -- Sven Geislere-mail: [EMAIL PROTECTED] Senior Developertel:(+49 30) 53 62 16 27

Re: cookies and IE

2002-10-01 Thread Sven Geisler
home/alan/code/rubberoven/mod_perl/Rubberoven/Dealer.pm >line 139. > Expires=Tue, 01 Oct 2002 18:30:31 GMT at >/home/alan/code/rubberoven/mod_perl/Rubberoven/Dealer.pm line 139. > > This is the same that is printed out when a working browser gets cookies > se

apache & mod_perl compiled with gcc 3.1 or Intel C/C++?

2002-08-14 Thread Sven Geisler
Hi, has someone experiences in gcc 3.1 or Intel C/C++ compiler for apache, perl & mod_perl on a production system with P4/XEON & RedHat. At this time I use gcc 2.96. I heard with gcc 2.96 the code optimization for P4/XEON is not good. Any ideas? Sven. -- Sven