Kohana_Request_Exception [ 0 ]: Unable to find a route to match the URI: top.htm

SYSPATH/classes/kohana/request.php [ 638 ]

633 		}
634 
635 		// No matching route for this URI
636 		$this->status = 404;
637 
638 		throw new Kohana_Request_Exception('Unable to find a route to match the URI: :uri',
639 			array(':uri' => $uri));
640 	}
641 
642 	/**
643 	 * Returns the response as the string representation of a request.
  1. SYSPATH/classes/kohana/request.php [ 275 ] » Kohana_Request->__construct(arguments)

    0
    string(7) "top.htm"
    270 
    271 			// Remove all dot-paths from the URI, they are not valid
    272 			$uri = preg_replace('#\.[\s./]*/#', '', $uri);
    273 
    274 			// Create the instance singleton
    275 			Request::$instance = Request::$current = new Request($uri);
    276 
    277 			// Add the default Content-Type header
    278 			Request::$instance->headers['Content-Type'] = 'text/html; charset='.Kohana::$charset;
    279 		}
    280 
    
  2. APPPATH/views/template/header.php [ 30 ] » Kohana_Request::instance()

    25       </ul>
    26 
    27    </div>
    28 
    29    <?php
    30         $sControl = Request::instance()->param('lang');
    31         $number =  rand(1,7);
    32         $link = "{$sBase}media/swf/gasthof_durigon_na_zime.swf";
    33         if(!empty($sControl)){
    34             //$link = "{$sBase}media/swf/{$number}.swf";
    35 			$link = "{$sBase}media/swf/gasthof_durigon_na_zime.swf";
    
  3. SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)

    0
    string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/header.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();
    
  4. SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)

    0
    string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/header.php"
    1
    array(1) (
        "aMainMenu" => array(7) (
            0 => array(3) (
                "title" => string(4) "Home"
                "link" => string(0) ""
                "id" => string(1) "1"
            )
            1 => array(3) (
                "title" => string(11) "Fotogallery"
                "link" => string(0) ""
                "id" => string(1) "2"
            )
            2 => array(3) (
                "title" => string(6) "Preise"
                "link" => string(0) ""
                "id" => string(1) "3"
            )
            3 => array(3) (
                "title" => string(5) "Lifte"
                "link" => string(0) ""
                "id" => string(1) "4"
            )
            4 => array(3) (
                "title" => string(6) "Wetter"
                "link" => string(113) "http://www.wetter.at/wetter/oesterreich/salzburg/ramingstein;jsessionid=0620FF41BE5F2512A3F970F17D48E3BD.apppubl3"
                "id" => string(1) "5"
            )
            5 => array(3) (
                "title" => string(7) "Kontakt"
                "link" => string(0) ""
                "id" => string(1) "6"
            )
            6 => array(3) (
                "title" => string(7) "Anfahrt"
                "link" => string(0) ""
                "id" => string(1) "7"
            )
        )
    )
    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
    
  5. 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);
    
  6. APPPATH/views/template/index.php [ 91 ] » Kohana_View->__toString()

    86          <div class="tail-top">
    87               <div class="tail-bottom">
    88                  <div id="main">
    89                     <!-- header -->
    90                     <div id="header">
    91                          <?php echo isset($oHeader) ? $oHeader : '' ;?>
    92                     </div>
    93                     <!-- content -->
    94                     <div id="content">
    95                          <div class="wrapper">
    96                               <div class="col-1">
    
  7. SYSPATH/classes/kohana/view.php [ 61 ] » include(arguments)

    0
    string(76) "/homepages/15/d241899427/htdocs/durigon/application/views/template/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();
    
  8. SYSPATH/classes/kohana/view.php [ 343 ] » Kohana_View::capture(arguments)

    0
    string(76) "/homepages/15/d241899427/htdocs/durigon/application/views/template/index.php"
    1
    array(4) (
        "oHeader" => object View(2) {
            protected _file => string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/header.php"
            protected _data => array(1) (
                "aMainMenu" => array(7) (
                    0 => array(3) (
                        "title" => string(4) "Home"
                        "link" => string(0) ""
                        "id" => string(1) "1"
                    )
                    1 => array(3) (
                        "title" => string(11) "Fotogallery"
                        "link" => string(0) ""
                        "id" => string(1) "2"
                    )
                    2 => array(3) (
                        "title" => string(6) "Preise"
                        "link" => string(0) ""
                        "id" => string(1) "3"
                    )
                    3 => array(3) (
                        "title" => string(5) "Lifte"
                        "link" => string(0) ""
                        "id" => string(1) "4"
                    )
                    4 => array(3) (
                        "title" => string(6) "Wetter"
                        "link" => string(113) "http://www.wetter.at/wetter/oesterreich/salzburg/ramingstein;jsessionid=0620FF41BE5F2512A3F970F17D48E3BD.apppubl3"
                        "id" => string(1) "5"
                    )
                    5 => array(3) (
                        "title" => string(7) "Kontakt"
                        "link" => string(0) ""
                        "id" => string(1) "6"
                    )
                    6 => array(3) (
                        "title" => string(7) "Anfahrt"
                        "link" => string(0) ""
                        "id" => string(1) "7"
                    )
                )
            )
        }
        "oContent" => object View(2) {
            protected _file => string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/errors.php"
            protected _data => array(0) 
        }
        "oLeftBox" => object View(2) {
            protected _file => string(79) "/homepages/15/d241899427/htdocs/durigon/application/views/template/left_box.php"
            protected _data => array(2) (
                "aLeftMenu" => array(6) (
                    0 => array(3) (
                        "title" => string(15) "Victoria Travel"
                        "link" => string(24) "http://victoriatravel.eu"
                        "id" => string(1) "9"
                    )
                    1 => array(3) (
                        "title" => string(4) "News"
                        "link" => string(0) ""
                        "id" => string(2) "10"
                    )
                    2 => array(3) (
                        "title" => string(13) "Unser Partner"
                        "link" => string(0) ""
                        "id" => string(2) "11"
                    )
                    3 => array(3) (
                        "title" => string(15) "Stellenangebote"
                        "link" => string(0) ""
                        "id" => string(2) "12"
                    )
                    4 => array(3) (
                        "title" => string(18) "Silvester 2012 !!!"
                        "link" => string(0) ""
                        "id" => string(2) "13"
                    )
                    5 => array(3) (
                        "title" => string(23) "MT  Messe Warschau 2011"
                        "link" => string(0) ""
                        "id" => string(2) "14"
                    )
                )
                "img" => string(14) "menu_hotel.jpg"
            )
        }
        "oFooter" => object View(2) {
            protected _file => string(77) "/homepages/15/d241899427/htdocs/durigon/application/views/template/footer.php"
            protected _data => array(0) 
        }
    )
    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
    
  9. 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);
    
  10. APPPATH/bootstrap.php [ 174 ] » Kohana_View->__toString()

    169 	$total = array(
    170 		'1,065.18KB'   => number_format((memory_get_peak_usage() - KOHANA_START_MEMORY) / 1024, 2).'KB',
    171 		'0.03425 seconds' => number_format(microtime(TRUE) - KOHANA_START_TIME, 5).' seconds');
    172 
    173 	// Insert the totals into the response
    174 	$request->response = strtr((string) $request->response, $total);
    175 }
    176 
    177 
    178 
    179 /**
    
  11. DOCROOT/index.php [ 103 ] » require(arguments)

    0
    string(65) "/homepages/15/d241899427/htdocs/durigon/application/bootstrap.php"
     98 	// Load empty core extension
     99 	require SYSPATH.'classes/kohana'.EXT;
    100 }
    101 
    102 // Bootstrap the application
    103 require APPPATH.'bootstrap'.EXT;
    

Environment

Included files (64)

DOCROOT/index.php
SYSPATH/base.php
SYSPATH/classes/kohana/core.php
SYSPATH/classes/kohana.php
APPPATH/bootstrap.php
SYSPATH/classes/profiler.php
SYSPATH/classes/kohana/profiler.php
SYSPATH/classes/kohana/log.php
SYSPATH/classes/kohana/config.php
SYSPATH/classes/kohana/log/file.php
SYSPATH/classes/kohana/log/writer.php
SYSPATH/classes/kohana/config/file.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
MODPATH/userguide/config/userguide.php
SYSPATH/classes/request.php
SYSPATH/classes/kohana/request.php
SYSPATH/classes/kohana/request/exception.php
SYSPATH/classes/kohana/exception.php
SYSPATH/classes/i18n.php
SYSPATH/classes/kohana/i18n.php
APPPATH/classes/controller/errors.php
APPPATH/classes/controller/main.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/url.php
SYSPATH/classes/kohana/url.php
SYSPATH/classes/cookie.php
SYSPATH/classes/kohana/cookie.php
APPPATH/classes/model/menu.php
SYSPATH/classes/model.php
SYSPATH/classes/kohana/model.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/mysql.php
MODPATH/database/classes/kohana/database/mysql.php
APPPATH/classes/model/pages.php
MODPATH/database/classes/db.php
MODPATH/database/classes/kohana/db.php
MODPATH/database/classes/database/query.php
MODPATH/database/classes/kohana/database/query.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/views/template/index.php
APPPATH/views/template/header.php
SYSPATH/i18n/du.php
APPPATH/i18n/du.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 (49)

date
libxml
openssl
pcre
zlib
bcmath
bz2
calendar
ctype
curl
dba
dbase
dom
hash
filter
ftp
gd
gettext
session
iconv
idn
standard
json
mbstring
mcrypt
mhash
mysql
SimpleXML
SPL
PDO
pdo_sqlite
posix
Reflection
imap
shmop
pdo_mysql
soap
mysqli
SQLite
exif
tidy
tokenizer
wddx
xml
xmlreader
xmlwriter
xsl
zip
cgi-fcgi

$_SERVER

REDIRECT_REDIRECT_DBENTRY
string(127) "/kunden/homepages/15/d241899427/htdocs/durigon:d0000#CPU 6 #MEM 10240 #CGI 346 #NPROC 12 #TAID 48959744 #WERB 0 #LANG 0 #STAT 1"
REDIRECT_REDIRECT_DBENTRY_HOST
string(10) "durigon.at"
REDIRECT_REDIRECT_SCRIPT_URL
string(8) "/top.htm"
REDIRECT_REDIRECT_SCRIPT_URI
string(29) "http://www.durigon.at/top.htm"
REDIRECT_REDIRECT_STATUS
string(3) "200"
REDIRECT_DBENTRY
string(127) "/kunden/homepages/15/d241899427/htdocs/durigon:d0000#CPU 6 #MEM 10240 #CGI 346 #NPROC 12 #TAID 48959744 #WERB 0 #LANG 0 #STAT 1"
REDIRECT_DBENTRY_HOST
string(10) "durigon.at"
REDIRECT_SCRIPT_URL
string(8) "/top.htm"
REDIRECT_SCRIPT_URI
string(29) "http://www.durigon.at/top.htm"
REDIRECT_HANDLER
string(11) "x-mapp-php5"
REDIRECT_STATUS
string(3) "200"
DBENTRY
string(127) "/kunden/homepages/15/d241899427/htdocs/durigon:d0000#CPU 6 #MEM 10240 #CGI 346 #NPROC 12 #TAID 48959744 #WERB 0 #LANG 0 #STAT 1"
DBENTRY_HOST
string(10) "durigon.at"
SCRIPT_URL
string(8) "/top.htm"
SCRIPT_URI
string(29) "http://www.durigon.at/top.htm"
HTTP_X_CC_ID
string(8) "ccc02-02"
HTTP_HOST
string(14) "www.durigon.at"
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"
PATH
string(13) "/bin:/usr/bin"
SERVER_SIGNATURE
string(0) ""
SERVER_SOFTWARE
string(6) "Apache"
SERVER_NAME
string(10) "durigon.at"
SERVER_ADDR
string(14) "212.227.193.35"
SERVER_PORT
string(2) "80"
REMOTE_ADDR
string(14) "38.107.179.221"
DOCUMENT_ROOT
string(46) "/kunden/homepages/15/d241899427/htdocs/durigon"
SERVER_ADMIN
string(20) "webmaster@durigon.at"
SCRIPT_FILENAME
string(56) "/kunden/homepages/15/d241899427/htdocs/durigon/index.php"
REMOTE_PORT
string(5) "60569"
REDIRECT_URL
string(18) "/index.php/top.htm"
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(8) "/top.htm"
SCRIPT_NAME
string(10) "/index.php"
STATUS
string(3) "200"
ORIG_PATH_INFO
string(8) "/top.htm"
ORIG_PATH_TRANSLATED
string(56) "/kunden/homepages/15/d241899427/htdocs/durigon/index.php"
PHP_SELF
string(10) "/index.php"
REQUEST_TIME
integer 1328583513
argv
array(0) 
argc
integer 0
English German Polish Russian

Information

  • Victoria Travel
  • News
  • Unser Partner
  • Stellenangebote
  • Silvester 2012 !!!
  • MT Messe Warschau 2011





Gasthof Durigon © 2010 | powered by: ARTplus