Exception: FLEA_Exception_MissingController
Message: 缺少控制器 "Index".
Filename: /var/www/vhosts/acty-b.net/httpdocs/FLEA/FLEA/Dispatcher/Simple.php [77]
#3 FLEA_Dispatcher_Simple::_executeAction('Index', 'Adver', 'Controller_Index')
ARGS:
Array
(
[0] => Index
[1] => Adver
[2] => Controller_Index
)
SOURCE CODE:
| 67 |
|
| 68 |
/**
|
| 69 |
* 从请求中分析 Controller、Action 和 Package 名字,然后执行指定的 Action 方法
|
| 70 |
*
|
| 71 |
* @return mixed
|
| 72 |
*/
|
| 73 |
function dispatching()
|
| 74 |
{
|
| 75 |
$controllerName = $this->getControllerName();
|
| 76 |
$actionName = $this->getActionName();
|
| 77 |
return $this->_executeAction($controllerName, $actionName, $this->getControllerClass($controllerName));
|
| 78 |
}
|
| 79 |
|
| 80 |
/**
|
| 81 |
* 执行指定的 Action 方法
|
| 82 |
*
|
| 83 |
* @param string $controllerName
|
| 84 |
* @param string $actionName
|
| 85 |
* @param string $controllerClass
|
| 86 |
*
|
| 87 |
* @return mixed
|
Filename: /var/www/vhosts/acty-b.net/httpdocs/FLEA/FLEA.php [816]
#2 FLEA_Dispatcher_Simple::dispatching()
ARGS:
Array
(
)
SOURCE CODE:
| 806 |
require_once($MVCPackageFilename);
|
| 807 |
}
|
| 808 |
FLEA::init();
|
| 809 |
|
| 810 |
// 载入调度器并转发请求到控制器
|
| 811 |
$dispatcherClass = FLEA::getAppInf('dispatcher');
|
| 812 |
FLEA::loadClass($dispatcherClass);
|
| 813 |
|
| 814 |
$dispatcher =& new $dispatcherClass($_GET);
|
| 815 |
FLEA::register($dispatcher, $dispatcherClass);
|
| 816 |
$dispatcher->dispatching();
|
| 817 |
}
|
| 818 |
|
| 819 |
/**
|
| 820 |
* 准备运行环境
|
| 821 |
*
|
| 822 |
* @param boolean $loadMVC
|
| 823 |
*/
|
| 824 |
function init($loadMVC = false)
|
| 825 |
{
|
| 826 |
static $firstTime = true;
|
Filename: /var/www/vhosts/acty-b.net/httpdocs/index.php [38]
#1 FLEA::runMVC()
ARGS:
Array
(
)
SOURCE CODE:
| 28 |
$mobile_url = "http://";
|
| 29 |
$mobile_url .= $_SERVER['SERVER_NAME'];
|
| 30 |
$mobile_url .= "/mobile/";
|
| 31 |
header("Location: $mobile_url");
|
| 32 |
}
|
| 33 |
|
| 34 |
require('FLEA/FLEA.php');
|
| 35 |
define('I_URL', dirname(__FILE__));
|
| 36 |
FLEA::loadAppInf('_Shared/APP_INF.php');
|
| 37 |
FLEA::import(dirname(__FILE__).'/APP');
|
| 38 |
FLEA::runMVC();
|
| 39 |
?> |