I'm trying to make dynamic pages by using the tutorial on this page.
https://vborg.vbsupport.ru/showthread.php?t=228112
I've gotten it to work and all, but the only problem I have is adding PHP to the page. I've followed everything here.
http://www.vbulletin.com/docs/html/t..._externalfiles
What I did was I enabled plugins / hooks. I made a new plugin, global_start, etc. I dragged a file called test.php into my forum root, and I inserted the following code into the plugin.
PHP Code:
ob_start();
include('test.php');
$includedphp = ob_get_contents();
ob_end_clean();
I went back to my template and added {vb:raw includedphp}, and nothing happened. What am I doing wrong?