I have this script within the includes folder & i tested till here
(../includes/test.php?f=3)
<?
error_reporting(E_ALL & ~E_NOTICE);
include ('./global.php');
include (DIR . '/includes/adminfunctions_template.php');
include (DIR . '/includes/adminfunctions_forums.php');
$forum_num = $vbulletin->input->clean_gpc('g', 'f', TYPE_UNIT);
echo $forum_num;
?>
The page comes up blank indicating error. I don't want to put the script within the admincp as that is a password protected region. As i need to be able to include this from my cfm app, i need this to be outside of admincp. what am i doing wrong? I new to vbulletin so pls help.
|