Error Info:

MESSAGE: Undefined index: c
TYPE: Notice
FILE: /data/wwwroot/yibijizhang/console/Html/Huodong/index.php
LINE: 76

Stack trace:

Exception 'BTF_Error' with message 'Undefined index: c'

Debug Info:

72 BTF::setNameSpace(PRODUCTION_ROOT . '/DAL');//注册DAL实例
73 BTF::setNameSpace(PRODUCTION_ROOT . '/Helper');//注册Helper实例
74
75
>>76 $ctrlName = $_REQUEST['c']; //控制器名
77 $actName = $_REQUEST['a']; //Action名
78
79 if('Ajax_User' == $ctrlName && 'GetRedpackSmsCheckCode' == $actName){ //红包活动 修改入口文件,关掉 index.php 这个入口
80 echo '404';
81 exit;

Error Info:

MESSAGE: Undefined index: a
TYPE: Notice
FILE: /data/wwwroot/yibijizhang/console/Html/Huodong/index.php
LINE: 77

Stack trace:

Exception 'BTF_Error' with message 'Undefined index: a'

Debug Info:

73 BTF::setNameSpace(PRODUCTION_ROOT . '/Helper');//注册Helper实例
74
75
76 $ctrlName = $_REQUEST['c']; //控制器名
>>77 $actName = $_REQUEST['a']; //Action名
78
79 if('Ajax_User' == $ctrlName && 'GetRedpackSmsCheckCode' == $actName){ //红包活动 修改入口文件,关掉 index.php 这个入口
80 echo '404';
81 exit;
82 }

Stack trace:

Exception 'BTF' with message 'The file dose not exist: '/data/wwwroot/yibijizhang/console/App/Huodong/Page/Default.php''

#1 /data/wwwroot/yibijizhang/console/Html/Huodong/index.php(83):
BTF_Controller_Front::run()

#2 /data/wwwroot/yibijizhang/console/BTF/Controller/Front.php(49):
spl_autoload_call('Huodong_Page_Default')

Debug Info:

135 }
136
137 if (! file_exists($file)) {
138 if (IS_DEBUGGING) {
>>139 throw new BTF_Exception("The file dose not exist: '{$file}'");
140 } else {
141 exit("File Not Found[0]");
142 }
143 }
144