Everything was also done from a clean install (files and db).
Joomla\CMS\Categories\SectionNotFoundException
exception.No exception, especially with the HOME page.
For all pages in the frontend, I get this Joomla\CMS\Categories\SectionNotFoundException
exception, even if this is not a "category page"…
The stack hit the following function before the exception in CategoryServiceTrait.php
public function getCategory(array $options = [], $section = ''): CategoryInterface
{
return $this->categoryFactory->createCategory($options, $section);
}
then the exception occurs in CategoryFactory.php :
public function createCategory(array $options = [], string $section = ''): CategoryInterface
{
$className = trim($this->namespace, '\\') . '\\Site\\Service\\' . ucfirst($section) . 'Category';
if (!class_exists($className))
{
throw new SectionNotFoundException;
}
return new $className($options);
}
$className holds the following value:
"Joomla\Component\Content\Site\Service\ArticleCategory"
Joomla 4 beta 3 from here :
Tested with a clean install AND upgrade from beta3-dev.
Labels |
Added:
?
|
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2020-08-04 07:13:37 |
Closed_By | ⇒ | vintzl |
Ok, so I can close this issue.
I use Xdebug with netbeans with the current 4.0-dev branch. I had no problems debugging today.
I work on ubuntu.