{{el.sellPrice.split(',')[0]}}元/㎡
{{el.upnum}}
15862710910
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/245016/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "245016", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/245016/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
15962994197
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/226790/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "226790", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/226790/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
18610885970
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/226667/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "226667", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/226667/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
15501683238
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/226069/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "226069", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/226069/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
18921619770
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/174975/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "174975", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/174975/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
18551314960
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/226068/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "226068", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/226068/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |
15152434180
自有经纪人
/home/webdata/htdocs/nantong/www/protected/controllers/CacheSolrController.php(1677)
1665 # 获取经纪人的小程序码,扫描直接进入网店 1666 1667 public function actiongetAgentCode() { 1668 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1669 if ($brokerId == '') { 1670 $adminId = Yii::app()->request->getParam("adminId", ''); 1671 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY, "adminId" => $adminId, "path" => 'pages_adviser/index/index', 'scene' => "zz/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $adminId); 1672 } else { 1673 1674 $jsonStr = array("method" => "xcxpro.getCxCode", "city" => (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY), "brokerId" => $brokerId, "path" => 'pages/index/homepage', 'scene' => "z/" . (Yii::app()->request->getParam("cityId", '') ? Yii::app()->request->getParam("cityId", '') : CITY) . "/" . $brokerId); 1675 } 1676 $pic = Common::getAppApi($jsonStr); 1677 echo $pic['data']['xcxcode'] . "?rand=" . rand(100, 999); 1678 } 1679 1680 # 获取房源的小程序码,其实这个和上面的功能一样,但是担心会出错,所以人和房源给独立了 1681 1682 public function actiongetHouseCode() { 1683 $brokerId = Yii::app()->request->getParam("brokerId", ''); 1684 $id = Yii::app()->request->getParam("id", ''); 1685 $path = Yii::app()->request->getParam("path", ''); 1686 $path = str_replace(" ", "/", $path); 1687 $typeWeb = Yii::app()->request->getParam("typeWeb", 's'); 1688 $scene = $typeWeb . "/" . CITY . "/" . $brokerId . "/" . $id; 1689 $jsonStr = CJSON::encode(array("brokerId" => $brokerId, "path" => $path, "scene" => $scene));
#0 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3891): CacheSolrController->actiongetAgentCode() 3886 $controller=$this->getController(); 3887 $method=new ReflectionMethod($controller, $methodName); 3888 if($method->getNumberOfParameters()>0) 3889 return $this->runWithParamsInternal($controller, $method, $params); 3890 else 3891 return $controller->$methodName(); 3892 } 3893 } 3894 class CWebUser extends CApplicationComponent implements IWebUser 3895 { 3896 const FLASH_KEY_PREFIX='Yii.CWebUser.flash.'; |
#1 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3403): CInlineAction->runWithParams(array("cacheSolr/getAgentCode/brokerId/226018/type/web/timestamp/1611590476/sign/18f2f81b349ce952a2c5a60dd106dd42de1b1cf5" => "", "brokerId" => "226018", "type" => "web", "timestamp" => "1611590476", ...)) 3398 { 3399 $priorAction=$this->_action; 3400 $this->_action=$action; 3401 if($this->beforeAction($action)) 3402 { 3403 if($action->runWithParams($this->getActionParams())===false) 3404 $this->invalidActionParams($action); 3405 else 3406 $this->afterAction($action); 3407 } 3408 $this->_action=$priorAction; |
#2 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3388): CController->runAction(CInlineAction) 3383 $this->missingAction($actionID); 3384 } 3385 public function runActionWithFilters($action,$filters) 3386 { 3387 if(empty($filters)) 3388 $this->runAction($action); 3389 else 3390 { 3391 $priorAction=$this->_action; 3392 $this->_action=$action; 3393 CFilterChain::create($this,$action,$filters)->run(); |
#3 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(3378): CController->runActionWithFilters(CInlineAction, array()) 3373 { 3374 if(($parent=$this->getModule())===null) 3375 $parent=Yii::app(); 3376 if($parent->beforeControllerAction($this,$action)) 3377 { 3378 $this->runActionWithFilters($action,$this->filters()); 3379 $parent->afterControllerAction($this,$action); 3380 } 3381 } 3382 else 3383 $this->missingAction($actionID); |
#4 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1725): CController->run("getAgentCode") 1720 { 1721 list($controller,$actionID)=$ca; 1722 $oldController=$this->_controller; 1723 $this->_controller=$controller; 1724 $controller->init(); 1725 $controller->run($actionID); 1726 $this->_controller=$oldController; 1727 } 1728 else 1729 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 1730 array('{route}'=>$route===''?$this->defaultController:$route))); |
#5 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1645): CWebApplication->runController("cacheSolr/getAgentCode/brokerId/226018/type/web/timestamp/161159...") 1640 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 1641 $_GET[$name]=$value; 1642 } 1643 else 1644 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 1645 $this->runController($route); 1646 } 1647 protected function registerCoreComponents() 1648 { 1649 parent::registerCoreComponents(); 1650 $components=array( |
#6 |
+
–
/usr/local/webserver/php/includes/yii/yiilite.php(1170): CWebApplication->processRequest() 1165 public function run() 1166 { 1167 if($this->hasEventHandler('onBeginRequest')) 1168 $this->onBeginRequest(new CEvent($this)); 1169 register_shutdown_function(array($this,'end'),0,false); 1170 $this->processRequest(); 1171 if($this->hasEventHandler('onEndRequest')) 1172 $this->onEndRequest(new CEvent($this)); 1173 } 1174 public function end($status=0,$exit=true) 1175 { |
#7 |
+
–
/home/webdata/htdocs/nantong/www/index.php(88): CApplication->run() 83 // specify how many levels of call stack should be shown in each log message 84 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 85 86 require_once($yii); 87 88 Yii::createWebApplication($config)->run(); 89 90 |