Quote:
Originally Posted by Boofo
Where are you trying to call it from and do you have the plug-in installed?
|
Yes, the plugin is installed.
and i am tryin this on a custom VB page, like this;
<?php
// ####################### SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// #################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'bugs');
define('NO_REGISTER_GLOBALS', 0);
// ################### PRE-CACHE TEMPLATES AND DATA ######################
// get special phrase groups
$phrasegroups = array();
// get special data templates from the datastore
$specialtemplates = array(
);
// pre-cache templates used by all actions
$globaltemplates = array(
'shell_blank'
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
echo $hottopics ;
$html = <<< HTML
<!-- html starts here -->
$hottopics
<!-- html ends here -->
HTML;
$navbits["mycookies2.php"] = 'Photo Gallery';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('$hottopics = "' . fetch_template('hottopics') . '";');
$pagetitle = "Photo Gallery";
eval('print_output("' . fetch_template('shell_blank') . '");');
?>