Have a question about CiviCRM? Get it answered quickly at the new CiviCRM Stack Exchange Q+A siteThis forum was archived on 25 November 2017. Learn more.How to get involved.What to do if you think you've found a bug.
For those with the "PHP Fatal error: Class 'JDispatcher' not found" problem running cron jobs via php-cli with Joomla 2.5.6:Adding the line with the arrow to CRM/Utils/System/Joomla.php works for me. Code: [Select] function loadBootStrap($params = array( ... // Get the framework. require $joomlaBase . '/libraries/import.php';--> require $joomlaBase . '/libraries/joomla/event/dispatcher.php'; require $joomlaBase . '/libraries/joomla/environment/uri.php'; require $joomlaBase . '/configuration.php';
function loadBootStrap($params = array( ... // Get the framework. require $joomlaBase . '/libraries/import.php';--> require $joomlaBase . '/libraries/joomla/event/dispatcher.php'; require $joomlaBase . '/libraries/joomla/environment/uri.php'; require $joomlaBase . '/configuration.php';