Search code examples
phppluginshookforumvbulletin

Forum vB plugin not working


So I made a plugin/hook

<?php
ob_start();
include $_SERVER['DOCUMENT_ROOT'] . "/delta/pack_files/other/login.php";
$loginphpp = ob_get_contents();
ob_end_clean();
?>

I enabled hooks/plugins in the settings, and i set this plugin to be at global_start

the folder directory is correct and I called this with $loginphpp, but nothing shows.

Any ideas why?


Solution

  • Just realised how stupid I've been

    With vBulletin plugins, you don't include

    so it'd just be:

    ob_start();
    include $_SERVER['DOCUMENT_ROOT'] . "/delta/pack_files/other/login.php";
    $loginphpp = ob_get_contents();
    ob_end_clean();
    

    They really should write that somewhere :P