/home/sejas/bucletube.es/protected/components/Crypto.php(15)
03 var $key; 04 var $data; 05 var $iv; 06 07 08 function __construct($key,$iv){ //no hace accesos externos a http//no se está utilizando 09 $this->key=$key; 10 $this->iv=$iv; 11 } 12 13 14 function encriptar($data){ 15 return base64_encode (mcrypt_encrypt( MCRYPT_BLOWFISH, $this->key, $data, MCRYPT_MODE_CBC, $this->iv )); 16 // return base64_encode ($data); 17 //return $data; 18 } 19 function desencriptar($enc){ 20 return mcrypt_decrypt( MCRYPT_BLOWFISH,$this->key, base64_decode($enc), MCRYPT_MODE_CBC, $this->iv ); 21 // return base64_decode($enc); 22 //return $enc; 23 } 24 25 26 function __destruct(){ 27 //unset
#0 |
+
–
/home/sejas/bucletube.es/protected/views/layouts/main.php(170): Crypto->encriptar("8invitado:invitado:8seXhayz1NA:ejecutar") 165 $key="michaelakarnikova".$salt; 166 $iv="antonios"; 167 $crypto= new Crypto($key,$iv); 168 169 170 $params = array('v_id'=>$crypto->encriptar("8invitado:invitado:$_VIDEOID:ejecutar"), 171 'salt'=>$salt); 172 173 ?> 174 <?php //http://lineadecodigo.com/jquery/peticiones-ajax-con-jquery/ 175 |
#1 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(119): require("/home/sejas/bucletube.es/protected/views/layouts/main.php") 114 $data=$_data_; 115 if($_return_) 116 { 117 ob_start(); 118 ob_implicit_flush(false); 119 require($_viewFile_); 120 return ob_get_clean(); 121 } 122 else 123 require($_viewFile_); 124 } |
#2 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(88): CBaseController->renderInternal("/home/sejas/bucletube.es/protected/views//layouts/main.php", array("content" => "<div class="container">
<div id="content">
<div id="antes">
<..."), true) 83 { 84 $widgetCount=count($this->_widgetStack); 85 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 86 $content=$renderer->renderFile($this,$viewFile,$data,$return); 87 else 88 $content=$this->renderInternal($viewFile,$data,$return); 89 if(count($this->_widgetStack)===$widgetCount) 90 return $content; 91 else 92 { 93 $widget=end($this->_widgetStack); |
#3 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/widgets/CContentDecorator.php(78): CBaseController->renderFile("/home/sejas/bucletube.es/protected/views//layouts/main.php", array("content" => "<div class="container">
<div id="content">
<div id="antes">
<..."), true) 73 $viewFile=$owner->getViewFile($this->view); 74 if($viewFile!==false) 75 { 76 $data=$this->data; 77 $data['content']=$content; 78 return $owner->renderFile($viewFile,$data,true); 79 } 80 else 81 return $content; 82 } 83 } |
#4 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/widgets/CContentDecorator.php(56): CContentDecorator->decorate("<div class="container">
<div id="content">
<div id="antes">
<...") 51 * This method decorates the output with the specified {@link view}. 52 * @param string $output the captured output to be processed 53 */ 54 public function processOutput($output) 55 { 56 $output=$this->decorate($output); 57 parent::processOutput($output); 58 } 59 60 /** 61 * Decorates the content by rendering a view and embedding the content in it. |
#5 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/widgets/COutputProcessor.php(45): CContentDecorator->processOutput("<div class="container">
<div id="content">
<div id="antes">
<...") 40 * This method stops output buffering and processes the captured output. 41 */ 42 public function run() 43 { 44 $output=ob_get_clean(); 45 $this->processOutput($output); 46 } 47 48 /** 49 * Processes the captured output. 50 * |
#6 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(199): COutputProcessor->run() 194 */ 195 public function endWidget($id='') 196 { 197 if(($widget=array_pop($this->_widgetStack))!==null) 198 { 199 $widget->run(); 200 return $widget; 201 } 202 else 203 throw new CException(Yii::t('yii','{controller} has an extra endWidget({id}) call in its view.', 204 array('{controller}'=>get_class($this),'{id}'=>$id))); |
#7 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(294): CBaseController->endWidget("CContentDecorator") 289 * Ends the rendering of content. 290 * @see beginContent 291 */ 292 public function endContent() 293 { 294 $this->endWidget('CContentDecorator'); 295 } 296 } |
#8 |
+
–
/home/sejas/bucletube.es/protected/views/layouts/column1.php(7): CBaseController->endContent() 2 <div class="container"> 3 <div id="content"> 4 <?php echo $content; ?> 5 </div><!-- content --> 6 </div> 7 <?php $this->endContent(); ?> |
#9 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(119): require("/home/sejas/bucletube.es/protected/views/layouts/column1.php") 114 $data=$_data_; 115 if($_return_) 116 { 117 ob_start(); 118 ob_implicit_flush(false); 119 require($_viewFile_); 120 return ob_get_clean(); 121 } 122 else 123 require($_viewFile_); 124 } |
#10 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CBaseController.php(88): CBaseController->renderInternal("/home/sejas/bucletube.es/protected/views//layouts/column1.php", array("content" => "<div id="antes">
<ul class="videos"></ul></div>
"), true) 83 { 84 $widgetCount=count($this->_widgetStack); 85 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 86 $content=$renderer->renderFile($this,$viewFile,$data,$return); 87 else 88 $content=$this->renderInternal($viewFile,$data,$return); 89 if(count($this->_widgetStack)===$widgetCount) 90 return $content; 91 else 92 { 93 $widget=end($this->_widgetStack); |
#11 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CController.php(781): CBaseController->renderFile("/home/sejas/bucletube.es/protected/views//layouts/column1.php", array("content" => "<div id="antes">
<ul class="videos"></ul></div>
"), true) 776 { 777 if($this->beforeRender($view)) 778 { 779 $output=$this->renderPartial($view,$data,true); 780 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 781 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 782 783 $this->afterRender($view,$output); 784 785 $output=$this->processOutput($output); 786 |
#12 |
+
–
/home/sejas/bucletube.es/protected/controllers/SiteController.php(33): CController->render("index") 28 */ 29 public function actionIndex() 30 { 31 // renders the view file 'protected/views/site/index.php' 32 // using the default layout 'protected/views/layouts/main.php' 33 $this->render('index'); 34 } 35 36 /** 37 * This is the action to handle external exceptions. 38 */ |
#13 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/actions/CInlineAction.php(50): SiteController->actionIndex() 45 $controller=$this->getController(); 46 $method=new ReflectionMethod($controller, $methodName); 47 if($method->getNumberOfParameters()>0) 48 return $this->runWithParamsInternal($controller, $method, $params); 49 else 50 return $controller->$methodName(); 51 } 52 53 } |
#14 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CController.php(300): CInlineAction->runWithParams(array("url" => "http://www.youtube.com/watch?v=8seXhayz1NA")) 295 { 296 $priorAction=$this->_action; 297 $this->_action=$action; 298 if($this->beforeAction($action)) 299 { 300 if($action->runWithParams($this->getActionParams())===false) 301 $this->invalidActionParams($action); 302 else 303 $this->afterAction($action); 304 } 305 $this->_action=$priorAction; |
#15 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CController.php(278): CController->runAction(CInlineAction) 273 * @see runAction 274 */ 275 public function runActionWithFilters($action,$filters) 276 { 277 if(empty($filters)) 278 $this->runAction($action); 279 else 280 { 281 $priorAction=$this->_action; 282 $this->_action=$action; 283 CFilterChain::create($this,$action,$filters)->run(); |
#16 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CController.php(257): CController->runActionWithFilters(CInlineAction, array()) 252 { 253 if(($parent=$this->getModule())===null) 254 $parent=Yii::app(); 255 if($parent->beforeControllerAction($this,$action)) 256 { 257 $this->runActionWithFilters($action,$this->filters()); 258 $parent->afterControllerAction($this,$action); 259 } 260 } 261 else 262 $this->missingAction($actionID); |
#17 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CWebApplication.php(277): CController->run("") 272 { 273 list($controller,$actionID)=$ca; 274 $oldController=$this->_controller; 275 $this->_controller=$controller; 276 $controller->init(); 277 $controller->run($actionID); 278 $this->_controller=$oldController; 279 } 280 else 281 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 282 array('{route}'=>$route===''?$this->defaultController:$route))); |
#18 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/web/CWebApplication.php(136): CWebApplication->runController("") 131 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 132 $_GET[$name]=$value; 133 } 134 else 135 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 136 $this->runController($route); 137 } 138 139 /** 140 * Registers the core application components. 141 * This method overrides the parent implementation by registering additional core components. |
#19 |
+
–
/home/sejas/bucletube.es/include/yii-1.1.8.r3324/framework/base/CApplication.php(158): CWebApplication->processRequest() 153 */ 154 public function run() 155 { 156 if($this->hasEventHandler('onBeginRequest')) 157 $this->onBeginRequest(new CEvent($this)); 158 $this->processRequest(); 159 if($this->hasEventHandler('onEndRequest')) 160 $this->onEndRequest(new CEvent($this)); 161 } 162 163 /** |
#20 |
+
–
/home/sejas/bucletube.es/index.php(15): CApplication->run() 10 defined('YII_DEBUG') or define('YII_DEBUG',true); 11 // specify how many levels of call stack should be shown in each log message 12 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 13 14 require_once($yii); 15 Yii::createWebApplication($config)->run(); |