ErrorException [ Notice ]:
APPPATH/views/team.php [ 48 ]
43 </ul>
44 <div style="float:left;">
45
46 <?php
47 echo '<p><b><small>'.HTML::anchor('team/'.$team, "< BACK").'</small></b></p>';
48 echo '<h2 style="margin:0;padding:0;">'.strtoupper($curr_member->name).'</h2>';
49 echo $curr_member->content;
50 ?>
51 </div>
52
53 <?php } ?>
-
APPPATH/views/team.php [ 48 ] » Kohana_Core::error_handler()
43 </ul> 44 <div style="float:left;"> 45 46 <?php 47 echo '<p><b><small>'.HTML::anchor('team/'.$team, "< BACK").'</small></b></p>'; 48 echo '<h2 style="margin:0;padding:0;">'.strtoupper($curr_member->name).'</h2>'; 49 echo $curr_member->content; 50 ?> 51 </div> 52 53 <?php } ?> -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(75) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/application/views/team.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(75) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/application/views/team.php"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 [ 149 ] » Kohana_View->__toString()
144 </div> 145 146 <div style="clear:both;"></div> 147 </div> 148 149 <?php echo $content; ?> 150 151 </div> 152 153 <div style="clear:both;"></div> 154 -
SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)
0string(79) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/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(79) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/application/views/template.php"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/team.php [ 31 ] » Kohana_Response->body(arguments)
0object View(2)
{ protected _file => string(79) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/application/views/template.php" protected _data => array(2) ( "title" => string(10) "SKATE TEAM" "content" => object View(2){ protected _file => string(75) "/nfs/c02/h05/mnt/38787/domains/dtaposse.com/html/application/views/team.php" protected _data => array(4) ( "ptitle" => string(10) "SKATE TEAM" "members" => object Database_MySQL_Result(7)) }{ protected _internal_row => integer 11 protected _query => string(83) "SELECT `team_members`.* FROM `team_members` WHERE `team_id` = 1 ORDER BY `position`" protected _result => resource(mysql result) protected _total_rows => integer 11 protected _current_row => integer 11 protected _as_object => string(16) "Model_Teammember" protected _object_params => NULL }"member_name" => string(13) "kevin-bradley" "team" => string(5) "skate" ) }26 27 $view = View::factory("template"); 28 $view->title = $pagename; 29 $view->content = $content; 30 31 $this->response->body($view); 32 } 33 34 public function action_motorsports($member = "") 35 { 36 $members = ORM::factory("teammember")->where("team_id", "=", 5)->order_by("position")->find_all(); -
{PHP internal call} » Controller_Team->action_skate(arguments)
0string(13) "kevin-bradley" -
SYSPATH/classes/kohana/request/client/internal.php [ 132 ] » ReflectionMethod->invokeArgs(arguments)
0object Controller_Team(2)
{ public request => object Request(20){ 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 => NULL protected _uri => string(32) "(<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "page" "action" => string(5) "index" ) protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }protected _routes => NULL protected _response => object Response(5){ 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(4) "team" protected _action => string(5) "skate" protected _uri => string(24) "team/skate/kevin-bradley" protected _external => bool FALSE protected _params => array(1) ( "id" => string(13) "kevin-bradley" ) 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 1337349089 }public _injected_routes => array(0) }{ protected _status => integer 200 protected _header => object HTTP_Header(0)}{ }protected _body => string(0) "" protected _cookies => array(0) protected _protocol => string(4) "http" }1array(1) ( "id" => string(13) "kevin-bradley" )
127 * Execute the main action with the parameters 128 * 129 * @deprecated $params passing is deprecated since version 3.1 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 -
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 => NULL protected _uri => string(32) "(<controller>(/<action>(/<id>)))" protected _regex => array(0) protected _defaults => array(2) ( "controller" => string(4) "page" "action" => string(5) "index" ) protected _route_regex => string(95) "#^(?:(?P<controller>[^/.,;?\n]++)(?:/(?P<action>[^/.,;?\n]++)(?:/(?P<id>[^/.,;?\n]++))?)?)?$#uD" }protected _routes => NULL protected _response => object Response(5){ 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(4) "team" protected _action => string(5) "skate" protected _uri => string(24) "team/skate/kevin-bradley" protected _external => bool FALSE protected _params => array(1) ( "id" => string(13) "kevin-bradley" ) 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 1337349089 }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 [ 109 ] » Kohana_Request->execute()
104 /** 105 * Execute the main request. A source of the URI can be passed, eg: $_SERVER['PATH_INFO']. 106 * If no source is specified, the URI will be automatically detected. 107 */ 108 echo Request::factory() 109 ->execute() 110 ->send_headers() 111 ->body();
Environment
Included files (99)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/kohana/core.php |
SYSPATH/classes/kohana.php |
SYSPATH/classes/i18n.php |
SYSPATH/classes/kohana/i18n.php |
SYSPATH/classes/kohana/exception.php |
SYSPATH/classes/kohana/kohana/exception.php |
SYSPATH/classes/log.php |
SYSPATH/classes/kohana/log.php |
SYSPATH/classes/config.php |
SYSPATH/classes/kohana/config.php |
SYSPATH/classes/log/file.php |
SYSPATH/classes/kohana/log/file.php |
SYSPATH/classes/log/writer.php |
SYSPATH/classes/kohana/log/writer.php |
SYSPATH/classes/config/file.php |
SYSPATH/classes/kohana/config/file.php |
SYSPATH/classes/config/reader.php |
SYSPATH/classes/kohana/config/reader.php |
MODPATH/userguide/init.php |
SYSPATH/classes/route.php |
SYSPATH/classes/kohana/route.php |
SYSPATH/classes/arr.php |
SYSPATH/classes/kohana/arr.php |
SYSPATH/config/userguide.php |
MODPATH/userguide/config/userguide.php |
MODPATH/pagination/config/userguide.php |
MODPATH/orm/config/userguide.php |
MODPATH/database/config/userguide.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 |
SYSPATH/classes/request/client/internal.php |
SYSPATH/classes/kohana/request/client/internal.php |
SYSPATH/classes/request/client.php |
SYSPATH/classes/kohana/request/client.php |
SYSPATH/classes/profiler.php |
SYSPATH/classes/kohana/profiler.php |
APPPATH/classes/controller/team.php |
SYSPATH/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 |
MODPATH/orm/classes/orm.php |
MODPATH/orm/classes/kohana/orm.php |
SYSPATH/classes/model.php |
SYSPATH/classes/kohana/model.php |
APPPATH/classes/model/teammember.php |
SYSPATH/classes/inflector.php |
SYSPATH/classes/kohana/inflector.php |
SYSPATH/config/inflector.php |
MODPATH/database/classes/database.php |
MODPATH/database/classes/kohana/database.php |
MODPATH/database/config/database.php |
MODPATH/database/classes/database/mysql.php |
MODPATH/database/classes/kohana/database/mysql.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 |
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 |
SYSPATH/classes/view.php |
SYSPATH/classes/kohana/view.php |
APPPATH/views/template.php |
SYSPATH/classes/url.php |
SYSPATH/classes/kohana/url.php |
SYSPATH/classes/utf8.php |
SYSPATH/classes/kohana/utf8.php |
SYSPATH/classes/html.php |
SYSPATH/classes/kohana/html.php |
APPPATH/views/menu.php |
APPPATH/config/site.php |
APPPATH/views/sidebar.php |
SYSPATH/classes/form.php |
SYSPATH/classes/kohana/form.php |
DOCROOT/mailchimp/inc/store-address.php |
APPPATH/views/team.php |
SYSPATH/classes/debug.php |
SYSPATH/classes/kohana/debug.php |
SYSPATH/classes/date.php |
SYSPATH/classes/kohana/date.php |
SYSPATH/views/kohana/error.php |
Loaded extensions (53)
date |
libxml |
openssl |
pcre |
zlib |
bcmath |
bz2 |
calendar |
ctype |
curl |
dba |
dom |
hash |
filter |
ftp |
gd |
gettext |
session |
iconv |
standard |
json |
ldap |
mbstring |
mcrypt |
mhash |
mime_magic |
mysql |
SimpleXML |
SPL |
PDO |
pdo_mysql |
pdo_pgsql |
pdo_sqlite |
pgsql |
posix |
pspell |
Reflection |
imap |
mysqli |
soap |
sockets |
SQLite |
exif |
tokenizer |
wddx |
xml |
xmlreader |
xmlrpc |
xmlwriter |
xsl |
cgi-fcgi |
suhosin |
Zend Optimizer |
$_SERVER
PATH |
string(28) "/usr/local/bin:/usr/bin:/bin" |
REDIRECT_STATUS |
string(3) "200" |
UNIQUE_ID |
string(24) "2WkGwkAN6BMAAGWFsqYAAACW" |
SCRIPT_URL |
string(25) "/team/skate/kevin-bradley" |
SCRIPT_URI |
string(48) "http://www.dtaposse.com/team/skate/kevin-bradley" |
DATABASE_SERVER |
string(33) "internal-db.s38787.gridserver.com" |
SITE_ROOT |
string(11) "/home/38787" |
SITE_CGIROOT |
string(19) "/home/38787/cgi-bin" |
SITE_HTMLROOT |
string(37) "/home/38787/domains/dtaposse.com/html" |
HTTP_PHPCONF |
string(9) "521568552" |
HTTP_X_CC_ID |
string(8) "ccc04-02" |
HTTP_HOST |
string(16) "www.dtaposse.com" |
HTTP_USER_AGENT |
string(48) "CCBot/1.0 (+http://www.commoncrawl.org/bot.html)" |
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_LANGUAGE |
string(14) "en-us,en;q=0.5" |
HTTP_ACCEPT_ENCODING |
string(4) "gzip" |
HTTP_ACCEPT_CHARSET |
string(30) "ISO-8859-1,utf-8;q=0.7,*;q=0.7" |
HTTP_CONNECTION |
string(5) "close" |
HTTP_CACHE_CONTROL |
string(8) "no-cache" |
HTTP_PRAGMA |
string(8) "no-cache" |
SERVER_SIGNATURE |
string(68) "<address>Apache/2.0.54 Server at www.dtaposse.com Port 80</address>
" |
SERVER_SOFTWARE |
string(13) "Apache/2.0.54" |
SERVER_NAME |
string(16) "www.dtaposse.com" |
SERVER_ADDR |
string(13) "64.13.232.215" |
SERVER_PORT |
string(2) "80" |
REMOTE_ADDR |
string(14) "38.107.179.242" |
DOCUMENT_ROOT |
string(37) "/home/38787/domains/dtaposse.com/html" |
SERVER_ADMIN |
string(22) "webmaster@dtaposse.com" |
SCRIPT_FILENAME |
string(47) "/home/38787/domains/dtaposse.com/html/index.php" |
REMOTE_PORT |
string(5) "34412" |
REDIRECT_URL |
string(35) "/index.php/team/skate/kevin-bradley" |
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(25) "/team/skate/kevin-bradley" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(25) "/team/skate/kevin-bradley" |
PATH_TRANSLATED |
string(62) "/home/38787/domains/dtaposse.com/html/team/skate/kevin-bradley" |
ORIG_PATH_INFO |
string(35) "/index.php/team/skate/kevin-bradley" |
ORIG_SCRIPT_NAME |
string(18) "/gs-bin/php-legacy" |
ORIG_SCRIPT_FILENAME |
string(30) "/etc/apache2/gs-bin/php-legacy" |
ORIG_PATH_TRANSLATED |
string(72) "/home/38787/domains/dtaposse.com/html/index.php/team/skate/kevin-bradley" |
PHP_SELF |
string(35) "/index.php/team/skate/kevin-bradley" |
REQUEST_TIME |
integer 1337349089 |
argv |
array(0) |
argc |
integer 0 |
































