Re: [RFC: performance] Initializing DBI.pm

2000-06-04 Thread Eric Cholet
On Sun, Jun 04, 2000 at 08:58:11PM +0100, Tim Bunce wrote: > On Sun, Jun 04, 2000 at 10:57:57PM +0300, Stas Bekman wrote: > > > > This all won't be possible without you and other great folks writing and > > maintaining this amaizing software... So the biggest thanks goes to you :) > > I've not

Subroutine redefined?

2000-06-04 Thread Schuyler D. Erle
Greetings. I'm running Apache/1.3.12 with mod_perl/1.24 and mod_ssl/2.6.4 on a Debian system. (I know mod_ssl and mod_perl on the same server is begging for trouble, but that's the way the site was designed, well before I got there...) We recently recompiled the server with mod_perl's EVERYTHING

Re: Wierd user agent strings

2000-06-04 Thread Renzo Toma
Good question, we have a database for browser usage analysis. It currently holds roughly 55.000 unique tags. A good 4000 of em are bogus strings like posted below. So I love to hear some theories too! Oh fyi, May's score was 80% MSIE, 18% NS.. Cheers, -Renzo > Does anyone know what User-Agent

Apache::ASP

2000-06-04 Thread He Ding
I ran the example ASP script but had such errors. Which expert can explain it? Thanks. [Sun Jun 4 15:15:11 2000] [error] [asp] [937] [debug] RUN ASP (v0.18) for /usr/local/apache/http/webhome/eg/index.html [Sun Jun 4 15:15:11 2000] [error] [asp] [937] [debug] GlobalASA package Apache::ASP::De

Apache::ASP

2000-06-04 Thread He Ding
I ran the example ASP script but had such errors. Which expert can explain it? Thanks. [Sun Jun 4 15:15:11 2000] [error] [asp] [937] [debug] RUN ASP (v0.18) for /usr/local/apache/http/webhome/eg/index.html [Sun Jun 4 15:15:11 2000] [error] [asp] [937] [debug] GlobalASA package Apache::ASP::De

Wierd user agent strings

2000-06-04 Thread Tim Bunce
Does anyone know what User-Agent strings like these may mean: (r\177xx\303\203x0\226H (r\177xx\303\203xT\365G (r\177xx\303\203xt]D (r\210xP\223G (r\210x\354\250D (r\210xx\303\214xH?E (r\210xx\303\214xP+E (r\210xx\303\214xXCE (r\210xx\303\214x\$EE (r\210xx\303\214x\204VF (r\2

Re: Warning about guide exceptions docs...

2000-06-04 Thread Stas Bekman
On Sat, 3 Jun 2000, Matt Sergeant wrote: > Just a "heads up" about the exceptions section of the guide. Don't try and > create more than one generic exception handler on your server. As I've > just discovered it really confuses things. Create one class and one class > only for handling exceptions

Re: [RFC: performance] Initializing DBI.pm

2000-06-04 Thread Tim Bunce
On Sun, Jun 04, 2000 at 10:57:57PM +0300, Stas Bekman wrote: > > This all won't be possible without you and other great folks writing and > maintaining this amaizing software... So the biggest thanks goes to you :) I've not done much of either this last year, however, I'm hoping to get a new be

Re: [RFC: performance] Initializing DBI.pm

2000-06-04 Thread Stas Bekman
On Sun, 4 Jun 2000, Tim Bunce wrote: > On Sat, Jun 03, 2000 at 03:54:37AM +0300, Stas Bekman wrote: > > Here is a complete version. comments are very welcome before it enters the > > guide: > > > > The first example is the C module. As you know C works with > > many database drivers falling into

Re: [RFC: performance] Initializing DBI.pm

2000-06-04 Thread Tim Bunce
On Sat, Jun 03, 2000 at 03:54:37AM +0300, Stas Bekman wrote: > Here is a complete version. comments are very welcome before it enters the > guide: > > The first example is the C module. As you know C works with > many database drivers falling into the C category, > e.g. C. It's not enough to prel

Re: [benchmark] DBI/preload (was Re: [RFC] improving memory mapping thru code exercising)

2000-06-04 Thread Stas Bekman
On Sun, 4 Jun 2000, Tim Bunce wrote: > On Sat, Jun 03, 2000 at 02:49:47AM +0300, Stas Bekman wrote: > > On Fri, 2 Jun 2000, Perrin Harkins wrote: > > > > > On Sat, 3 Jun 2000, Stas Bekman wrote: > > > > * install_driver (2): > > > > DBI->install_driver("mysql"); > > > > > > I've never seen t

Re: [benchmark] DBI/preload (was Re: [RFC] improving memory mapping thru code exercising)

2000-06-04 Thread Tim Bunce
On Sat, Jun 03, 2000 at 02:49:47AM +0300, Stas Bekman wrote: > On Fri, 2 Jun 2000, Perrin Harkins wrote: > > > On Sat, 3 Jun 2000, Stas Bekman wrote: > > > * install_driver (2): > > > DBI->install_driver("mysql"); > > > > I've never seen that before, > > There is always a first time :) > >

Re: Can't create custom configuration directives

2000-06-04 Thread Rob Tanner
Matt Sergeant wrote: > > On Sun, 4 Jun 2000, Rob Tanner wrote: > > > > That you define $VERSION before the bootstrap line. > > > > > > > As below: > > > > $VERSION = '0.9b'; > > > > if ( $ENV{'MOD_PERL'} ) { > > no strict; > > @ISA = qw(DynaLoader); > > __PACKAGE__->bootstrap($VERSION); >

RE: Embperl struggles

2000-06-04 Thread Gerald Richter
> > 2. requrire'ing a file that defines some functions sometimes gives me >an error that the functions in that file are _not_ defined... > I append you a mail I write last month that should explain what happens... > 3. I have a hard time understanding when to use [- -] and when to use >[

Re: mod_perl, mod_rewrite, package namespace

2000-06-04 Thread Ime Smits
Hi, I just wanted to let you know that (once again) re-RTFM the manual *twice* solved my muliple compilation problem. The solution is adding [PT] to the RewriteRule. RewriteRule ^/query/(.*) /query.pl?$1 [PT] -- http://www.apache.org/docs/mod/mod_rewrite.html: 'passthrough|PT' (pass through to

Re: Can't create custom configuration directives

2000-06-04 Thread Matt Sergeant
On Sun, 4 Jun 2000, Rob Tanner wrote: > > That you define $VERSION before the bootstrap line. > > > > As below: > > $VERSION = '0.9b'; > > if ( $ENV{'MOD_PERL'} ) { > no strict; > @ISA = qw(DynaLoader); > __PACKAGE__->bootstrap($VERSION); > } That might represent a problem. $VERSION is

RE:Apache::Session and Postgres (was: Embperl Session ID problem with %udat and postgres)

2000-06-04 Thread Gerald Richter
I don't have tried Apache::Session and Postgres. I forward your message to the mod_perl list, where Apache::Session is supported Gerald > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of > Florian Dorrer > Sent: Thursday, June 01, 2000 5:37 PM > To: [

RE: non-DSO mod_perl, Embperl, and AIX not working

2000-06-04 Thread Gerald Richter
Embperl 1.3b3 and mod_perl 1.24 should work on AIX, but I don't have any knowledge about AIX. I send a copy to Jens Uwe, who has made the patches for Embperl to work on AIX, maybe he can help Gerald > > I am using IBM's C complier (cc) under AIX 4.3.3 with Apache 1.3.12, > mod_perl 1.24 (static

Re: Where can I find MOD_PERL for win32 ?

2000-06-04 Thread Alex Farber
Walter Hissink wrote: > I am looking for the MOD_PERL module for Win32 systems. The link to the ftp > provided on the apache.org website doesn't seem to contain the file in ftp://theoryx5.uwinnipeg.ca/pub/other/ or http://www.robert.cz/misc/

Re: Can't create custom configuration directives

2000-06-04 Thread Rob Tanner
Matt Sergeant wrote: > > I've snipped the lengthy explanation. Here's a few things you can check: > > There's no old version of your module in the ordinary perl lib directory, > rather than the i386-foo/ directory. Interesting thought, so I checked it. My module is actually under the Apache se

mod_perl, mod_rewrite, package namespace

2000-06-04 Thread Ime Smits
Hi, I have a script which takes some input variables in the QUERY_STRING, let's say: http://localhost/query.pl?archive=1&chapter=2§ion=3&subsection=4 This is working fine from the user perspective. But, I found out that most search engines just discard the querystring, so my site won't get inde

Where can I find MOD_PERL for win32 ?

2000-06-04 Thread Walter Hissink
Hello, I am looking for the MOD_PERL module for Win32 systems. The link to the ftp provided on the apache.org website doesn't seem to contain the file in question. I hope someone can help. Sincerely, Walter

Re: Can't create custom configuration directives

2000-06-04 Thread Matt Sergeant
I've snipped the lengthy explanation. Here's a few things you can check: There's no old version of your module in the ordinary perl lib directory, rather than the i386-foo/ directory. That you use DynaLoader. That you define $VERSION before the bootstrap line. -- Fastnet Software Ltd. High