Jestem pewien, że to rozgryzłeś, ale może przydałoby się to komuś innemu
Aby użyć klasy bazy danych joomla (nawet jeśli wiesz, że nie jest to zalecane :) ) musisz najpierw zdefiniować trzy stałe, takie jak:
define( '_JEXEC', 1 );
define( 'DS', DIRECTORY_SEPARATOR );
define( 'JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ] );
Następnie musisz dołączyć trzy pliki, takie jak:
require_once( JPATH_BASE . DS . 'includes' . DS . 'defines.php' );
require_once( JPATH_BASE . DS . 'includes' . DS . 'framework.php' );
require_once( JPATH_BASE . DS . 'libraries' . DS . 'joomla' . DS . 'factory.php' );
$mainframe =& JFactory::getApplication('site');
EDYTUJ
Możesz dołączyć tylko dwa pliki, takie jak:
define( 'JPATH_BASE', $_SERVER[ 'DOCUMENT_ROOT' ] ); // define JPATH_BASE on the external file
require_once( JPATH_BASE . DS . 'libraries' . DS . 'import.php' ); // framework
require_once( JPATH_BASE . DS . 'configuration.php' ); // config file
Na koniec użyj klasy joomla, takiej jak:
$db = JFactory::getDBO();