Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released

The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.

The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.

Question Error after installing jomsocial

More
17 years 3 months ago #2688 by timsepak
yeah..I have the same problem..could you please help me how to solve this..

Please Log in or Create an account to join the conversation.

More
17 years 3 months ago #2777 by Matias
This error come when there is no JomSocial installed. It has been fixed in SVN.

New JomSocial code in components/com_kunena/class.kunena.php (find the first line):
Code:
//JomSocial if ($fbConfig->pm_component == 'jomsocial' || $fbConfig->fb_profile == 'jomsocial' || $fbConfig->avatar_src == 'jomsocial') { // Only proceed if jomSocial is really installed if ( file_exists( $mainframe->getCfg( 'absolute_path' ) . '/components/com_community/libraries/core.php' ) ) { $database->setQuery("SELECT id FROM #__menu WHERE link = 'index.php?option=com_community' AND published=1"); $JOMSOCIAL_Itemid = $database->loadResult(); check_dberror('Unable to load jomSocial item id'); define("KUNENA_JOMSOCIAL_ITEMID", (int)$JOMSOCIAL_Itemid); define("KUNENA_JOMSOCIAL_ITEMID_SUFFIX", "&amp;Itemid=" . KUNENA_JOMSOCIAL_ITEMID); include_once(JPATH_ROOT.'/components/com_community/libraries/core.php'); include_once(JPATH_ROOT.'/components/com_community/libraries/messaging.php'); //PM popup requires JomSocial css to be loaded from selected template $config =& CFactory::getConfig(); $mainframe->addCustomHeadTag('<link type="text/css" rel="stylesheet" href="'.KUNENA_JLIVEURL.'/components/com_community/assets/window.css" />'); $mainframe->addCustomHeadTag('<link type="text/css" rel="stylesheet" href="'.KUNENA_JLIVEURL.'/components/com_community/templates/'.$config->get('template').'/css/style.css" />'); } else { // JomSocial not present reset config settings to avoid problems $fbConfig->pm_component = $fbConfig->pm_component == 'jomsocial' ? 'none' : $fbConfig->pm_component; $fbConfig->fb_profile = $fbConfig->fb_profile == 'jomsocial' ? 'kunena' : $fbConfig->fb_profile; $fbConfig->avatar_src = $fbConfig->avatar_src == 'jomsocial' ? 'kunena' : $fbConfig->avatar_src; // Do not save new config - thats a task for the backend // This is just a catch all in case it is not present } }

Please Log in or Create an account to join the conversation.

Time to create page: 0.243 seconds