in reply to Modules included more than once

You wouldn't happen to be using Apache::Reload would you? If so, you should be able to safely ignore the redefined warnings it sometimes throws. My mod_perl modules always start with:
use strict; use warnings; use Apache::Reload; no warnings 'redefine';
which will suppress the redefined warnings.

-Blake