Situation: I have a custom templating package that will lookup translation texts based off of keywords so we can use 1 html file for all 8-9 languages. I've made it part of an Apache::Filter list that also run's Apache::SSI so that any server side includes in the html file will also get run. There is also some mod_php code (a php require line that pulls in a different page graphic everytime they refresh the page) that I need to also 'run' as part of the web page.
When I have this setup, it fails to run the php code... If I include custom tests to look for the php coding and run a subrequest of it using $r->load_file() then it takes over the entire request and just displays the results of the php coding. I'd like to just include the output of the php coding as part of my reply where it belongs. How can I make this work?