Re: mod_perl httpd doesn't start as DSO

2003-11-26 Thread BeerBong
d just keep 'use DBI'? I just wanted to load DBD::Oracle in parent process for sharing it among children. (and it works fine for statically compiled mod_perl)... - use strict; use DBI; my $r = shift; $r->send_http_header('text/plain'); my $dbh = DBI->connect('DBI:Oracle:S

Re: mod_perl httpd doesn't start as DSO

2003-11-26 Thread BeerBong
->selectrow_array("select count(*) from portal.contents"); print "$news\n"; $dbh->disconnect; -- works fine... :-/ -- Sergey Polyakov aka BeerBong Chief of WebZavod http://www.webzavod.ru Tel. +7 (8462) 43-93-85 | +7 (8462) 43-93-86

Re: mod_perl httpd doesn't start as DSO

2003-11-26 Thread BeerBong
> > Hello! > > > > I wanted to build a debian package of apache for my specific purposes. > > My specific purpose is mod_accel support. > > I downloaded a source for apache debian package (apache-1.3.26) > > from stable distribution, add mod_accel patches and it > > have been compiled well. > [...]

mod_perl httpd doesn't start as DSO

2003-11-26 Thread BeerBong
conf", p=0x8089f30, ptemp=0x808df60) at http_config.c:1355 #14 0x08055efc in ap_read_config (p=0x8089f30, ptemp=0x808df60, confname=0x8082980 "/etc/apache/httpd.conf") at http_config.c:1647 #15 0x0805e4d8 in main (argc=3, argv=0xb6e4) at http_main.c:5528 I dont know what to do no