#0 |
+
–
/home/www/muomou_admin/framework/web/CBaseController.php(173): CCaptcha-> run()
168 return ob_get_clean();
169 }
170 else
171 {
172 $widget=$this->createWidget($className,$properties);
173 $widget->run();
174 return $widget;
175 }
176 }
177
178 /**
|
#1 |
+
–
/home/www/muomou_admin/70game/templates/member/register.php(115): CBaseController-> widget("CCaptcha", array("showRefreshButton" => false, "clickableImage" => true, "imageOptions" => array("alt" => "点击换图", "title" => "点击换图", "style" => "cursor:pointer")))
110 </div>
111 <div class="old yzm">
112 <span>验证码:</span>
113 <input type="text" placeholder="验证码" name="captcha">
114 <div class="yzm-img">
115 <?php $this->widget('CCaptcha',array('showRefreshButton'=>false,'clickableImage'=>true,'imageOptions'=>array('alt'=>'点击换图','title'=>'点击换图','style'=>'cursor:pointer'))); ?></span>
116 </div>
117 <div class="ts-news">
118 <div class="wrong" style="display:none" id="captcha">验证码不正确</div>
119 </div>
120 </div>
|
#2 |
+
–
/home/www/muomou_admin/framework/web/CBaseController.php(130): require("/home/www/muomou_admin/70game/templates/member/register.php")
125 ob_implicit_flush(false);
126 require($_viewFile_);
127 return ob_get_clean();
128 }
129 else
130 require($_viewFile_);
131 }
132
133 /**
134 * Creates a widget and initializes it.
135 * This method first creates the specified widget instance.
|
#3 |
+
–
/home/www/muomou_admin/framework/web/CBaseController.php(95): CBaseController-> renderInternal("/home/www/muomou_admin/70game/templates/member/register.php", array(), false)
090 {
091 $widgetCount=count($this->_widgetStack);
092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile))
093 $content=$renderer->renderFile($this,$viewFile,$data,$return);
094 else
095 $content=$this->renderInternal($viewFile,$data,$return);
096 if(count($this->_widgetStack)===$widgetCount)
097 return $content;
098 else
099 {
100 $widget=end($this->_widgetStack);
|
#4 |
+
–
/home/www/muomou_admin/70game/protected/controllers/MemberController.php(29): CBaseController-> renderFile("/home/www/muomou_admin/70game/templates/member/register.php", array())
24
25 }
26 public function actionRegister(){
27
28 $template = Yii::app()->params['templates'] . '/member/register.php';
29 echo $this->processOutput( $this->renderFile( $template, array( )));
30 }
31 public function actionVipRegister(){
32
33 $template = Yii::app()->params['templates'] . '/member/vipregister.php';
34 echo $this->processOutput( $this->renderFile( $template, array( )));
|
#5 |
+
–
/home/www/muomou_admin/framework/web/actions/CInlineAction.php(49): MemberController-> actionRegister()
44 $controller=$this->getController();
45 $method=new ReflectionMethod($controller, $methodName);
46 if($method->getNumberOfParameters()>0)
47 return $this->runWithParamsInternal($controller, $method, $params);
48 else
49 return $controller->$methodName();
50 }
51
52 }
|
#6 |
+
–
/home/www/muomou_admin/framework/web/CController.php(308): CInlineAction-> runWithParams(array())
303 {
304 $priorAction=$this->_action;
305 $this->_action=$action;
306 if($this->beforeAction($action))
307 {
308 if($action->runWithParams($this->getActionParams())===false)
309 $this->invalidActionParams($action);
310 else
311 $this->afterAction($action);
312 }
313 $this->_action=$priorAction;
|
#7 |
+
–
/home/www/muomou_admin/framework/web/CController.php(286): CController-> runAction(CInlineAction)
281 * @see runAction
282 */
283 public function runActionWithFilters($action,$filters)
284 {
285 if(empty($filters))
286 $this->runAction($action);
287 else
288 {
289 $priorAction=$this->_action;
290 $this->_action=$action;
291 CFilterChain::create($this,$action,$filters)->run();
|
#8 |
+
–
/home/www/muomou_admin/framework/web/CController.php(265): CController-> runActionWithFilters(CInlineAction, array())
260 {
261 if(($parent=$this->getModule())===null)
262 $parent=Yii::app();
263 if($parent->beforeControllerAction($this,$action))
264 {
265 $this->runActionWithFilters($action,$this->filters());
266 $parent->afterControllerAction($this,$action);
267 }
268 }
269 else
270 $this->missingAction($actionID);
|
#9 |
+
–
/home/www/muomou_admin/framework/web/CWebApplication.php(282): CController-> run("register")
277 {
278 list($controller,$actionID)=$ca;
279 $oldController=$this->_controller;
280 $this->_controller=$controller;
281 $controller->init();
282 $controller->run($actionID);
283 $this->_controller=$oldController;
284 }
285 else
286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',
287 array('{route}'=>$route===''?$this->defaultController:$route)));
|
#10 |
+
–
/home/www/muomou_admin/framework/web/CWebApplication.php(141): CWebApplication-> runController("member/register")
136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value)
137 $_GET[$name]=$value;
138 }
139 else
140 $route=$this->getUrlManager()->parseUrl($this->getRequest());
141 $this->runController($route);
142 }
143
144 /**
145 * Registers the core application components.
146 * This method overrides the parent implementation by registering additional core components.
|
#11 |
+
–
/home/www/muomou_admin/framework/base/CApplication.php(180): CWebApplication-> processRequest()
175 public function run()
176 {
177 if($this->hasEventHandler('onBeginRequest'))
178 $this->onBeginRequest(new CEvent($this));
179 register_shutdown_function(array($this,'end'),0,false);
180 $this->processRequest();
181 if($this->hasEventHandler('onEndRequest'))
182 $this->onEndRequest(new CEvent($this));
183 }
184
185 /**
|
#12 |
+
–
/home/www/muomou_admin/70game/index.php(12): CApplication-> run()
07 // remove the following lines when in production mode
08 defined('YII_DEBUG') or define('YII_DEBUG',true);
09 // specify how many levels of call stack should be shown in each log message
10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
11 require_once($yii);
12 Yii::createWebApplication($config)->run();
13
14 ?>
|