in reply to Re^6: Profiling under mod_perl
in thread Profiling under mod_perl

One more thing: make sure that the user your server runs as is able to write to the directory that the file should end up in.

Replies are listed 'Best First'.
Re^8: Profiling under mod_perl
by aufflick (Deacon) on Mar 01, 2005 at 00:47 UTC
    yaha - Of course... since the dprof file is written by the child, not the master, the effective user is not root and thus has no write access to the apaceh root.

    Solution is to add the following to the httpd command line:

    -d `pwd` Of course a non-dev situation would require something other than pwd, but you really shouldn't be profiling a production system ;)

    Thankyou - mods up everyone.