我正在尝试连接到我的数据库,但我收到错误 JFactory class not found /var/www/joomla2.5/database.php 我的代码是
$db= JFactory::getDBO();
我也尝试在外部建立数据库连接,但后来我收到错误 JDatabase class not found
<?php
$option = array(); //prevent problems
$option['driver'] = 'mysql';
$option['host'] = 'localhost';
$option['user'] = 'xxxx';
$option['password'] = 'xxxx';
$option['database'] = 'xxxx';
$option['prefix'] = 'cdri_';
$db = & JDatabase::getInstance( $option );
?>
我检查了我的 factory.php 文件,它定义了一个抽象的 JFactory 类。
我正在使用 joomla2.5 和 Ubuntu12.04 操作系统
需要帮忙...