Quote:
Originally Posted by nfn
Hi,
If domain.com/forum/index.php is you default index for you board, the title will not be changed.
Where can I get the stats mod you are using to test myself?
|
No stats mod, this is a custom page made by me. But you can test with this example:
/irc_stats/index.php
PHP Code:
<?php
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
// ##################### DEFINE IMPORTANT CONSTANTS #######################
define('THIS_SCRIPT', 'irc_stats');
// #################### 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(
'irc_stats',
);
// pre-cache templates used by specific actions
$actiontemplates = array();
// ########################## REQUIRE BACK-END ############################
//require_once('./global.php'); // only if use in same board folder
define('patch_crazy', (($getcwd = getcwd()) ? $getcwd : '.'));
chdir("/home/change/to/your/board/patch");
require_once('./global.php');
chdir(patch_crazy);
global $vbulletin;
// #################### HARD CODE JAVASCRIPT PATHS ########################
$headinclude = str_replace('clientscript', $vbulletin->options['bburl'] . '/clientscript', $headinclude);
// ########################################################################
// ######################### START MAIN SCRIPT ############################
// ########################################################################
$irc_stats = 'just one test to unkown location mod';
$navbits = array();
$navbits[$parent] = 'IRC STATS';
$navbits = construct_navbits($navbits);
eval('$navbar = "' . fetch_template('navbar') . '";');
eval('print_output("' . fetch_template('irc_stats') . '");');
?>
*Edit your board patch in code.
template 'irc_stats'
HTML Code:
$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
$headinclude
<title>IRC Stats - $vboptions[bbtitle]</title>
</head>
<body>
$header
$navbar
$irc_stats
$footer
</body>
</html>