Oh, that worked fine. The only problem is that it only seemed to work for only HTML/plaintext. I put in some PHP code to test an output (just a simple echo for testing purposes) and it just displays the code how I wrote it. I made the plugin as seen in the vbulletin manual:
Code:
ob_start();
include('path/to/this/file/myfile.php');
$includedphp = ob_get_contents();
ob_end_clean();
and then put
Code:
{vb:raw includedphp}
in the template that Lynne's guide told me to make.
I also added
Code:
vB_Template::preRegister('FORUMHOME',array('includedphp ' => $includedphp));
To the test.php file, and it still doesn't seem to want to include my php code.
I've been trying to get this working for nearly two days now with nothing but frustration