Hi
It doesn't look there is a core file:
castle# find . -name core -type f -print
./t/core
castle# find . -name core -type f -exec ls -al {} \;
-rw------- 1 nobody nobody 9449820 Jun 23 09:54 ./t/core
castle# find . -name core -type f -exec file {} \; ./t/core: ELF 32-bit MSB core file SPARC Version 1, from 'httpd'
this is the right core. it's not a mod_perl core, it's an httpd core. mod_perl is just a module, httpd is the program.
in the future if you have very big attachment please try to upload it somewhere and post the URL to this location to the list.
btw, careful with using '-name core'. e.g. on linux sometimes you get 'core.$$' ($$ = pid). probably better doing:
find . | grep core
or
find . -name 'core*' -type f -print
__________________________________________________________________ Stas Bekman JAm_pH ------> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
