blue_chi
10-18-2004, 08:39 AM
I've created a template driven external page.
I am using this script for the output page
<?php
// GO TO FORUM DIR
chdir('./forum');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
eval(fetch_template('phpinclude_start'));
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
And using this in the template
ob_start();
include('http://www.oman3d.com/content.php');
$HTML = ob_get_contents();
ob_end_clean();
I have no idea of what are the reasons of have an error in downloading the page and I am not sure of the problem is from the code actually.
Here is the page with an error
http://www.oman3d.com/testing2.php
I am using this script for the output page
<?php
// GO TO FORUM DIR
chdir('./forum');
// STANDARD VBULLETIN STUFF
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'script_name');
require_once('./global.php');
// GENERIC_SHELL VARS
$pagetitle = "Title of Page";
eval(fetch_template('phpinclude_start'));
eval('print_output("' . fetch_template('GENERIC_SHELL') . '");');
?>
And using this in the template
ob_start();
include('http://www.oman3d.com/content.php');
$HTML = ob_get_contents();
ob_end_clean();
I have no idea of what are the reasons of have an error in downloading the page and I am not sure of the problem is from the code actually.
Here is the page with an error
http://www.oman3d.com/testing2.php