I am trying to get a site back up from an previous backup.
I have started with a clean installation of Joomla 1.5.2 so that I can upgrade to 1.7 & do the automated upgrade to current from there.
I have not touched the custom lp3 template code that will be upgraded to 1.7 template code during the upgrade.
yet, I am currently getting the following error when running the website:
Fatal error: Class 'ArtxContent' not found in /public_html/templates/lpl3/html/com_content/frontpage/default.php on line 6
==== snippet from default.php =====
<?php
defined('_JEXEC') or die;
require_once dirname(__FILE__) . str_replace('/', DIRECTORY_SEPARATOR, '/../../../functions.php');
$view = new ArtxContent($this);
echo $view->beginPageContainer('blog-featured');
if ($view->showPageHeading)
echo $view->pageHeading();
if ($this->params->def('num_leading_articles', 1)) :
$leadingcount = 0;
?>
===================================
The class file ArtxContent.php is located at /public_html/templates/lpl3/classes/ArtxContent.php and defined in the classes.php file...
==== snippet from classes.php =====
<?php
defined('_JEXEC') or die;
require_once dirname(__FILE__) . '/classes/ArtxPage.php';
require_once dirname(__FILE__) . '/classes/ArtxContent.php';
require_once dirname(__FILE__) . '/classes/ArtxContentArticleBase.php';
require_once dirname(__FILE__) . '/classes/ArtxContentArticle.php';
require_once dirname(__FILE__) . '/classes/ArtxContentItem.php';
require_once dirname(__FILE__) . '/classes/ArtxContentSectionItem.php';
===================================
Does anyone recognize the above error & how to fix it?
Thanks in advance,
Evans Craig