ld.so: Undefined symbol "_perl_get_sv"

2006-01-28 Thread Derek Robson
looking for help with a setting up mod_perl openbsd-3.1 on x86 this is what i have in my httpd.conf __ LoadModule perl_module modules/mod_perl.so Alias /perl/ /var/www/answerguy/perl/ SetHandler perl-scr

Re: Patch for Apache::DBI v 0.9901 under MP2 using prefork

2006-01-28 Thread Michael Peters
Jonathan wrote: > > I ran into the same issue. I found a cheap workaround- > > I have a config handle. Same db, with a readonly user called > REGULARNAME_config , connects on prefork to pull in server config info. > > no matter what i do though, i can't seem to kill the config > connection

Re: Patch for Apache::DBI v 0.9901 under MP2 using prefork

2006-01-28 Thread Jonathan
I ran into the same issue. I found a cheap workaround- I have a config handle. Same db, with a readonly user called REGULARNAME_config , connects on prefork to pull in server config info. no matter what i do though, i can't seem to kill the config connection. it just kinda sits there an

Re: CORRECTED Patch for Apache::DBI v 0.9901 under MP2 using prefork

2006-01-28 Thread Clinton Gormley
> Any reason why this is bad? I've found one - only works if you use PerlRequire. PerlPostConfigRequire happens too late in the process. So instead, I've just forced childinit() to be called whether or not you use connect_on_init and reset the cache there. So in MP2, connect_on_init becomes a n

Patch for Apache::DBI v 0.9901 under MP2 using prefork

2006-01-28 Thread Clinton Gormley
Some of my perl modules connect to the database during startup, and I have been getting errors when my children try to connect to the database, because they end up trying to share the $dbh handles from the parent. The current code that tries to prevent handle caching (according to the comments) do