Kevin Field
Kevin Field
OK, this works, in the sense that it does redirect the output elsewhere. However, it still only includes ErrorLogging.pm and does not seem to add anything else as I browse...
(Tested with Devel-Cover 1.20, Perl 5.10.1 on CentOS 6.5 64-bit, with mod_perl 2.0.4.)
Oh, and I guess the fact that it includes ErrorLogging.pm in the HTML output is also an improvement. :) But not quite enough to actually check my app...
What triggers it to dump the file immediately, I wonder?
I tried each of these option groups and the result did not change: StartServers 8 MinSpareServers 5 MaxSpareServers 20 ServerLimit 50 MaxClients 50 MaxRequestsPerChild 4000 StartServers 1 MinSpareServers 1 MaxSpareServers...
Also with ``` MaxClients 1 MaxRequestsPerChild 0 ``` ...as suggested for NYTProf.
I tried starting the server with -X, and using PerlSwitches plain outside of a block and near the start (before LoadModule mod_perl even) of my conf. It does something interesting:...
In fact, there is, of course...so I made a script containing just this: ``` use Devel::Cover; Devel::Cover::report(); ``` ...and called it via http, and it did in fact write cover_db....
Success! The problem was, I suppose since I start the httpd server with sudo, that the cover_db and runs dirs get created as root:root. When I chmod 777'd those dirs...
Unfortunately I don't have something handy. Are you not seeing the same behaviour if you merely rename a currently working file to have a space in it, and then run...