/var/www/cms.moglilabs.com/protected/components/RedisOperation.php(26)
14 15 public function set($key, $data){ 16 $stored_key = REDIS_APP_KEY_PREFIX."_".$key; 17 $redis = new Redis(); 18 $redis->connect(REDIS_SERVER_URL, REDIS_PORT_NUMBER); 19 $redis->set($stored_key, $data); 20 } 21 22 public function get($key){ 23 $data = null; 24 $stored_key = REDIS_APP_KEY_PREFIX."_".$key; 25 $redis = new Redis(); 26 $redis->connect(REDIS_SERVER_URL, REDIS_PORT_NUMBER); 27 if($redis->exists($stored_key)){ 28 $data = $redis->get($stored_key); 29 } 30 return $data; 31 } 32 33 public function delete($key){ 34 $stored_key = REDIS_APP_KEY_PREFIX."_".$key; 35 $redis = new Redis(); 36 $redis->connect(REDIS_SERVER_URL, REDIS_PORT_NUMBER); 37 $redis->del($stored_key); 38 }
#0 |
+
–
/var/www/cms.moglilabs.com/protected/components/RedisOperation.php(26): Redis->connect("127.0.0.1", "6379") 21 22 public function get($key){ 23 $data = null; 24 $stored_key = REDIS_APP_KEY_PREFIX."_".$key; 25 $redis = new Redis(); 26 $redis->connect(REDIS_SERVER_URL, REDIS_PORT_NUMBER); 27 if($redis->exists($stored_key)){ 28 $data = $redis->get($stored_key); 29 } 30 return $data; 31 } |
#1 |
+
–
/var/www/cms.moglilabs.com/protected/modules/Cms/controllers/ApiLayoutController.php(550): RedisOperation->get("CM881267") 545 546 else{ 547 $layoutCodearr = Yii::app()->params['CMS_LAYOUT_JSON_ID']; 548 $key = $layoutCodearr[1]; 549 } 550 if($redis->get($key) == null){ 551 552 foreach ($layoutCodearr as $layoutCode) { 553 $layoutData = Layout::model()->getLayoutByCode($layoutCode); 554 555 if($layoutData){ |
#2 |
+
–
/var/www/yii-1.1.16.bca042/framework/web/actions/CInlineAction.php(49): ApiLayoutController->actionGetLayoutJsonBody() 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 |
+
–
/var/www/yii-1.1.16.bca042/framework/web/CController.php(308): CInlineAction->runWithParams(array("requestType" => "undefined")) 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 |
+
–
/var/www/yii-1.1.16.bca042/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(); |
#5 |
+
–
/var/www/yii-1.1.16.bca042/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); |
#6 |
+
–
/var/www/yii-1.1.16.bca042/framework/web/CWebApplication.php(282): CController->run("getLayoutJsonBody") 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 |
+
–
/var/www/yii-1.1.16.bca042/framework/web/CWebApplication.php(141): CWebApplication->runController("Cms/apiLayout/getLayoutJsonBody") 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 |
+
–
/var/www/yii-1.1.16.bca042/framework/base/CApplication.php(184): CWebApplication->processRequest() 179 public function run() 180 { 181 if($this->hasEventHandler('onBeginRequest')) 182 $this->onBeginRequest(new CEvent($this)); 183 register_shutdown_function(array($this,'end'),0,false); 184 $this->processRequest(); 185 if($this->hasEventHandler('onEndRequest')) 186 $this->onEndRequest(new CEvent($this)); 187 } 188 189 /** |
#9 |
+
–
/var/www/cms.moglilabs.com/index.php(13): CApplication->run() 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 12 require_once($yii); 13 Yii::createWebApplication($config)->run(); |