I am using PHPNuke 6.0 . Have had no real problems until today. Went to add an XML URL to a block, and now I get the following error when trying to access my site:
Fatal error: Call to undefined function: themeheader() in /www/j/jmelcher/htdocs/header.php on line 47
I successfully added an XML URL to my site earlier today and I had no problem. The only thing I did differently this time was right-clicked on the URL and chose "copy shortcut" then pasted that into the URL box for the XML.
I have downloaded and attempted to use the FixTheme.PHP file, but it I continue to get the same errors, even though the Fix says to "Go Back to Your Website."
Here is my header.php file. I have not tampered with it, so not sure why it is not working now.
Code:
<?php
/************************************************************************/
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/************************************************************************/
if (eregi("header.php",$PHP_SELF)) {
Header("Location: index.php");
die();
}
require_once("mainfile.php");
##################################################
# Include some common header for HTML generation #
##################################################
$header = 1;
function head() {
global $slogan, $sitename, $banners, $nukeurl, $Version_Num, $artpage, $topic, $hlpfile, $user, $hr, $theme, $cookie, $bgcolor1, $bgcolor2, $bgcolor3, $bgcolor4, $textcolor1, $textcolor2, $forumpage, $adminpage, $userpage, $pagetitle;
$ThemeSel = get_theme();
include("themes/$ThemeSel/theme.php");
echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
echo "<html>\n";
echo "<head>\n";
echo "<title>$sitename $pagetitle</title>\n";
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum