Re: Where from does Apache-Test get the servername used

2006-03-24 Thread Torsten Foertsch
On Thursday 23 March 2006 00:02, Tom Schindl wrote: > how does Apache-Test retrieves the servername inserted into httpd.conf > is it possible to access this value while running tests? I think, Apache::Test::vars->{servername}. $ APACHE_TEST_HTTPD=/opt/apache22/sbin/httpd perl -MApache::Test -MDat

Re: Where from does Apache-Test get the servername used

2006-03-24 Thread Tom Schindl
Thanks found it myself some minutes after posting to list. i needed it for my TomKit-0.01_4-release. Tom Torsten Foertsch wrote: > On Thursday 23 March 2006 00:02, Tom Schindl wrote: > >>how does Apache-Test retrieves the servername inserted into httpd.conf >>is it possible to access this value

Re: Apache2/MP2 Segfaults when loading Text::Textile

2006-03-24 Thread Christopher H. Laco
Christopher H. Laco wrote: > That's in on the nose. Text::Textile uses Image::Size, which uses > Image::Magick. Any incantation of pre loading this modules makes apache > core. > > The funny part is, it only segfaults the main httpd process. apachectl > start yields a core dump, but the child pro

Re: Apache2/MP2 Segfaults when loading Text::Textile

2006-03-24 Thread Tom Schindl
As a sidenote often it is not really desired/dangerous to run image creation as a mod_perl handler because of the nature of perl, memory allocated once is never freed until the process shutdowns or is killed (by your Apache::SizeLimit handler). I'm not familiar with fastcgi but you should make sur

Re: Apache2/MP2 Segfaults when loading Text::Textile

2006-03-24 Thread Christopher H. Laco
Tom Schindl wrote: > As a sidenote often it is not really desired/dangerous to run image > creation as a mod_perl handler because of the nature of perl, memory > allocated once is never freed until the process shutdowns or is killed > (by your Apache::SizeLimit handler). > > I'm not familiar with