MODPATH/cache/classes/Kohana/Cache/File.php [ 151 ]
146 $lifetime = $data->fgets();
147
148 // If we're at the EOF at this point, corrupted!
149 if ($data->eof())
150 {
151 throw new Cache_Exception(__METHOD__.' corrupted cache file!');
152 }
153
154 $cache = '';
155
156 while ($data->eof() === FALSE)
-
APPPATH/classes/Controller/Home.php [ 86 ] » Kohana_Cache_File->get(arguments)
0string(10) "172.18.0.1"81 } else { 82 $langCookie = Cookie::get('lang'); 83 if (empty($langCookie)) { 84 $ip = $_SERVER['REMOTE_ADDR']; 85 $cache = Cache::instance(); 86 $langCookie = $cache->get($ip); 87 if (!isset($langCookie)) { 88 $sql = 'SELECT lang_key FROM ip_tables'; 89 $sql .= ' WHERE %u BETWEEN `COL 3` AND `COL 4`;'; 90 $query = sprintf($sql, ip2long($ip)); 91 $rows = DB::query(Database::SELECT, $query)->execute(); -
APPPATH/classes/Controller/Home.php [ 9 ] » Controller_Home->_define_lang()
4 5 public function before() 6 { 7 parent::before(); 8 9 $this->_define_lang(); 10 $uri = Request::current()->uri(); 11 if ($this->request->is_initial()) { 12 $correct = Request::factory('Router/check') 13 ->method(Request::POST) 14 ->post(array('uri' => $uri)) -
SYSPATH/classes/Kohana/Controller.php [ 69 ] » Controller_Home->before()
64 * @return Response 65 */ 66 public function execute() 67 { 68 // Execute the "before action" method 69 $this->before(); 70 71 // Determine the action to use 72 $action = 'action_'.$this->request->action(); 73 74 // If the action doesn't exist, it's a 404 -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Fotos(4)
{ public template => object View(2){ protected _file => string(69) "/var/www/html/eurocase.com/public_html/application/views/template.php" protected _data => array(0) }public auto_render => bool TRUE public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(32) "(<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "home" "action" => string(5) "index" ) protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "Fotos" protected _action => string(6) "detail" protected _uri => string(15) "fotos/detail/16" protected _external => bool FALSE protected _params => array(1) ( "id" => string(2) "16" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(32) "(<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "home" "action" => string(5) "index" ) protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "Fotos" protected _action => string(6) "detail" protected _uri => string(15) "fotos/detail/16" protected _external => bool FALSE protected _params => array(1) ( "id" => string(2) "16" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }109 $orig_response = $response = Response::factory(); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 990 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => NULL protected _secure => bool FALSE protected _referrer => NULL protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(32) "(<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "home" "action" => string(5) "index" ) protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(5) "Fotos" protected _action => string(6) "detail" protected _uri => string(15) "fotos/detail/16" protected _external => bool FALSE protected _params => array(1) ( "id" => string(2) "16" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * Can be used to test for sub requests. -
MODPATH/router/classes/Controller/Router.php [ 22 ] » Kohana_Request->execute()
17 $request = Request::factory($page->uri); 18 if ($this->request->method() === Request::POST) { 19 $request->method(Request::POST) 20 ->post($this->request->post()); 21 } 22 echo $request->execute(); 23 } else { 24 $uri = ucfirst($pageKey); 25 $request = Request::factory($uri)->execute(); 26 if ($request->status() === 404) { 27 echo Request::factory('Error')->execute(); -
SYSPATH/classes/Kohana/Controller.php [ 84 ] » Controller_Router->action_index()
79 array(':uri' => $this->request->uri()) 80 )->request($this->request); 81 } 82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response -
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke(arguments)
0object Controller_Router(2)
{ public request => object Request(19){ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => string(50) "http://www.eurocase.com/es/productos2016-eus-218bt" protected _route => object Route(5)public response => object Response(5){ protected _filters => array(0) protected _uri => string(11) "<lang>/<id>" protected _regex => array(2) ( "lang" => string(8) "es|en|pr" "id" => string(17) "[A-Za-z0-9_\-\.]*" ) protected _defaults => array(2) ( "controller" => string(6) "Router" "action" => string(5) "index" ) protected _route_regex => string(50) "#^(?P<lang>es|en|pr)/(?P<id>[A-Za-z0-9_\-\.]*)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(6) "Router" protected _action => string(5) "index" protected _uri => string(26) "es/productos2016-eus-218bt" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "es" "id" => string(23) "productos2016-eus-218bt" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }92 93 // Create a new instance of the controller 94 $controller = $class->newInstance($request, $response); 95 96 // Run the controller's execute() method 97 $response = $class->getMethod('execute')->invoke($controller); 98 99 if ( ! $response instanceof Response) 100 { 101 // Controller failed to return a Response. 102 throw new Kohana_Exception('Controller failed to return a Response'); -
SYSPATH/classes/Kohana/Request/Client.php [ 114 ] » Kohana_Request_Client_Internal->execute_request(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => string(50) "http://www.eurocase.com/es/productos2016-eus-218bt" protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(11) "<lang>/<id>" protected _regex => array(2) ( "lang" => string(8) "es|en|pr" "id" => string(17) "[A-Za-z0-9_\-\.]*" ) protected _defaults => array(2) ( "controller" => string(6) "Router" "action" => string(5) "index" ) protected _route_regex => string(50) "#^(?P<lang>es|en|pr)/(?P<id>[A-Za-z0-9_\-\.]*)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(6) "Router" protected _action => string(5) "index" protected _uri => string(26) "es/productos2016-eus-218bt" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "es" "id" => string(23) "productos2016-eus-218bt" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}1object Response(5)
{ protected _status => integer 200 protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => NULL }109 $orig_response = $response = Response::factory(); 110 111 if (($cache = $this->cache()) instanceof HTTP_Cache) 112 return $cache->execute($this, $request, $response); 113 114 $response = $this->execute_request($request, $response); 115 116 // Execute response callbacks 117 foreach ($this->header_callbacks() as $header => $callback) 118 { 119 if ($response->headers($header)) -
SYSPATH/classes/Kohana/Request.php [ 990 ] » Kohana_Request_Client->execute(arguments)
0object Request(19)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(8) "HTTP/1.0" protected _secure => bool FALSE protected _referrer => string(50) "http://www.eurocase.com/es/productos2016-eus-218bt" protected _route => object Route(5){ protected _filters => array(0) protected _uri => string(11) "<lang>/<id>" protected _regex => array(2) ( "lang" => string(8) "es|en|pr" "id" => string(17) "[A-Za-z0-9_\-\.]*" ) protected _defaults => array(2) ( "controller" => string(6) "Router" "action" => string(5) "index" ) protected _route_regex => string(50) "#^(?P<lang>es|en|pr)/(?P<id>[A-Za-z0-9_\-\.]*)$#uD" }protected _routes => array(0) protected _header => object HTTP_Header(0){ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(6) "Router" protected _action => string(5) "index" protected _uri => string(26) "es/productos2016-eus-218bt" protected _external => bool FALSE protected _params => array(2) ( "lang" => string(2) "es" "id" => string(23) "productos2016-eus-218bt" ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(9){ protected _previous_environment => NULL protected _cache => NULL protected _follow => bool FALSE protected _follow_headers => array(1) ( 0 => string(13) "Authorization" ) protected _strict_redirect => bool TRUE protected _header_callbacks => array(1) ( "Location" => string(34) "Request_Client::on_header_location" ) protected _max_callback_depth => integer 5 protected _callback_depth => integer 1 protected _callback_params => array(0) }}985 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 986 ':uri' => $this->_uri, 987 )); 988 } 989 990 return $this->_client->execute($this); 991 } 992 993 /** 994 * Returns whether this request is the initial request Kohana received. 995 * Can be used to test for sub requests. -
DOCROOT/index.php [ 117 ] » Kohana_Request->execute()
112 /** 113 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 114 * If no source is specified, the URI will be automatically detected. 115 */ 116 $request = Request::factory(TRUE, array(), FALSE) 117 ->execute() 118 ->send_headers(TRUE); 119 120 if ($request->status() === 404) { 121 $request = Request::factory('Error')->execute(); 122 }