Kunena 7.0.8 Released

The Kunena team has announce the arrival of Kunena 7.0.8 [K 7.0.8] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x./6.1.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

This section is for questions directly related to the procedure for installing Kunena for the first time or upgrading from an older version of Kunena.

Use this category:
  • to ask how to install or upgrade; or
  • if you encountered problems during the installation or upgrade procedure.

Use a different category to ask questions about problems that you may be having after you successfully installed or upgraded the currently supported version. If you are unsure what is the current supported version of Kunena, please go to the download page.

Question Exception [404] Affichage introuvable [nom, type, préfixe] : topic, html, site

More
1 year 7 months ago - 1 year 7 months ago #232712 by extonjaez
Hello

I have this issue
Exception    [404]
Affichage introuvable [nom, type, préfixe] : topic, html, site


(see Private message error to have all the details)
when i try to edit a post in Kunena

Thanks for your help
Arnaud

KUNENA 6.3.8
(ERROR happens in  Aurelia  Template or in the  NTS KUnity , regardless of the template)
 
Last edit: 1 year 7 months ago by extonjaez.

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

More
1 year 7 months ago #232802 by extonjaez

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

More
1 year 7 months ago #232804 by Gindi

(see Private message error to have all the details)
when i try to edit a post in Kunena
 

Where can I find this “private message error”?Perhaps the configuration report would be helpful.
 

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

More
1 year 7 months ago #232805 by extonjaez
View not found [name, type, prefix]: topic, html, site
.../libraries/src/MVC/Controller/BaseController.php:881
Code:
876
877 if (empty(self::$views[$name][$type][$prefix])) {
878 if ($view = $this->createView($name, $prefix, $type, $config)) {
879 self::$views[$name][$type][$prefix] = &$view;
880 } else {
881 throw new \Exception(Text::sprintf('JLIB_APPLICATION_ERROR_VIEW_NOT_FOUND', $name, $type, $prefix), 404);
882 }
883 }
884
885 return self::$views[$name][$type][$prefix];
886 }

Joomla\CMS\MVC\Controller\BaseController->getView() Kunena\Forum\Libraries\Controller\KunenaController->display() Kunena\Forum\Libraries\Controller\KunenaController->executeTask() Kunena\Forum\Libraries\Controller\KunenaController->execute() Kunena\Forum\Site\Dispatcher\Dispatcher->dispatch() Joomla\CMS\Component\ComponentHelper::renderComponent() Joomla\CMS\Application\SiteApplication->dispatch() Joomla\CMS\Application\SiteApplication->doExecute() Joomla\CMS\Application\CMSApplication->execute() require_once() Joomla\CMS\MVC\Controller\BaseController->getView().../libraries/kunena/src/Controller/KunenaController.php:386

Code:
Code:
381 382 $config = ; 383 $config['base_path'] = $this->basePath; 384 $config['layout'] = $lName; 385 386 $view = $this->getView($vName, $vFormat, 'site', $config); 387 388 if ($view) { 389 if ($this->app->isClient('site') && $vFormat == 'html') { 390 $common = $this->getView('common', $vFormat, 'site', $config); 391 $model = $this->getModel('common');
Kunena\Forum\Libraries\Controller\KunenaController->display().../libraries/kunena/src/Controller/KunenaController.php:323

Code:
Code:
318 } 319 320 // Record the actual task being fired 321 $this->doTask = $doTask; 322 323 return $this->$doTask(); 324 } 325 326 /** 327 * Method to display a view. 328 *
Kunena\Forum\Libraries\Controller\KunenaController->executeTask().../libraries/kunena/src/Controller/KunenaController.php:226

Code:
Code:
221 throw new KunenaExceptionAuthorise(Text::_('COM_KUNENA_LOGIN_NOTIFICATION'), 403); 222 } 223 } 224 225 // Execute the task. 226 $content = static::executeTask($task); 227 } catch (Exception $e) { 228 $content = $e; 229 } 230 231 // Legacy view support.
Kunena\Forum\Libraries\Controller\KunenaController->execute().../components/com_kunena/src/Dispatcher/Dispatcher.php:108

Code:
Code:
103 // Execute old MVC. 104 // Legacy support: If the content layout doesn't exist on HMVC, load and execute the old controller. 105 $controller = KunenaController::getInstance(); 106 KunenaRoute::cacheLoad(); 107 ob_start(); 108 $controller->execute($task); 109 $contents = ob_get_clean(); 110 KunenaRoute::cacheStore(); 111 $controller->redirect(); 112 } else { 113 // Legacy URL support.
Kunena\Forum\Site\Dispatcher\Dispatcher->dispatch().../libraries/src/Component/ComponentHelper.php:361

Code:
Code:
356 if (!static::isEnabled($option)) { 357 throw new MissingComponentException(Text::_('JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND'), 404); 358 } 359 360 ob_start(); 361 $app->bootComponent($option)->getDispatcher($app)->dispatch(); 362 $contents = ob_get_clean(); 363 364 // Revert the scope 365 $app->scope = $scope; 366
Joomla\CMS\Component\ComponentHelper::renderComponent().../libraries/src/Application/SiteApplication.php:218

Code:
Code:
213 $this->dispatchEvent( 214 'onAfterInitialiseDocument', 215 new AfterInitialiseDocumentEvent('onAfterInitialiseDocument', ['subject' => $this, 'document' => $document]) 216 ); 217 218 $contents = ComponentHelper::renderComponent($component); 219 $document->setBuffer($contents, ['type' => 'component']); 220 221 // Trigger the onAfterDispatch event. 222 $this->dispatchEvent( 223 'onAfterDispatch',
Joomla\CMS\Application\SiteApplication->dispatch().../libraries/src/Application/SiteApplication.php:273

Code:
Code:
268 ['option' => 'com_users', 'view' => 'profile', 'layout' => 'edit'], 269 ]); 270 } 271 272 // Dispatch the application 273 $this->dispatch(); 274 275 // Mark afterDispatch in the profiler. 276 JDEBUG ? $this->profiler->mark('afterDispatch') : null; 277 } 278
Joomla\CMS\Application\SiteApplication->doExecute().../libraries/src/Application/CMSApplication.php:306

Code:
Code:
301 $this->sanityCheckSystemVariables(); 302 $this->setupLogging(); 303 $this->createExtensionNamespaceMap(); 304 305 // Perform application routines. 306 $this->doExecute(); 307 308 // If we have an application document object, render it. 309 if ($this->document instanceof \Joomla\CMS\Document\Document) { 310 // Render the application output. 311 $this->render();
Joomla\CMS\Application\CMSApplication->execute().../includes/app.php:58

Code:
Code:
53 54 // Set the application as global app 55 \Joomla\CMS\Factory::$application = $app; 56 57 // Execute the application. 58 $app->execute();
require_once().../index.php:32

Code:
Code:
27 * define() is used rather than "const" to not error for PHP 5.2 and lower 28 */ 29 define('_JEXEC', 1); 30 31 // Run the application - All executable code should be triggered through this file 32 require_once dirname(__FILE__) . '/includes/app.php';
Arguments
Code:
0
string(65) "/var/www/vhosts/biohack-arena.club/httpdocs/CLUB/includes/app.php"

Many Thanks

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

More
1 year 7 months ago - 1 year 7 months ago #232806 by Pinkeltje
@Gindi Asked for a configuration report not the errors you receive. But maybe this topic can help?
Tip: Test with Aurelia to make sure you don't have template issues.
Last edit: 1 year 7 months ago by Pinkeltje.

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

More
1 year 7 months ago #232807 by Gindi
.../libraries/src/MVC/Controller/BaseController.php:881
I believe the problem has nothing to do with Kunena because Model-View-Controller (MVC) is part of Joomla.

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

Time to create page: 0.271 seconds