Open pickempicks.php Replace the contents with'
Code:
<?php
error_reporting(E_ALL & ~E_NOTICE);
define('THIS_SCRIPT', 'pickempicks');
define('CSRF_PROTECTION', true);
$phrasegroups = array();
$specialtemplates = array();
$globaltemplates = array('pickempicks',
);
$actiontemplates = array();
require_once('./global.php');
$navbits = construct_navbits(array('' => 'Pick Em Picks'));
$navbar = render_navbar_template($navbits);
$pagetitle = 'Pick Em Picks NFL Weekly Picks';
$templater = vB_Template::create('pickempicks');
$templater->register_page_templates();
$templater->register('navbar', $navbar);
$templater->register('pagetitle', $pagetitle);
print_output($templater->render());
?>
Not exactly sure (it's just not jumping off the page at me) what's wrong with your code, but when I use it, it throws out some errors. So replace the code and see if that works.