Kohana_View_Exception [ 0 ]:
SYSPATH/classes/kohana/view.php [ 252 ]
247 */
248 public function set_filename($file)
249 {
250 if (($path = Kohana::find_file('views', $file)) === FALSE)
251 {
252 throw new Kohana_View_Exception('The requested view :file could not be found', array(
253 ':file' => $file,
254 ));
255 }
256
257 // Store the file path locally
-
SYSPATH/classes/kohana/view.php [ 137 ] » Kohana_View->set_filename(arguments)
0string(9) "festival/"132 */ 133 public function __construct($file = NULL, array $data = NULL) 134 { 135 if ($file !== NULL) 136 { 137 $this->set_filename($file); 138 } 139 140 if ($data !== NULL) 141 { 142 // Add the values to the current data -
SYSPATH/classes/kohana/view.php [ 30 ] » Kohana_View->__construct(arguments)
0string(9) "festival/"1NULL
25 * @param array array of values 26 * @return View 27 */ 28 public static function factory($file = NULL, array $data = NULL) 29 { 30 return new View($file, $data); 31 } 32 33 /** 34 * Captures the output that is generated when a view is included. 35 * The view data will be extracted to make local variables. This method -
APPPATH/views/listings/index.php [ 194 ] » Kohana_View::factory(arguments)
0string(9) "festival/"1NULL
189 190 </div> 191 <div id="listings_right"> 192 <img src="http://i.tm-cdn.com/styles/images/ajax-loader.gif" id="search-loading-bloc" style="display: none;"/> 193 <div id="result" style="text-align:left;"> 194 <?= View::factory(str_replace('-', '', $url) . '/' . $shows['view'], $shows['data']) ?> 195 </div> 196 </div> 197 198 <div class="clr"></div> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(45) "/var/www/application/views/listings/index.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)
0string(45) "/var/www/application/views/listings/index.php"1array(8) ( "location" => NULL "sublocation" => NULL "header_title" => NULL "page_title" => NULL "page_subtitle" => string(17) "Shows and Tickets" "url" => string(8) "festival" "festival" => bool TRUE "type" => integer 1 )
338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // End View -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 // Display the exception message 233 Kohana_Exception::handler($e); -
APPPATH/views/template.php [ 152 ] » Kohana_View->__toString()
147 <? if (!empty($submenu)) 148 echo Renderedview::factory('submenu'); //View::factory('submenu'); 149 ?> 150 </div> 151 <div class="clr"></div> 152 <?= $body ?> 153 <div class="clr"></div> 154 <div class="leaderboard"> 155 <div style="margin-left:110px; margin-top:14px;"> 156 <?= 157 View::factory('modules/ads/leaderboard'); -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(39) "/var/www/application/views/template.php"56 ob_start(); 57 58 try 59 { 60 // Load the view within the current scope 61 include $kohana_view_filename; 62 } 63 catch (Exception $e) 64 { 65 // Delete the output buffer 66 ob_end_clean(); -
SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)
0string(39) "/var/www/application/views/template.php"1array(4) ( "takeover" => array(0) "title" => string(4) "View" "body" => object View(2)
{ protected _file => string(45) "/var/www/application/views/listings/index.php" protected _data => array(8) ( "location" => NULL "sublocation" => NULL "header_title" => NULL "page_title" => NULL "page_subtitle" => string(17) "Shows and Tickets" "url" => string(8) "festival" "festival" => bool TRUE "type" => integer 1 ) }"stylesheets" => array(1) ( 0 => string(20) "listings/content.css" ) )338 { 339 throw new Kohana_View_Exception('You must set the file to use within your view before rendering'); 340 } 341 342 // Combine local and global data and capture the output 343 return View::capture($this->_file, $this->_data); 344 } 345 346 } // End View -
SYSPATH/classes/kohana/view.php [ 228 ] » Kohana_View->render()
223 */ 224 public function __toString() 225 { 226 try 227 { 228 return $this->render(); 229 } 230 catch (Exception $e) 231 { 232 // Display the exception message 233 Kohana_Exception::handler($e); -
SYSPATH/classes/kohana/response.php [ 225 ] » Kohana_View->__toString()
220 public function body($content = NULL) 221 { 222 if ($content === NULL) 223 return $this->_body; 224 225 $this->_body = (string) $content; 226 return $this; 227 } 228 229 /** 230 * Gets or sets the HTTP protocol. The standard protocol to use -
APPPATH/classes/controller.php [ 209 ] » Kohana_Response->body(arguments)
0object View(2)
{ protected _file => string(39) "/var/www/application/views/template.php" protected _data => array(4) ( "takeover" => array(0) "title" => string(4) "View" "body" => object View(2){ protected _file => string(45) "/var/www/application/views/listings/index.php" protected _data => array(8) ( "location" => NULL "sublocation" => NULL "header_title" => NULL "page_title" => NULL "page_subtitle" => string(17) "Shows and Tickets" "url" => string(8) "festival" "festival" => bool TRUE "type" => integer 1 ) }"stylesheets" => array(1) ( 0 => string(20) "listings/content.css" ) ) }204 if ($this->ajax) { 205 $this->response->body($this->view); 206 } 207 else { 208 $this->layout->body = $this->view; 209 $this->response->body($this->layout); 210 } 211 } 212 213 } 214 -
{PHP internal call} » Controller->after()
-
SYSPATH/classes/kohana/request/client/internal.php [ 135 ] » ReflectionMethod->invoke(arguments)
0object Controller_Festival(10)
{ public view => object View(2){ protected _file => string(45) "/var/www/application/views/listings/index.php" protected _data => array(8) ( "location" => NULL "sublocation" => NULL "header_title" => NULL "page_title" => NULL "page_subtitle" => string(17) "Shows and Tickets" "url" => string(8) "festival" "festival" => bool TRUE "type" => integer 1 ) }public layout => object View(2){ protected _file => string(39) "/var/www/application/views/template.php" protected _data => array(4) ( "takeover" => array(0) "title" => string(4) "View" "body" => object View(2)public auth_required => bool FALSE public secure_actions => bool FALSE protected ajax => bool FALSE protected canonical_url => string(0) "" public request => object Request(20){ protected _file => string(45) "/var/www/application/views/listings/index.php" protected _data => array(8) ( "location" => NULL "sublocation" => NULL "header_title" => NULL "page_title" => NULL "page_subtitle" => string(17) "Shows and Tickets" "url" => string(8) "festival" "festival" => bool TRUE "type" => integer 1 ) }"stylesheets" => array(1) ( 0 => string(20) "listings/content.css" ) ) }{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(4) "http" protected _referrer => NULL protected _route => object Route(5)public response => object Response(5){ protected _callback => object Closure(1)protected _routes => NULL protected _response => object Response(5){ public 0 => object Closure(1) { *RECURSION* } }protected _uri => NULL protected _regex => array(0) protected _defaults => array(2) ( "action" => string(5) "index" "host" => bool FALSE ) protected _route_regex => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(4) "http" }{ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(8) "festival" protected _action => string(4) "view" protected _uri => string(13) "festival/view" protected _external => bool FALSE protected _params => array(1) ( "host" => bool FALSE ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(5){ protected _previous_environment => NULL protected _cache => NULL protected _allow_private_cache => bool FALSE protected _request_time => NULL protected _response_time => integer 1329205139 }public _injected_routes => array(0) }{ protected _status => integer 200 protected _header => object HTTP_Header(0)public session => object Session_Database(11){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(4) "http" }{ protected _db => object Database_MySQL(6)public categories => array(3) ( "place" => NULL "section" => NULL "category" => NULL ) }{ protected _connection_id => string(40) "456f4660ee1d6685641c4205d19a0ff232fdd187" protected _identifier => string(1) "`" public last_query => string(365) "SELECT COUNT(discount_id) AS cnt FROM `discount` JOIN `show` ON (`show_id` = `discount_show_id`) JOIN `show_venue` ON (`show_ven …" protected _instance => string(7) "default" protected _connection => resource(mysql link) protected _config => array(6) ( "type" => string(5) "mysql" "connection" => array(3) ( "hostname" => string(53) "theatermania.crkp3demhsv2.us-east-1.rds.amazonaws.com" "database" => string(12) "theatermania" "persistent" => bool FALSE ) "table_prefix" => string(0) "" "charset" => string(4) "utf8" "caching" => bool TRUE "profiling" => bool TRUE ) }protected _table => string(8) "sessions" protected _columns => array(3) ( "session_id" => string(10) "session_id" "last_active" => string(11) "last_active" "contents" => string(8) "contents" ) protected _gc => integer 500 protected _session_id => string(23) "4f3a0f935c20f4-82093168" protected _update_id => NULL protected _name => string(10) "tm_session" protected _lifetime => integer 43200 protected _encrypted => string(7) "default" protected _data => array(0) protected _destroyed => bool FALSE }130 * will be removed in 3.2. 131 */ 132 $method->invokeArgs($controller, $params); 133 134 // Execute the "after action" method 135 $class->getMethod('after')->invoke($controller); 136 137 // Stop response time 138 $this->_response_time = (time() - $this->_response_time); 139 140 // Add the default Content-Type header to initial request if not present -
SYSPATH/classes/kohana/request.php [ 1138 ] » Kohana_Request_Client_Internal->execute(arguments)
0object Request(20)
{ protected _requested_with => NULL protected _method => string(3) "GET" protected _protocol => string(4) "http" protected _referrer => NULL protected _route => object Route(5){ protected _callback => object Closure(1)protected _routes => NULL protected _response => object Response(5){ public 0 => object Closure(1) { *RECURSION* } }protected _uri => NULL protected _regex => array(0) protected _defaults => array(2) ( "action" => string(5) "index" "host" => bool FALSE ) protected _route_regex => NULL }{ protected _status => integer 200 protected _header => object HTTP_Header(0)protected _header => object HTTP_Header(0){ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(4) "http" }{ }protected _body => NULL protected _directory => string(0) "" protected _controller => string(8) "festival" protected _action => string(4) "view" protected _uri => string(13) "festival/view" protected _external => bool FALSE protected _params => array(1) ( "host" => bool FALSE ) protected _get => array(0) protected _post => array(0) protected _cookies => array(0) protected _client => object Request_Client_Internal(5){ protected _previous_environment => NULL protected _cache => NULL protected _allow_private_cache => bool FALSE protected _request_time => NULL protected _response_time => integer 1329205139 }public _injected_routes => array(0) }1133 throw new Kohana_Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 1134 ':uri' => $this->_uri, 1135 )); 1136 } 1137 1138 return $this->_client->execute($this); 1139 } 1140 1141 /** 1142 * Returns whether this request is the initial request Kohana received. 1143 * Can be used to test for sub requests. -
DOCROOT/index.php [ 122 ] » Kohana_Request->execute()
117 error_reporting(0); 118 } 119 120 try { 121 echo Request::factory() 122 ->execute() 123 ->send_headers() 124 ->body(); 125 } catch (Exception $exc) { 126 if(ENVIRONMENT == 'dev'){ 127 echo '<pre>';
Environment
Included files (123)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
APPPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/config/reader.php |
SYSPATH/classes/kohana/config/reader.php |
SYSPATH/classes/session.php |
SYSPATH/classes/kohana/session.php |
MODPATH/cache/classes/cache.php |
MODPATH/cache/classes/kohana/cache.php |
SYSPATH/classes/cookie.php |
SYSPATH/classes/kohana/cookie.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
SYSPATH/classes/request.php |
SYSPATH/classes/kohana/request.php |
SYSPATH/classes/http/request.php |
SYSPATH/classes/kohana/http/request.php |
SYSPATH/classes/http/interaction.php |
SYSPATH/classes/kohana/http/interaction.php |
SYSPATH/classes/http/header.php |
SYSPATH/classes/kohana/http/header.php |
APPPATH/classes/uri.php |
APPPATH/classes/util.php |
MODPATH/database/classes/db.php |
MODPATH/database/classes/kohana/db.php |
MODPATH/database/classes/database/query/builder/select.php |
MODPATH/database/classes/kohana/database/query/builder/select.php |
MODPATH/database/classes/database/query/builder/where.php |
MODPATH/database/classes/kohana/database/query/builder/where.php |
MODPATH/database/classes/database/query/builder.php |
MODPATH/database/classes/kohana/database/query/builder.php |
MODPATH/database/classes/database/query.php |
MODPATH/database/classes/kohana/database/query.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/classes/database/query/builder/join.php |
MODPATH/database/classes/kohana/database/query/builder/join.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
MODPATH/database/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
MODPATH/database/classes/database/mysql/result.php |
MODPATH/database/classes/kohana/database/mysql/result.php |
MODPATH/database/classes/database/result.php |
MODPATH/database/classes/kohana/database/result.php |
APPPATH/classes/theatermania.php |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
APPPATH/classes/controller/festival.php |
APPPATH/classes/controller.php |
SYSPATH/classes/kohana/controller.php |
SYSPATH/classes/response.php |
SYSPATH/classes/kohana/response.php |
SYSPATH/classes/http/response.php |
SYSPATH/classes/kohana/http/response.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
MODPATH/auth/classes/auth.php |
MODPATH/auth/classes/kohana/auth.php |
APPPATH/config/auth.php |
MODPATH/orm/classes/auth/orm.php |
APPPATH/classes/kohana/auth/orm.php |
MODPATH/database/config/session.php |
APPPATH/config/session.php |
MODPATH/database/classes/session/database.php |
MODPATH/database/classes/kohana/session/database.php |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
APPPATH/classes/sphinxclient.php |
APPPATH/views/template.php |
APPPATH/classes/omniture.php |
APPPATH/views/modules/popup.php |
APPPATH/views/modules/login-popup.php |
APPPATH/views/modules/login-form.php |
APPPATH/views/modules/admin-box.php |
APPPATH/views/modules/ads/topleaderboard.php |
APPPATH/views/modules/ads/iframe.php |
APPPATH/classes/seo.php |
APPPATH/classes/renderedview.php |
APPPATH/classes/elasticache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/cache/memcache.php |
MODPATH/cache/classes/kohana/cache/memcache.php |
APPPATH/views/header.php |
APPPATH/views/menu.php |
APPPATH/views/listings/index.php |
APPPATH/views/modules/location-header.php |
APPPATH/classes/model/discount.php |
MODPATH/orm/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
MODPATH/database/classes/database/expression.php |
MODPATH/database/classes/kohana/database/expression.php |
APPPATH/views/listings/menu.php |
SYSPATH/classes/kohana/view/exception.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
SYSPATH/classes/html.php |
SYSPATH/classes/kohana/html.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
Loaded extensions (52)
Core |
date |
ereg |
libxml |
openssl |
pcre |
zlib |
bcmath |
bz2 |
calendar |
ctype |
dba |
dom |
hash |
fileinfo |
filter |
ftp |
gettext |
session |
iconv |
json |
mbstring |
apc |
posix |
Reflection |
standard |
shmop |
SPL |
soap |
sockets |
SimpleXML |
exif |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
wddx |
xml |
xmlreader |
xmlwriter |
zip |
apache2handler |
mysql |
Phar |
curl |
memcache |
memcached |
mysqli |
PDO |
pdo_mysql |
suhosin |
mhash |
$_COOKIE
$_SERVER
REDIRECT_STATUS |
string(3) "200" |
HTTP_HOST |
string(20) "www.theatermania.com" |
HTTP_ACCEPT |
string(83) "text/html,application/xhtml+xml,text/xml;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5" |
HTTP_ACCEPT_CHARSET |
string(30) "ISO-8859-1,utf-8;q=0.7,*;q=0.7" |
HTTP_ACCEPT_ENCODING |
string(4) "gzip" |
HTTP_ACCEPT_LANGUAGE |
string(14) "en-us,en;q=0.5" |
HTTP_CACHE_CONTROL |
string(8) "no-cache" |
HTTP_COOKIE |
string(67) "ipad_interstitial=3f86c1f44ed27f10971c4b8c92848248544df537%7E309069" |
HTTP_PRAGMA |
string(8) "no-cache" |
HTTP_USER_AGENT |
string(48) "CCBot/1.0 (+http://www.commoncrawl.org/bot.html)" |
HTTP_X_CC_ID |
string(8) "ccc01-01" |
HTTP_X_FORWARDED_FOR |
string(14) "38.107.179.206" |
HTTP_X_FORWARDED_PORT |
string(2) "80" |
HTTP_X_FORWARDED_PROTO |
string(4) "http" |
HTTP_CONNECTION |
string(10) "keep-alive" |
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
SERVER_SIGNATURE |
string(81) "<address>Apache/2.2.16 (Debian) Server at www.theatermania.com Port 80</address>
" |
SERVER_SOFTWARE |
string(22) "Apache/2.2.16 (Debian)" |
SERVER_NAME |
string(20) "www.theatermania.com" |
SERVER_ADDR |
string(13) "10.90.182.153" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(14) "10.122.246.109" |
DOCUMENT_ROOT |
string(8) "/var/www" |
SERVER_ADMIN |
string(21) "tech@theatermania.com" |
SCRIPT_FILENAME |
string(18) "/var/www/index.php" |
REMOTE_PORT |
string(4) "6638" |
REDIRECT_URL |
string(14) "/festival/view" |
GATEWAY_INTERFACE |
string(7) "CGI/1.1" |
SERVER_PROTOCOL |
string(8) "HTTP/1.1" |
REQUEST_METHOD |
string(3) "GET" |
QUERY_STRING |
string(0) "" |
REQUEST_URI |
string(14) "/festival/view" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(14) "/festival/view" |
PATH_TRANSLATED |
string(38) "redirect:/index.php/festival/view/view" |
PHP_SELF |
string(24) "/index.php/festival/view" |
REQUEST_TIME |
integer 1329205139 |
recommend, approve and/or guarantee such events, or any facts, views, advice and/or information contained therein.
©1999-2012 TheaterMania.com, Inc. All Rights Reserved. Terms of Use & Privacy Policy