ErrorException [ Warning ]:
APPPATH/classes/Date.php [ 24 ]
19 $nowGenerated = true;
20 }
21
22 if(!is_int($source)) {
23 // jezeli nie jest intem to przeksztalcamy
24 $timestamp = strtotime($source);
25 } else {
26 // jezeli jest intem to podstawiamy
27 $timestamp = $source;
28 }
29
-
{PHP internal call} » Kohana_Core::error_handler()
-
APPPATH/classes/Date.php [ 24 ] » strtotime()
19 $nowGenerated = true; 20 } 21 22 if(!is_int($source)) { 23 // jezeli nie jest intem to przeksztalcamy 24 $timestamp = strtotime($source); 25 } else { 26 // jezeli jest intem to podstawiamy 27 $timestamp = $source; 28 } 29
-
APPPATH/views/sub/notice/details.php [ 50 ] » Date::getDate()
45 <div class="clear"> 46 <div class="section-group"> 47 <section class="no-header"> 48 <table cellspacing="0"> 49 <tr> 50 <td>Wolne od: <strong><?if(empty($notice['start_date'])): ?>dzisiaj<?else: ?><?=Date::getDate('d.m.Y', $notice['start_date']) ?><?endif ?></strong></td> 51 <td>Koniec wynajmu: <strong><?if(empty($notice['start_end'])): ?>nieokreślone<?else: ?><?=Date::getDate('d.m.Y', $notice['start_end']) ?><?endif ?></strong></td> 52 <td>Data ogłoszenia: <strong><?=Date::getDate('d.m.Y', $notice['created']) ?></strong></td> 53 </tr> 54 </table> 55 </section>
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(66) "/home/www/twojastancja.pl/application/views/sub/notice/details.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/View.php [ 236 ] » Kohana_View->render()
231 */ 232 public function __toString() 233 { 234 try 235 { 236 return $this->render(); 237 } 238 catch (Exception $e) 239 { 240 /** 241 * Display the exception message.
-
APPPATH/views/main/site.php [ 177 ] » Kohana_View->__toString()
172 173 174 175 <div id="content" class="<?if(isset($mainContentClassClear)): ?><?if($mainContentClassClear==false): ?><?else: ?>clear<?endif ?><?else: ?>wrap<?endif ?>"> 176 <?if(isset($content)): ?> 177 <?=$content ?> 178 <?endif ?> 179 </div> 180 181 <?if((isset($mainContentClassClear) && $mainContentClassClear==false) || !isset($mainContentClassClear)): ?> 182 <br />
-
SYSPATH/classes/Kohana/View.php [ 62 ] » include(arguments)
0
string(57) "/home/www/twojastancja.pl/application/views/main/site.php"
57 ob_start(); 58 59 try 60 { 61 // Load the view within the current scope 62 include $kohana_view_filename; 63 } 64 catch (Exception $e) 65 { 66 // Delete the output buffer 67 ob_end_clean();
-
SYSPATH/classes/Kohana/View.php [ 359 ] » Kohana_View::capture()
354 { 355 throw new View_Exception('You must set the file to use within your view before rendering'); 356 } 357 358 // Combine local and global data and capture the output 359 return View::capture($this->_file, $this->_data); 360 } 361 362 }
-
SYSPATH/classes/Kohana/Controller/Template.php [ 44 ] » Kohana_View->render()
39 */ 40 public function after() 41 { 42 if ($this->auto_render === TRUE) 43 { 44 $this->response->body($this->template->render()); 45 } 46 47 parent::after(); 48 } 49
-
APPPATH/classes/Controller/Base.php [ 46 ] » Kohana_Controller_Template->after()
41 42 public function after() { 43 $this->template->meta = $this->meta; 44 $this->template->snippet = $this->snippet; 45 46 parent::after(); 47 } 48 49 protected function setTitle($title) { 50 $this->meta['title'] = $title . ' | TwojaStancja.pl'; 51 }
-
SYSPATH/classes/Kohana/Controller.php [ 87 ] » Controller_Base->after()
82 83 // Execute the action itself 84 $this->{$action}(); 85 86 // Execute the "after action" method 87 $this->after(); 88 89 // Return the response 90 return $this->response; 91 } 92
-
{PHP internal call} » Kohana_Controller->execute()
-
SYSPATH/classes/Kohana/Request/Client/Internal.php [ 97 ] » ReflectionMethod->invoke()
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()
109 $orig_response = $response = Response::factory(array('_protocol' => $request->protocol())); 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 [ 992 ] » Kohana_Request_Client->execute()
987 throw new Request_Exception('Unable to execute :uri without a Kohana_Request_Client', array( 988 ':uri' => $this->_uri, 989 )); 990 } 991 992 return $this->_client->execute($this); 993 } 994 995 /** 996 * Returns whether this request is the initial request Kohana received. 997 * Can be used to test for sub requests.
-
DOCROOT/index.php [ 110 ] » Kohana_Request->execute()
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 //Debugtoolbar::render(); 109 echo Request::factory() 110 ->execute() 111 ->send_headers() 112 ->body();
Environment
Included files (121)
DOCROOT/index.php |
APPPATH/bootstrap.php |
SYSPATH/classes/Kohana/Core.php |
SYSPATH/classes/Kohana.php |
SYSPATH/classes/I18n.php |
SYSPATH/classes/Kohana/I18n.php |
APPPATH/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 |
APPPATH/classes/Cookie.php |
SYSPATH/classes/Kohana/Cookie.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/Kohana/Config/File/Reader.php |
SYSPATH/classes/Kohana/Config/Reader.php |
SYSPATH/classes/Kohana/Config/Source.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/Message.php |
SYSPATH/classes/Kohana/HTTP/Message.php |
SYSPATH/classes/HTTP.php |
SYSPATH/classes/Kohana/HTTP.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/Arr.php |
SYSPATH/classes/Kohana/Arr.php |
SYSPATH/classes/Response.php |
SYSPATH/classes/Kohana/Response.php |
SYSPATH/classes/HTTP/Response.php |
SYSPATH/classes/Kohana/HTTP/Response.php |
SYSPATH/classes/Profiler.php |
SYSPATH/classes/Kohana/Profiler.php |
APPPATH/classes/Controller/Notice.php |
APPPATH/classes/Controller/Base.php |
SYSPATH/classes/Controller/Template.php |
SYSPATH/classes/Kohana/Controller/Template.php |
SYSPATH/classes/Controller.php |
SYSPATH/classes/Kohana/Controller.php |
SYSPATH/classes/View.php |
SYSPATH/classes/Kohana/View.php |
SYSPATH/classes/Session.php |
SYSPATH/classes/Kohana/Session.php |
SYSPATH/config/session.php |
MODPATH/database/config/session.php |
SYSPATH/classes/Config/Group.php |
SYSPATH/classes/Kohana/Config/Group.php |
SYSPATH/classes/Session/Native.php |
SYSPATH/classes/Kohana/Session/Native.php |
APPPATH/classes/Helper/Auth.php |
SYSPATH/classes/Model.php |
SYSPATH/classes/Kohana/Model.php |
APPPATH/classes/Model/Notice.php |
APPPATH/classes/Model/Base.php |
APPPATH/classes/Cache.php |
MODPATH/cache/classes/Kohana/Cache.php |
MODPATH/cache/config/cache.php |
APPPATH/config/cache.php |
MODPATH/cache/classes/Cache/File.php |
MODPATH/cache/classes/Kohana/Cache/File.php |
MODPATH/cache/classes/Cache/GarbageCollect.php |
MODPATH/cache/classes/Kohana/Cache/GarbageCollect.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/config/database.php |
APPPATH/config/database.php |
MODPATH/database/classes/Database/PDO.php |
MODPATH/database/classes/Kohana/Database/PDO.php |
MODPATH/database/classes/Database/Result/Cached.php |
MODPATH/database/classes/Kohana/Database/Result/Cached.php |
MODPATH/database/classes/Database/Result.php |
MODPATH/database/classes/Kohana/Database/Result.php |
APPPATH/config/notice.php |
APPPATH/classes/Model/Photo.php |
APPPATH/classes/Model/Comment.php |
APPPATH/classes/Model/Type.php |
APPPATH/classes/Model/City.php |
APPPATH/classes/Model/District.php |
APPPATH/classes/URL.php |
SYSPATH/classes/Kohana/URL.php |
SYSPATH/classes/UTF8.php |
SYSPATH/classes/Kohana/UTF8.php |
APPPATH/classes/Text.php |
SYSPATH/classes/Kohana/Text.php |
APPPATH/classes/Helper/Notice.php |
APPPATH/views/main/site.php |
SYSPATH/config/url.php |
APPPATH/config/url.php |
APPPATH/views/block/tabs.php |
APPPATH/classes/Helper/Misc.php |
APPPATH/views/sub/notice/details.php |
APPPATH/classes/Date.php |
SYSPATH/classes/Kohana/Date.php |
SYSPATH/classes/Debug.php |
SYSPATH/classes/Kohana/Debug.php |
SYSPATH/views/kohana/error.php |
APPPATH/i18n/pl.php |
Loaded extensions (56)
Core |
date |
libxml |
openssl |
pcre |
zlib |
filter |
hash |
json |
Reflection |
SPL |
session |
standard |
sodium |
apache2handler |
mysqlnd |
PDO |
xml |
bz2 |
calendar |
ctype |
curl |
dom |
mbstring |
FFI |
fileinfo |
ftp |
gd |
gettext |
iconv |
igbinary |
imagick |
intl |
exif |
memcache |
msgpack |
mysqli |
pdo_mysql |
pdo_pgsql |
pgsql |
Phar |
posix |
readline |
shmop |
SimpleXML |
sockets |
sysvmsg |
sysvsem |
sysvshm |
tokenizer |
xmlreader |
xmlwriter |
xsl |
zip |
memcached |
Zend OPcache |
$_SESSION
current_cityName |
string(8) "szczecin" |
current_isToRent |
string(1) "t" |
$_SERVER
REDIRECT_HTTPS |
string(2) "on" |
REDIRECT_SSL_TLS_SNI |
string(15) "twojastancja.pl" |
REDIRECT_STATUS |
string(3) "200" |
HTTPS |
string(2) "on" |
SSL_TLS_SNI |
string(15) "twojastancja.pl" |
HTTP_ACCEPT |
string(3) "*/*" |
HTTP_USER_AGENT |
string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_ACCEPT_ENCODING |
string(23) "gzip, br, zstd, deflate" |
HTTP_HOST |
string(15) "twojastancja.pl" |
PATH |
string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" |
SERVER_SIGNATURE |
string(0) "" |
SERVER_SOFTWARE |
string(6) "Apache" |
SERVER_NAME |
string(15) "twojastancja.pl" |
SERVER_ADDR |
string(12) "10.60.60.100" |
SERVER_PORT |
string(3) "443" |
REMOTE_ADDR |
string(12) "3.145.73.167" |
DOCUMENT_ROOT |
string(34) "/home/www/mszajda/twojastancja.pl/" |
REQUEST_SCHEME |
string(5) "https" |
CONTEXT_PREFIX |
string(0) "" |
CONTEXT_DOCUMENT_ROOT |
string(34) "/home/www/mszajda/twojastancja.pl/" |
SERVER_ADMIN |
string(18) "[no address given]" |
SCRIPT_FILENAME |
string(43) "/home/www/mszajda/twojastancja.pl/index.php" |
REMOTE_PORT |
string(4) "2695" |
REDIRECT_URL |
string(26) "/wynajme-pokoj-22m2-o72092" |
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(26) "/wynajme-pokoj-22m2-o72092" |
SCRIPT_NAME |
string(10) "/index.php" |
PATH_INFO |
string(26) "/wynajme-pokoj-22m2-o72092" |
PATH_TRANSLATED |
string(45) "redirect:/index.php/wynajme-pokoj-22m2-o72092" |
PHP_SELF |
string(36) "/index.php/wynajme-pokoj-22m2-o72092" |
REQUEST_TIME_FLOAT |
float 1735353217.6299 |
REQUEST_TIME |
integer 1735353217 |