Hallo Leute,
ich hatte nun schon öffter Probleme mit Hackerangriffen auf meine Joomla Seite.
Da ich nicht wusste was der oder die Hacker alles auf meinem System gemacht haben habe ich alles runtergeschmissen und ein älteres Backup eingespielt.
Allerdings wenn ich meine Seite aufrufe bekomme ich immer diese Meldung:
Fatal error: Class 'JApplication' not found in /home/matthiaslang-fotografie/public_html/libraries/joomla/factory.php on line 46
ich hab mal den Code angehängt und die Zeile unterstrichen.
Was sagt dieser Fehler, und wie kann ich das ganze bereinigen??
Code:<?php /** * @version $Id: factory.php 15184 2010-03-04 23:18:17Z ian $ * @package Joomla.Framework * @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved. * @license GNU/GPL, see LICENSE.php * Joomla! is free software. This version may have been modified pursuant * to the GNU General Public License, and as distributed it includes or * is derivative of works licensed under the GNU General Public License or * other free or open source software licenses. * See COPYRIGHT.php for copyright notices and details. */ defined('JPATH_BASE') or die(); /** * Joomla Framework Factory class * * @static * @package Joomla.Framework * @since 1.5 */ class JFactory { /** * Get a application object * * Returns a reference to the global {@link JApplication} object, only creating it * if it doesn't already exist. * * @access public * @param mixed $id A client identifier or name. * @param array $config An optional associative array of configuration settings. * @return object JApplication */ function &getApplication($id = null, $config = array(), $prefix='J') { static $instance; if (!is_object($instance)) { jimport( 'joomla.application.application' ); if (!$id) { JError::raiseError(500, 'Application Instantiation Error'); } $instance = JApplication::getInstance($id, $config, $prefix); } return $instance; } /** * Get a configuration object * * Returns a reference to the global {@link JRegistry} object, only creating it * if it doesn't already exist. * * @access public * @param string The path to the configuration file * @param string The type of the configuration file * @return object JRegistry */ function &getConfig($file = null, $type = 'PHP') { static $instance; if (!is_object($instance)) { if ($file === null) { $file = dirname(__FILE__).DS.'config.php'; }


LinkBack URL
About LinkBacks
Zitieren

Lesezeichen