in reply to Re^2: Using mod_perl, with SSI?
in thread Using mod_perl, with SSI?

that doesn't include the SSi configuration

The error message suggests you're trying Apache::Include syntax but you're using https://httpd.apache.org/docs/2.2/mod/mod_include.html which doesn't recognize it

There is Apache2::compat which ought to make those mod_perl-1.x modules runnable under mod_perl-2

Replies are listed 'Best First'.
Re^4: Using mod_perl, with SSI?
by ultranerds (Hermit) on Dec 02, 2015 at 10:22 UTC
    Thanks for the reply. In the end, I decided to use speedcgi just for that, by adding this as the shebang:

    #!/usr/bin/speedy
    Seems to have knocked the load time down by over 50% ... so I'm happy with that :)

    Thanks!