Thanks it works perfectly, they should update or make more clear the vBulletin manual...
--------------- Added [DATE]1332297428[/DATE] at [TIME]1332297428[/TIME] ---------------
Hello Crimm,
Thanks very much for your post about including PHP files ... It was much more clear than in the manual.
I followed your instructions and everything works fine for the forum, but in the CMS the PHP file is not included.
I tried to fix it by adding:
PHP Code:
ob_start();
require_once('plugins/rightsidebar.php');
$php_include = ob_get_contents();
ob_end_clean();
vB_Template::preRegister('footer',array('php_include' => $php_include));
To global_start of the CMS. But it still does not work... Can you help me?