in reply to using your own mod_perl modules on hosted sites?

If you want to use mod_perl and your ISP won't support it, you could look at using one of the ones listed here.
  • Comment on Re: using your own mod_perl modules on hosted sites?

Replies are listed 'Best First'.
Re^2: using your own mod_perl modules on hosted sites?
by Anonymous Monk on Apr 05, 2006 at 18:35 UTC
    PerlModule Apache::CPH

    <Location /CPH>
    SetHandler "perl-script"
    PerlHandler Apache::CPH
    </Location>

    This is what i want, but it would mean each time the module is updated
    the webserver would have to be restarted.
    will web hosting companies allow this?

      A standard shared-hosting provider will not allow mod_perl.
      You can completely control the Apache server with mod_perl.
      You are unlikely to get permission to restart Apache.
      Those hosts which allow mod_perl in a shared environment usually want to vet your code first, thise may be an onerous process if your code is not clear and simple.