string(743) "HTTP/1.1 302 Moved Temporarily Server: nginx/1.4.6 (Ubuntu) Date: Mon, 27 Jun 2022 18:15:15 GMT Content-Type: text/html Transfer-Encoding: chunked Connection: keep-alive X-Powered-By: PHP/5.5.9-1ubuntu4.25 Set-Cookie: rhc_session_id=q5b7jtknrk6pd2vo7kmvanmjq3; path=/; domain=.vdmparts.com Set-Cookie: qtrans_cookie_test=qTranslate+Cookie+Test; path=/; domain=shop.vdmparts.com Set-Cookie: PHPSESSID=q5b7jtknrk6pd2vo7kmvanmjq3; path=/ Expires: Mon, 26 Jul 1997 05:00:00 GMT Last-Modified: Mon, 27 Jun 2022 18:15:14 GMT Pragma: no-cache Cache-control: private Set-Cookie: userloggedinwebshop=1; expires=Thu, 01-Jan-1970 00:25:00 GMT; Max-Age=-1656352215; path=/; domain=.vdmparts.com Location: /index.php?page_name=landing "
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CHttpRequest.php(1175)
1163 } 1164 1165 /** 1166 * Sends a cookie. 1167 * @param CHttpCookie $cookie cookie to be sent 1168 */ 1169 protected function addCookie($cookie) 1170 { 1171 $value=$cookie->value; 1172 if($this->_request->enableCookieValidation) 1173 $value=Yii::app()->getSecurityManager()->hashData(serialize($value)); 1174 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1175 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly); 1176 else 1177 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure); 1178 } 1179 1180 /** 1181 * Deletes a cookie. 1182 * @param CHttpCookie $cookie cookie to be deleted 1183 */ 1184 protected function removeCookie($cookie) 1185 { 1186 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1187 setcookie($cookie->name,'',0,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly);
#0 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CHttpRequest.php(1175): setcookie("YII_CSRF_TOKEN", "786f629cb0329e515614aad8c72ac8d1862f32f5", 0, "/", ...) 1170 { 1171 $value=$cookie->value; 1172 if($this->_request->enableCookieValidation) 1173 $value=Yii::app()->getSecurityManager()->hashData(serialize($value)); 1174 if(version_compare(PHP_VERSION,'5.2.0','>=')) 1175 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure,$cookie->httpOnly); 1176 else 1177 setcookie($cookie->name,$value,$cookie->expire,$cookie->path,$cookie->domain,$cookie->secure); 1178 } 1179 1180 /** |
#1 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CHttpRequest.php(1127): CCookieCollection->addCookie(CHttpCookie) 1122 if($cookie instanceof CHttpCookie) 1123 { 1124 $this->remove($name); 1125 parent::add($name,$cookie); 1126 if($this->_initialized) 1127 $this->addCookie($cookie); 1128 } 1129 else 1130 throw new CException(Yii::t('yii','CHttpCookieCollection can only hold CHttpCookie objects.')); 1131 } 1132 |
#2 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CHttpRequest.php(980): CCookieCollection->add("YII_CSRF_TOKEN", CHttpCookie) 975 $cookie=$this->getCookies()->itemAt($this->csrfTokenName); 976 if(!$cookie || ($this->_csrfToken=$cookie->value)==null) 977 { 978 $cookie=$this->createCsrfCookie(); 979 $this->_csrfToken=$cookie->value; 980 $this->getCookies()->add($cookie->name,$cookie); 981 } 982 } 983 984 return $this->_csrfToken; 985 } |
#3 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/base/CComponent.php(111): CHttpRequest->getCsrfToken() 106 */ 107 public function __get($name) 108 { 109 $getter='get'.$name; 110 if(method_exists($this,$getter)) 111 return $this->$getter(); 112 elseif(strncasecmp($name,'on',2)===0 && method_exists($this,$name)) 113 { 114 // duplicating getEventHandlers() here for performance 115 $name=strtolower($name); 116 if(!isset($this->_e[$name])) |
#4 |
+
–
/home/y/y25077ow/joker.md/public_html/protected/views/layouts/layout.php(32): CComponent->__get("csrfToken") 27 var URLVALUTE = '<?php echo Yii::app()->createUrl("/main/valute"); ?>'; 28 var URLUPDATECART = '<?php echo Yii::app()->createUrl("/main/updatecart"); ?>'; 29 var URLDELETITEMCART = '<?php echo Yii::app()->createUrl("/main/deletitemcart"); ?>'; 30 var CARTPHRASE = '<?=Yii::t("main","Cosul cu produse este gol!") ?>'; 31 var URLDELETCART = '<?php echo Yii::app()->createUrl("/main/deletcart"); ?>'; 32 var CSRF = '<?php echo Yii::app()->request->csrfToken ?>'; 33 </script> 34 <link rel="icon" href="/images/favicon.ico" type="image/x-icon" /> 35 <link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon" /> 36 <link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,700,300&subset=latin,cyrillic-ext,greek-ext,vietnamese,greek,cyrillic,latin-ext' rel='stylesheet' type='text/css' /> 37 <link rel="stylesheet" type="text/css" href="/css/style.css" /> |
#5 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CBaseController.php(126): require("/home/y/y25077ow/joker.md/public_html/protected/views/layouts/la...") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#6 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/y/y25077ow/joker.md/public_html/protected/views/layouts/la...", array("content" => "<section id="container">
<!--<aside id="meniu">
<br><br>
..."), true) 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); |
#7 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CController.php(784): CBaseController->renderFile("/home/y/y25077ow/joker.md/public_html/protected/views/layouts/la...", array("content" => "<section id="container">
<!--<aside id="meniu">
<br><br>
..."), true) 779 { 780 if($this->beforeRender($view)) 781 { 782 $output=$this->renderPartial($view,$data,true); 783 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 784 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 785 786 $this->afterRender($view,$output); 787 788 $output=$this->processOutput($output); 789 |
#8 |
+
–
/home/y/y25077ow/joker.md/public_html/protected/controllers/MainController.php(64): CController->render("vdparts", array("iframe" => "http://vps16398.public.cloudvps.com/site/pagece5.wplus?ID_COUNT=...", "title" => "Suzuki ATV/Quad")) 59 $iframe = Yii::app()->params['vdmparts_menu'][$i]['subitems'][$j]['iframe']; 60 $iframe = str_replace('{session_id}', $sesid, $iframe); 61 $this->render('vdparts',array( 62 'iframe'=> $iframe, 63 'title'=> $title 64 )); 65 } 66 public function actionFichektm(){ 67 $this->render('fichektm'); 68 } 69 public function actionFichehusqvrn(){ |
#9 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/actions/CInlineAction.php(49): MainController->actionVdparts() 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 } |
#10 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CController.php(308): CInlineAction->runWithParams(array("item" => "2_2", "lang" => "ru")) 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; |
#11 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/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(); |
#12 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/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); |
#13 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CWebApplication.php(282): CController->run("vdparts") 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))); |
#14 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/web/CWebApplication.php(141): CWebApplication->runController("main/vdparts") 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. |
#15 |
+
–
/home/y/y25077ow/joker.md/YiiRoot_1.1.13/framework/base/CApplication.php(169): CWebApplication->processRequest() 164 public function run() 165 { 166 if($this->hasEventHandler('onBeginRequest')) 167 $this->onBeginRequest(new CEvent($this)); 168 register_shutdown_function(array($this,'end'),0,false); 169 $this->processRequest(); 170 if($this->hasEventHandler('onEndRequest')) 171 $this->onEndRequest(new CEvent($this)); 172 } 173 174 /** |
#16 |
+
–
/home/y/y25077ow/joker.md/public_html/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(); 14 |