致命错误:Class' JDatabaseDriver'找不到

时间:2016-02-01 18:46:32

标签: php mysql joomla

Fatal error: Class 'JDatabaseDriver' not found in /home/jensen/public_html/libraries/joomla/factory.php on line 631

我一直在网上搜索这个问题的答案已经两天了。我花了很多时间在joomla论坛上,但我还没有发现任何解决这个问题的方法。希望我能在这里找到方向。

当我访问网站http://jensenlocksmithing.com

时会出现此错误

但是,如果我输入http:/jensenlocksmithing.com/index.php,则错误会再次消失。这对我来说真的很奇怪。

这是错误所指的代码块:

/ **      *创建一个数据库对象      *      * @return JDatabaseDriver      *      * @see JDatabaseDriver      * @since 11.1      * /     受保护的静态函数createDbo()     {         $ conf = self :: getConfig();

    $host = $conf->get('host');
    $user = $conf->get('user');
    $password = $conf->get('password');
    $database = $conf->get('db');
    $prefix = $conf->get('dbprefix');
    $driver = $conf->get('dbtype');
    $debug = $conf->get('debug');

    $options = array('driver' => $driver, 'host' => $host, 'user' => $user, 'password' => $password, 'database' => $database, 'prefix' => $prefix);

    try
    {
        $db = JDatabaseDriver::getInstance($options);
    }
    catch (RuntimeException $e)
    {
        if (!headers_sent())
        {
            header('HTTP/1.1 500 Internal Server Error');
        }

        jexit('Database Error: ' . $e->getMessage());
    }

    $db->setDebug($debug);

    return $db;
}

我试图完全重新安装joomla安装来解决问题,之后我清除了缓存,但仍然收到错误。

任何建议都会有所帮助。

1 个答案:

答案 0 :(得分:0)

以下代码应该可以使用,这是我在Coppermine Photo Gallery图像模块中使用的:

$config = JFactory::getConfig();
$option = array();
$option['driver']   = $config->get('dbtype');
$option['host']     = $config->get('host');
$option['user']     = $config->get('user');
$option['password'] = $config->get('password');
$option['database'] = $config->get('db');
$option['prefix']   = $config->get('dbprefix');

//UNCOMMENT THE FOLLOWING LINE TO VIEW OPTIONS ARRAY CONTENTS         
//print_r($option);

$db = JFactory::getDBO();
try
{
    $db = JDatabase::getInstance($option);
}
catch (RuntimeException $e)
{
    JFactory::getApplication()->enqueueMessage($e->getMessage());
    $db->setDebug($debug);
    return false;
}
return $db;

希望能解决您的问题。