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
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
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
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
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