Seminars - Posts Tagged: Benchmarking
Sort By:

Error
/proj/sc-sem/wordpress/wp-content/themes/wordpress-bootstrap-master/archive.php(582)
570 <img class="home-play-btn" src="<?php echo Yii::app()->params['img_url']."play-btn.png"; ?>" alt="" style="" /> 571 <?php if($model->object_restricted == "1"){ 572 $restricted_top = 158 - ((158 - $home_img_height) / 2) - 25 -3 ; 573 $restricted_left = 199 - ((199 - $home_img_width) / 2 )- 25 + 3; 574 ?> 575 <img class="home-restricted-video" src="<?php echo Yii::app()->params['img_url']."restricted-video.png"; ?>" alt="" style=" width:25px;height:25px;position: absolute;z-index:3;left:<?php echo $restricted_left; ?>px;top:<?php echo $restricted_top; ?>px;" /> 576 <?php } ?> 577 <?php } ?> 578 </div> 579 </a> 580 <!--<div class="work-details"> --> 581 <?php if(!empty($model->title_link)){ ?> 582 <a href="<?php echo (empty($model->title_link)?"#":$model->title_link); ?>" title="<?php echo $model->title; ?>" target="_blank" style="font-weight:700;"><?php echo cut_content($model->title); ?></a> 583 <?php }else{ ?> 584 <span style="font-weight:700;" title="<?php echo $model->title; ?>"><?php echo cut_content($model->title); ?></span> 585 <?php } ?> 586 <?php echo (empty($model->speaker)?"":"<br />".$model->speaker); ?> 587 <span style="color:#7F7F7F;"><?php echo (empty($model->seminar_date)?"":"<br />".date("Y-m-d", strtotime($model->seminar_date))); ?> </span> 588 <?php 589 if(count($sc_attachment_model) > 0){ 590 echo "<br />"; 591 foreach($sc_attachment_model as $k=>$v){ 592 if($v->type == "file"){ 593 $tmp_file_arr = explode("/", $v->value); 594 if($tmp_file_arr[0] == "r"){
Stack Trace
#0 |
+
–
/proj/sc-sem/wordpress/wp-includes/template-loader.php(106): include() 101 * 102 * @param string $template The path of the template to include. 103 */ 104 $template = apply_filters( 'template_include', $template ); 105 if ( $template ) { 106 include $template; 107 } elseif ( current_user_can( 'switch_themes' ) ) { 108 $theme = wp_get_theme(); 109 if ( $theme->errors() ) { 110 wp_die( $theme->errors() ); 111 } |
#1 |
+
–
/proj/sc-sem/protected/controllers/SiteController.php(48): require_once("/proj/sc-sem/wordpress/wp-includes/template-loader.php") 43 //$this->render('index'); 44 //$this->layout = false; 45 try { 46 //spl_autoload_unregister(array('YiiBase', 'autoload')); 47 wp(); 48 require_once(ABSPATH . WPINC . '/template-loader.php'); 49 //spl_autoload_register(array('YiiBase', 'autoload')); 50 //wp(); 51 //require_once( ABSPATH . WPINC . '/template-loader.php' ); 52 ////exit(); 53 Yii::app()->end(); |
#2 |
+
–
/proj/sc-sem/framework/web/actions/CInlineAction.php(49): SiteController->actionIndex() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#3 |
+
–
/proj/sc-sem/framework/web/CController.php(308): CInlineAction->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; |
#4 |
+
–
/proj/sc-sem/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(); |
#5 |
+
–
/proj/sc-sem/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); |
#6 |
+
–
/proj/sc-sem/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))); |
#7 |
+
–
/proj/sc-sem/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. |
#8 |
+
–
/proj/sc-sem/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 /** |
#9 |
+
–
/proj/sc-sem/index.php(19): CApplication->run() 14 defined('YII_DEBUG') or define('YII_DEBUG',true); 15 // specify how many levels of call stack should be shown in each log message 16 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 17 18 require_once($yii); 19 Yii::createWebApplication($config)->run(); |
2025-07-21 08:40:38 Apache Yii Framework/1.1.24