/home/xxx/domains/survey.domain.com/public_html/application/extensions/captchaExtended/CaptchaExtendedAction.php(471)
459 imagecolordeallocate($image,$backColor); 460 461 if($this->transparent){ 462 imagecolortransparent($image,$backColor); 463 } 464 465 if($this->fontFile === null){ 466 $this->fontFile = realname(Yii::app()->basePath."/../assets/fonts/font-src/lato-v11-latin-700.ttf"); 467 468 } 469 470 $length = strlen($code); 471 $box = imagettfbbox(25,0,$this->fontFile,$code); 472 $w = $box[4] - $box[0] + $this->offset * ($length - 1); 473 $h = $box[1] - $box[5]; 474 $scale = min(($this->width - $this->padding * 2) / $w,($this->height - $this->padding * 2) / $h); 475 $x = 10; 476 $y = round($this->height * 27 / 40); 477 478 $r = (int)($this->foreColor % 0x1000000 / 0x10000); 479 $g = (int)($this->foreColor % 0x10000 / 0x100); 480 $b = $this->foreColor % 0x100; 481 $foreColor = imagecolorallocate($image, mt_rand($r-50,$r+50), mt_rand($g-50,$g+50),mt_rand($b-50,$b+50)); 482 483 for($i = 0; $i < $length; ++$i){
#0 |
+
–
/home/xxx/domains/survey.domain.com/public_html/application/extensions/captchaExtended/CaptchaExtendedAction.php(143): CaptchaExtendedAction->renderImage() 138 'hash1'=>$this->generateValidationHash($result), 139 'hash2'=>$this->generateValidationHashCI($result), 140 'url'=>$this->getController()->createUrl($this->getId(),array('v' => uniqid())), 141 )); 142 }else{ 143 $this->renderImage($this->getVerifyCode()); 144 } 145 } 146 Yii::app()->end(); 147 } 148 |
#1 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/actions/CAction.php(76): CaptchaExtendedAction->run() 71 { 72 $method=new ReflectionMethod($this, 'run'); 73 if($method->getNumberOfParameters()>0) 74 return $this->runWithParamsInternal($this, $method, $params); 75 76 $this->run(); 77 return true; 78 } 79 80 /** 81 * Executes a method of an object with the supplied named parameters. |
#2 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/CController.php(308): CAction->runWithParams() 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; |
#3 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/CController.php(286): CController->runAction() 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(); |
#4 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/CController.php(265): CController->runActionWithFilters() 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); |
#5 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/CWebApplication.php(282): CController->run() 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))); |
#6 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController() 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. |
#7 |
+
–
/home/xxx/domains/survey.domain.com/public_html/framework/base/CApplication.php(185): CWebApplication->processRequest() 180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#8 |
+
–
/home/xxx/domains/survey.domain.com/public_html/index.php(182): CApplication->run() 177 require_once APPPATH . 'core/LSYii_Application' . EXT; 178 179 $config = require_once(APPPATH . 'config/internal' . EXT); 180 181 Yii::$enableIncludePath = false; 182 Yii::createApplication('LSYii_Application', $config)->run(); 183 184 /* End of file index.php */ 185 /* Location: ./index.php */ |