Kunena 7.0.4 Released

The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] 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

Question Could not start mail function.

More
7 years 11 months ago #199356 by xillibit
Do-you have a file kunena.php created on logs or log at the root of Joomla! ? If yes, do-you see errors related to the issue in this ?

I don't provide support by PM, because this can be useful for someone else.

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

More
7 years 11 months ago #199465 by karloshull

xillibit wrote: Do-you have a file kunena.php created on logs or log at the root of Joomla! ? If yes, do-you see errors related to the issue in this ?


This is the kunena.php file

<?php
/**
* Kunena Component
*
* @package Kunena.Site
*
* @copyright Copyright (C) 2008 - 2018 Kunena Team. All rights reserved.
* @license www.gnu.org/copyleft/gpl.html GNU/GPL
* @link www.kunena.org
**/
defined('_JEXEC') or die();

use Joomla\CMS\Factory;

// Display offline message if Kunena hasn't been fully installed.
if (!class_exists('KunenaForum') || !KunenaForum::isCompatible('4.0') || !KunenaForum::installed())
{
$lang = Factory::getLanguage();
$lang->load('com_kunena.install', JPATH_ADMINISTRATOR . '/components/com_kunena', 'en-GB');
$lang->load('com_kunena.install', JPATH_ADMINISTRATOR . '/components/com_kunena');
Factory::getApplication()->setHeader('status', 503, true);
Factory::getApplication()->sendHeaders();
?>
<h2><?php echo JText::_('COM_KUNENA_INSTALL_OFFLINE_TOPIC') ?></h2>
<div><?php echo JText::_('COM_KUNENA_INSTALL_OFFLINE_DESC') ?></div>
<?php
return;
}

// Display time it took to create the entire page in the footer.
$kunena_profiler = KunenaProfiler::instance('Kunena');
$kunena_profiler->start('Total Time');
KUNENA_PROFILER ? $kunena_profiler->mark('afterLoad') : null;

// Prevent direct access to the component if the option has been disabled.
if (!KunenaConfig::getInstance()->get('access_component', 1))
{
$active = Factory::getApplication()->getMenu()->getActive();

if (!$active)
{
// Prevent access without using a menu item.
\Joomla\CMS\Log\Log::add("Kunena: Direct access denied: " . \Joomla\CMS\Uri\Uri::getInstance()->toString(array('path', 'query')), \Joomla\CMS\Log\Log::WARNING, 'kunena');
throw new Exception(JText::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404);
}
elseif ($active->type != 'component' || $active->component != 'com_kunena')
{
// Prevent spoofed access by using random menu item.
\Joomla\CMS\Log\Log::add("Kunena: spoofed access denied: " . \Joomla\CMS\Uri\Uri::getInstance()->toString(array('path', 'query')), \Joomla\CMS\Log\Log::WARNING, 'kunena');
throw new Exception(JText::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404);
}
}

// Load router
require_once KPATH_SITE . '/router.php';

// Initialize Kunena Framework.
KunenaForum::setup();

// Initialize custom error handlers.
KunenaError::initialize();

// Initialize session.
$ksession = KunenaFactory::getSession(true);

if ($ksession->userid > 0)
{
// Create user if it does not exist
$kuser = KunenaUserHelper::getMyself();

if (!$kuser->exists())
{
$kuser->save();
}

// Save session
if (!$ksession->save())
{
Factory::getApplication()->enqueueMessage(JText::_('COM_KUNENA_ERROR_SESSION_SAVE_FAILED'), 'error');
}
}

// Support legacy urls (they need to be redirected).
$app = Factory::getApplication();
$input = $app->input;
$input->set('limitstart', $input->getInt('limitstart', $input->getInt('start')));
$view = $input->getWord('func', $input->getWord('view', 'home'));
$subview = $input->getWord('layout', 'default');
$task = $input->getCmd('task', 'display');

// Import plugins and event listeners.
\Joomla\CMS\Plugin\PluginHelper::importPlugin('kunena');

// Get HMVC controller and if exists, execute it.
$controller = KunenaControllerApplication::getInstance($view, $subview, $task, $input, $app);

if ($controller)
{
KunenaRoute::cacheLoad();
$contents = $controller->execute();
KunenaRoute::cacheStore();
}
elseif (is_file(KPATH_SITE . "/controllers/{$view}.php"))
{
// Execute old MVC.
// Legacy support: If the content layout doesn't exist on HMVC, load and execute the old controller.
$controller = KunenaController::getInstance();
KunenaRoute::cacheLoad();
ob_start();
$controller->execute($task);
$contents = ob_get_clean();
KunenaRoute::cacheStore();
$controller->redirect();
}
else
{
// Legacy URL support.
$uri = KunenaRoute::current(true);

if ($uri)
{
// FIXME: using wrong Itemid
Factory::getApplication()->redirect(KunenaRoute::_($uri, false));
}
else
{
throw new Exception("Kunena view '{$view}' not found", 404);
}
}

// Prepare and display the output.
$params = new stdClass;
$params->text = '';
$topics = new stdClass;
$topics->text = '';
JPluginHelper::importPlugin('content');
Factory::getApplication()->triggerEvent('onContentPrepare', array("com_kunena.{$view}", &$topics, &$params, 0));
Factory::getApplication()->triggerEvent('onKunenaBeforeRender', array("com_kunena.{$view}", &$contents));
$contents = (string) $contents;
Factory::getApplication()->triggerEvent('onKunenaAfterRender', array("com_kunena.{$view}", &$contents));
echo $contents;

// Remove custom error handlers.
KunenaError::cleanup();

// Display profiler information.
$kunena_time = $kunena_profiler->stop('Total Time');

if (KUNENA_PROFILER)
{
echo '<div class="kprofiler">';
echo "<h3>Kunena Profile Information</h3>";

foreach ($kunena_profiler->getAll() as $item)
{
echo sprintf("Kunena %s: %0.3f / %0.3f seconds (%d calls)<br/>", $item->name, $item->getInternalTime(),
$item->getTotalTime(), $item->calls
);
}

echo '</div>';
}

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

More
7 years 11 months ago #199467 by karloshull

xillibit wrote: Do-you have a file kunena.php created on logs or log at the root of Joomla! ? If yes, do-you see errors related to the issue in this ?


here is the error from kunena logs

{"type":1,"message":"Call to undefined method KunenaExceptionAuthorise::get()","file":"\/var\/www\/web\/templates\/jp-magazine\/error.php","line":20}

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

More
7 years 11 months ago #199469 by karloshull

xillibit wrote: Do-you have a file kunena.php created on logs or log at the root of Joomla! ? If yes, do-you see errors related to the issue in this ?


i think you mean this file

#
#<?php die('Forbidden.'); ?>
#Date: 2018-05-14 17:17:46 UTC
#Software: Joomla Platform 13.1.0 Stable [ Curiosity ] 24-Apr-2013 00:00 GMT

#Fields: date time priority clientip category message
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=13 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=13&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=17 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=17&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=55 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=55&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=15 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=15&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=24 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=24&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=25 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=25&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=26 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=26&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=27 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=27&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=28 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=28&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=29 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=29&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=30 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=30&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=53 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=53&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=60 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=60&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=57 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=57&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=51 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=51&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=52 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=52&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=47 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=47&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=49 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=49&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:17:46 DEBUG 92.40.249.110 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=56 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=56&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=13 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=13&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=17 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=17&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=55 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=55&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=15 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=15&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=24 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=24&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=25 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=25&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=26 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=26&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=27 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=27&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=28 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=28&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=29 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=29&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=30 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=30&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=53 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=53&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=60 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=60&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=57 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=57&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=51 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=51&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=52 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=52&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=47 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=47&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=49 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=49&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:54:58 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=56 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=56&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:13 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=13 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=13&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=17 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=17&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=55 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=55&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=15 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=15&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=24 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=24&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=25 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=25&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=26 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=26&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=27 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=27&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=28 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=28&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=29 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=29&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=30 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=30&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=53 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=53&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=60 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=60&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=57 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=57&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=51 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=51&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=52 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=52&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=47 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=47&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=49 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=49&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:55:20 DEBUG 192.36.27.6 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=56 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=56&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=13 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=13&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=17 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=17&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=55 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=55&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=15 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=15&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=24 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=24&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=25 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=25&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=26 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=26&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=27 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=27&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=28 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=28&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=29 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=29&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=30 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=30&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=53 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=53&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=60 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=60&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=57 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=57&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=51 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=51&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=52 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=52&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=47 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=47&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=49 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=49&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:29 DEBUG 197.231.221.211 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=56 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=56&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:56:45 DEBUG 51.15.80.14 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=11 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=11&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=12 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=12&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=22 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=22&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=54 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=54&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=59 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=59&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=58 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=58&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=62 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=62&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=23 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=23&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=13 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=13&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=17 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=17&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=55 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=55&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=15 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=15&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=24 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=24&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=25 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=25&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=26 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=26&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=27 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=27&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=28 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=28&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=29 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=29&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=30 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=30&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=53 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=53&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=60 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=60&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=57 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=57&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=51 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=51&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=52 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=52&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=47 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=47&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=49 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=49&layout=default&mode=topics&sel=720&type=rss
2018-05-14 17:57:02 DEBUG 176.10.99.200 kunena Legacy URI index.php?option=com_kunena&view=rss&format=feed&catid=56 was converted to index.php?option=com_kunena&view=topics&format=feed&catid=56&layout=default&mode=topics&sel=720&type=rss

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

More
7 years 11 months ago #199547 by karloshull
any ideas?

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

More
7 years 11 months ago #199558 by 810
Replied by 810 on topic Could not start mail function.
for the bbcode.

Try backend - kunena - templates - blueeagle5- click on save.

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

Time to create page: 0.272 seconds