Its just a standard includes plugin similar to:
ob_start();
include('path/to/this/file/myfile.php');
$includedphp = ob_get_contents();
ob_end_clean();
The plugin works on dozens of other templates, so I am guessing that something about STANDARD_ERROR doesn't allow the use of an includes plugin for security or some other reason.
What I'm looking for is advice on including a php page on the STANDARD_ERROR template.
Thanks.
|