Class 'F0FDispatcher' 未在第 10 行的 /var/www/joomla/components/com_ducatspremium/dispatcher.php 中找到
Class 'F0FDispatcher' not found in /var/www/joomla/components/com_ducatspremium/dispatcher.php on line 10
我得到 Class 'F0FDispatcher' not found in /var/www/joomla/components/com_ducatspremium/dispatcher.php on line 10 Error in Joomla Project.
我的调度员代码:
defined('_JEXEC') or die();
include_once JPATH_LIBRARIES.'/fof/include.php';
class DucatsPremiumDispatcher extends F0FDispatcher
{
public function onBeforeDispatch() {
$result = parent::onBeforeDispatch();
if($result) {
// Load Akeeba Strapper
include_once JPATH_ROOT.'/media/akeeba_strapper/strapper.php';
AkeebaStrapper::bootstrap();
AkeebaStrapper::jQueryUI();
AkeebaStrapper::addCSSfile('media://com_timesheet/css/frontend.css');
}
return $result;
}
}
有一次我遇到了同样的问题,我注意到是 FOFDispatcher 不是 0(零)。
因此,您应该尝试将 F0FDispatcher
替换为 FOFDispatcher
,如果您仍有问题,请告诉我们。
我得到 Class 'F0FDispatcher' not found in /var/www/joomla/components/com_ducatspremium/dispatcher.php on line 10 Error in Joomla Project.
我的调度员代码:
defined('_JEXEC') or die();
include_once JPATH_LIBRARIES.'/fof/include.php';
class DucatsPremiumDispatcher extends F0FDispatcher
{
public function onBeforeDispatch() {
$result = parent::onBeforeDispatch();
if($result) {
// Load Akeeba Strapper
include_once JPATH_ROOT.'/media/akeeba_strapper/strapper.php';
AkeebaStrapper::bootstrap();
AkeebaStrapper::jQueryUI();
AkeebaStrapper::addCSSfile('media://com_timesheet/css/frontend.css');
}
return $result;
}
}
有一次我遇到了同样的问题,我注意到是 FOFDispatcher 不是 0(零)。
因此,您应该尝试将 F0FDispatcher
替换为 FOFDispatcher
,如果您仍有问题,请告诉我们。