JustPaste.it

User Notice

Possible problem: you are sending a HTTP header while already having some data in output buffer. Try OutputDebugger or start session earlier. search►

Source file

File: ...\vendor\nette\http\src\Http\Response.php:316

306:             header($header$key === 0); 307:         } 308:     } 309: 310: 311:     private function checkHeaders() 312:     { 313:         if (headers_sent($file$line)) { 314:             throw new Nette\InvalidStateException('Cannot send header after HTTP headers have been sent' . ($file " (output started at $file:$line)." '.')); 315:         } elseif (ob_get_length() && !array_filter(ob_get_status(TRUE), function($i) { return !$i['chunk_size']; })) { 316:             trigger_error('Possible problem: you are sending a HTTP header while already having some data in output buffer. Try OutputDebugger or start session earlier.', E_USER_NOTICE); 317:         } 318:     } 319: 320: }

Call stack

  1. ...\vendor\nette\http\src\Http\Response.php:316 source  trigger_error (arguments)

    306:             header($header$key === 0); 307:         } 308:     } 309: 310: 311:     private function checkHeaders() 312:     { 313:         if (headers_sent($file$line)) { 314:             throw new Nette\InvalidStateException('Cannot send header after HTTP headers have been sent' . ($file " (output started at $file:$line)." '.')); 315:         } elseif (ob_get_length() && !array_filter(ob_get_status(TRUE), function($i) { return !$i['chunk_size']; })) { 316:             trigger_error('Possible problem: you are sending a HTTP header while already having some data in output buffer. Try OutputDebugger or start session earlier.', E_USER_NOTICE); 317:         } 318:     } 319: 320: }
    $message
    "Possible problem: you are sending a HTTP header while already having some data in output buffer. Try OutputDebugger or start session earlier." (141)
    
    $error_type
    1024
    
  2. ...\vendor\nette\http\src\Http\Response.php:116 source  Nette\Http\Response-> checkHeaders ()

    106: 107:     /** 108:      * Adds HTTP header. 109:      * @param  string  header name 110:      * @param  string  header value 111:      * @return self 112:      * @throws Nette\InvalidStateException  if HTTP headers have been sent 113:      */ 114:     public function addHeader($name$value) 115:     { 116:         self::checkHeaders(); 117:         header($name ': ' $valueFALSE$this->code); 118:         return $this; 119:     } 120:
  3. ...\vendor\nette\application\src\Application\UI\Presenter.php:180 source  Nette\Http\Response-> addHeader (arguments)

    170:      */ 171:     public function run(Application\Request $request) 172:     { 173:         try { 174:             // STARTUP 175:             $this->request $request; 176:             $this->payload $this->payload ?: new \stdClass; 177:             $this->setParent($this->getParent(), $request->getPresenterName()); 178: 179:             if (!$this->httpResponse->isSent()) { 180:                 $this->httpResponse->addHeader('Vary', 'X-Requested-With'); 181:             } 182: 183:             $this->initGlobalParameters(); 184:             $this->checkRequirements($this->getReflection());
    $name
    "Vary" (4)
    
    $value
    "X-Requested-With" (16)
    
  4. ...\vendor\nette\application\src\Application\Application.php:149 source  Nette\Application\UI\Presenter-> run (arguments)

    139:     { 140:         if (count($this->requests) > self::$maxLoop) { 141:             throw new ApplicationException('Too many loops detected in application life cycle.'); 142:         } 143: 144:         $this->requests[] = $request; 145:         $this->onRequest($this$request); 146: 147:         $this->presenter $this->presenterFactory->createPresenter($request->getPresenterName()); 148:         $this->onPresenter($this$this->presenter); 149:         $response = $this->presenter->run($request); 150: 151:         if ($response instanceof Responses\ForwardResponse) { 152:             $this->processRequest($response->getRequest()); 153:
    $request
    Nette\Application\Request #543e
    
    method private => "GET" (3) flags private => array (1)
    | secured => FALSE
    name private => "Homepage" (8) params private => array (2)
    | action => "default" (7) | locale => "cs" (2)
    post private => array () files private => array ()
  5. ...\vendor\nette\application\src\Application\Application.php:88 source  Nette\Application\Application-> processRequest (arguments)

    78: 79: 80:     /** 81:      * Dispatch a HTTP request to a front controller. 82:      * @return void 83:      */ 84:     public function run() 85:     { 86:         try { 87:             $this->onStartup($this); 88:             $this->processRequest($this->createInitialRequest()); 89:             $this->onShutdown($this); 90: 91:         } catch (\Exception $e) { 92:             $this->onError($this$e);
    $request
    Nette\Application\Request #543e
    
    method private => "GET" (3) flags private => array (1)
    | secured => FALSE
    name private => "Homepage" (8) params private => array (2)
    | action => "default" (7) | locale => "cs" (2)
    post private => array () files private => array ()
  6. ...\www\index.php:8 source  Nette\Application\Application-> run ()

    1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:

Variables

$file
""
$line
0

Nette Application

Requests

array (1)
0 => Nette\Application\Request #543e
| method private => "GET" (3) | flags private => array (1)
| | secured => FALSE
| name private => "Homepage" (8) | params private => array (2)
| | action => "default" (7) | | locale => "cs" (2)
| post private => array () | files private => array ()

Presenter

Kdyby\Aop_CG\SystemContainer\App_Presenters_HomepagePresenterClass_101_App_Presenters_HomepagePresenter #0df8
_kdyby_aopContainer private => SystemContainer #437e
| meta protected => array (2)
| | types => array (121)
| | | "nette\object" => array (32) [ ... ] | | | "nette\bridges\framework\netteaccessor" => array (1) [ ... ] | | | "nette\caching\storages\ijournal" => array (1) [ ... ] | | | "nette\caching\storages\filejournal" => array (1) [ ... ] | | | "nette\caching\istorage" => array (1) [ ... ] | | | "nette\caching\storages\filestorage" => array (1) [ ... ] | | | "nette\http\requestfactory" => array (1) [ ... ] | | | "nette\http\irequest" => array (1) [ ... ] | | | "nette\http\request" => array (1) [ ... ] | | | "nette\http\iresponse" => array (1) [ ... ] | | | "nette\http\response" => array (1) [ ... ] | | | "nette\http\context" => array (1) [ ... ] | | | "nette\http\session" => array (1) [ ... ] | | | "nette\security\iuserstorage" => array (1) [ ... ] | | | "nette\http\userstorage" => array (1) [ ... ] | | | "nette\security\user" => array (1) [ ... ] | | | "nette\application\application" => array (1) [ ... ] | | | "nette\application\ipresenterfactory" => array (1) [ ... ] | | | "nette\application\presenterfactory" => array (1) [ ... ] | | | "nette\application\irouter" => array (1) [ ... ] | | | "nette\mail\imailer" => array (1) [ ... ] | | | "nette\mail\sendmailmailer" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\ilattefactory" => array (1) [ ... ] | | | "nette\application\ui\itemplatefactory" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\templatefactory" => array (1) [ ... ] | | | "nette\database\connection" => array (1) [ ... ] | | | "nette\database\context" => array (1) [ ... ] | | | "symfony\component\translation\translator" => array (1) [ ... ] | | | "symfony\component\translation\translatorinterface" => array (1) [ ... ] | | | "kdyby\translation\itranslator" => array (1) [ ... ] | | | "nette\localization\itranslator" => array (1) [ ... ] | | | "kdyby\translation\translator" => array (1) [ ... ] | | | "kdyby\translation\cataloguecompiler" => array (1) [ ... ] | | | "tracy\ibarpanel" => array (1) [ ... ] | | | "kdyby\translation\diagnostics\panel" => array (1) [ ... ] | | | "kdyby\translation\iuserlocaleresolver" => array (3) [ ... ] | | | "kdyby\translation\localeresolver\acceptheaderresolver" => array (1) [ ... ] | | | "kdyby\translation\localeresolver\sessionresolver" => array (1) [ ... ] | | | "kdyby\translation\templatehelpers" => array (1) [ ... ] | | | "kdyby\translation\fallbackresolver" => array (1) [ ... ] | | | "kdyby\translation\cataloguefactory" => array (1) [ ... ] | | | "symfony\component\translation\messageselector" => array (1) [ ... ] | | | "kdyby\translation\loadersinitializer" => array (1) [ ... ] | | | "symfony\component\translation\extractor\extractorinterface" => array (1) [ ... ] | | | "symfony\component\translation\extractor\chainextractor" => array (1) [ ... ] | | | "symfony\component\translation\writer\translationwriter" => array (1) [ ... ] | | | "kdyby\translation\translationloader" => array (1) [ ... ] | | | "symfony\component\console\command\command" => array (13) [ ... ] | | | "kdyby\translation\console\extractcommand" => array (1) [ ... ] | | | "doctrine\common\annotations\reader" => array (1) [ ... ] | | | "kdyby\events\eventmanager" => array (1) [ ... ] | | | "doctrine\common\eventmanager" => array (1) [ ... ] | | | "kdyby\events\lazyeventmanager" => array (1) [ ... ] | | | "doctrine\orm\entitymanager" => array (1) [ ... ] | | | "doctrine\common\persistence\objectmanager" => array (1) [ ... ] | | | "doctrine\orm\entitymanagerinterface" => array (1) [ ... ] | | | "kdyby\doctrine\entitymanager" => array (1) [ ... ] | | | "doctrine\dbal\connection" => array (1) [ ... ] | | | "doctrine\dbal\driver\connection" => array (1) [ ... ] | | | "kdyby\doctrine\connection" => array (1) [ ... ] | | | "kdyby\doctrine\entityrepository" => array (1) [ ... ] | | | "doctrine\orm\entityrepository" => array (1) [ ... ] | | | "kdyby\persistence\queryable" => array (1) [ ... ] | | | "kdyby\persistence\queryexecutor" => array (1) [ ... ] | | | "doctrine\common\persistence\objectrepository" => array (1) [ ... ] | | | "doctrine\common\collections\selectable" => array (1) [ ... ] | | | "kdyby\persistence\objectdao" => array (1) [ ... ] | | | "kdyby\doctrine\entitydao" => array (1) [ ... ] | | | "kdyby\doctrine\entitydaofactory" => array (1) [ ... ] | | | "doctrine\orm\tools\schemavalidator" => array (1) [ ... ] | | | "doctrine\orm\tools\schematool" => array (1) [ ... ] | | | "doctrine\dbal\schema\abstractschemamanager" => array (1) [ ... ] | | | "kdyby\doctrine\tools\cachecleaner" => array (1) [ ... ] | | | "doctrine\dbal\tools\console\command\importcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\metadatacommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\resultcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\querycommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\convertmappingcommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\convertmappingcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\generateentitiescommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\generateentitiescommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\createcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\abstractcommand" => array (3) [ ... ] | | | "kdyby\doctrine\console\schemacreatecommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\updatecommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\schemaupdatecommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\dropcommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\schemadropcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\generateproxiescommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\generateproxiescommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\validateschemacommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\validateschemacommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\infocommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\infocommand" => array (1) [ ... ] | | | "symfony\component\console\helper\helper" => array (2) [ ... ] | | | "symfony\component\console\helper\helperinterface" => array (2) [ ... ] | | | "doctrine\orm\tools\console\helper\entitymanagerhelper" => array (1) [ ... ] | | | "doctrine\dbal\tools\console\helper\connectionhelper" => array (1) [ ... ] | | | "app\model\exampleaspect" => array (1) [ ... ] | | | "app\model\interfaces\idatabasehandler" => array (1) [ ... ] | | | "app\model\databasehandler" => array (1) [ ... ] | | | "app\model\hellogenerator" => array (1) [ ... ] | | | "app\model\interfaces\iuserhandler" => array (1) [ ... ] | | | "nette\security\iauthenticator" => array (1) [ ... ] | | | "app\model\userhandler" => array (1) [ ... ] | | | "app\presenters\basepresenter" => array (1) [ ... ] | | | "nette\application\ui\presenter" => array (1) [ ... ] | | | "nette\application\ui\control" => array (1) [ ... ] | | | "nette\application\ui\presentercomponent" => array (1) [ ... ] | | | "nette\componentmodel\container" => array (1) [ ... ] | | | "nette\componentmodel\component" => array (1) [ ... ] | | | "nette\application\ui\irenderable" => array (1) [ ... ] | | | "nette\componentmodel\icontainer" => array (1) [ ... ] | | | "nette\componentmodel\icomponent" => array (1) [ ... ] | | | "nette\application\ui\isignalreceiver" => array (1) [ ... ] | | | "nette\application\ui\istatepersistent" => array (1) [ ... ] | | | arrayaccess => array (1) [ ... ] | | | "nette\application\ipresenter" => array (1) [ ... ] | | | "app\presenters\homepagepresenter" => array (1) [ ... ] | | | "app\routerfactory" => array (1) [ ... ] | | | "nette\di\container" => array (1) [ ... ]
| | tags => array (9)
| | | "kdyby.subscriber" => array (1) [ ... ] | | | "kdyby.console.command" => array (13) [ ... ] | | | "kdyby.doctrine.connection" => array (1) [ ... ] | | | "kdyby.doctrine.entityManager" => array (1) [ ... ] | | | "kdyby.console.helper" => array (2) [ ... ] | | | "translation.dumper" => array (10) [ ... ] | | | "translation.extractor" => array (1) [ ... ] | | | "translation.loader" => array (11) [ ... ] | | | "kdyby.aspect" => array (1) [ ... ]
| parameters => array (10)
| | appDir => "C:\wamp\www\klubduch\app" (24) | | wwwDir => "C:\wamp\www\klubduch\www" (24) | | debugMode => TRUE | | productionMode => FALSE | | environment => "development" (11) | | consoleMode => FALSE | | container => array (3)
| | | class => "SystemContainer" (15) | | | parent => "Nette\DI\Container" (18) | | | accessors => TRUE
| | tempDir => "C:\wamp\www\klubduch\app/../temp" (32) | | "doctrine.debug" => FALSE | | "doctrine.orm.defaultEntityManager" => "default" (7)
| registry private => array (56)
| | "nette.httpRequestFactory" => Nette\Http\RequestFactory #700c
| | | urlFilters => array (2) [ ... ] | | | binary private => FALSE | | | proxies private => array ()
| | httpRequest => Nette\Http\Request #38ec
| | | method private => "GET" (3) | | | url private => Nette\Http\UrlScript #d76c { ... } | | | query private => array () | | | post private => array () | | | files private => array () | | | cookies private => array (3) [ ... ] | | | headers private => array (7) [ ... ] | | | remoteAddress private => "::1" (3) | | | remoteHost private => NULL | | | rawBody private => NULL
| | httpResponse => Nette\Http\Response #53f9
| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | code private => 200
| | session => Nette\Http\Session #7ca4
| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #38ec { ... } | | | response private => Nette\Http\Response #53f9 { ... }
| | "events.manager" => Kdyby\Events\LazyEventManager #704d
| | | listenerIds private => array (1) [ ... ] | | | container private => SystemContainer #437e { RECURSION } | | | listeners private => array () | | | sorted private => array () | | | subscribers private => array () | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... } | | | exceptionHandler private => NULL | | | _listeners private => array ()
| | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #781a
| | | file private => "C:\wamp\www\klubduch\app/../temp/btfj.dat" (41) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()
| | cacheStorage => Nette\Caching\Storages\FileStorage #b64f
| | | dir private => "C:\wamp\www\klubduch\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #781a { ... } | | | locks private => NULL
| | "nette.presenterFactory" => Nette\Application\PresenterFactory #d30d
| | | caseSensitive => FALSE | | | mapping private => array (2) [ ... ] | | | baseDir private => "C:\wamp\www\klubduch\app" (24) | | | cache private => array (1) [ ... ] | | | container private => SystemContainer #437e { RECURSION }
| | 102_App_RouterFactory => App\RouterFactory #89ac | | router => Nette\Application\Routers\RouteList #5a91
| | | cachedRoutes private => NULL | | | module private => "" | | | list private => array (1) [ ... ]
| | "translation.userLocaleResolver.param" => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363
| | | request private => Nette\Application\Request #543e { ... } | | | translator private => Kdyby\Translation\Translator #c66a { ... }
| | "translation.userLocaleResolver.acceptHeader" => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0
| | | httpRequest private => Nette\Http\Request #38ec { ... }
| | "translation.panel" => Kdyby\Translation\Diagnostics\Panel #45ac
| | | translator private => Kdyby\Translation\Translator #c66a { ... } | | | untranslated private => array () | | | resources private => array (2) [ ... ] | | | ignoredResources private => array () | | | resourceWhitelist private => array (2) [ ... ] | | | localeResolvers private => array (3) [ ... ] | | | onRequestLocaleSnapshot private => array (1) [ ... ] | | | rootDir private => "C:\wamp\www\klubduch" (20)
| | application => Nette\Application\Application #b466
| | | catchExceptions => FALSE | | | errorPresenter => "Error" (5) | | | onStartup => Kdyby\Events\Event #0fb9 { ... } | | | onShutdown => Kdyby\Events\Event #7c7a { ... } | | | onRequest => Kdyby\Events\Event #3e40 { ... } | | | onPresenter => Kdyby\Events\Event #8872 { ... } | | | onResponse => Kdyby\Events\Event #9882 { ... } | | | onError => Kdyby\Events\Event #7423 { ... } | | | requests private => array (1) [ ... ] | | | presenter private => Kdyby\Aop_CG\SystemContainer\App_Presenters_HomepagePresenterClass_101_App_Presenters_HomepagePresenter #0df8 { RECURSION } | | | httpRequest private => Nette\Http\Request #38ec { ... } | | | httpResponse private => Nette\Http\Response #53f9 { ... } | | | presenterFactory private => Nette\Application\PresenterFactory #d30d { ... } | | | router private => Nette\Application\Routers\RouteList #5a91 { ... }
| | "translation.userLocaleResolver" => Kdyby\Translation\LocaleResolver\ChainResolver #99e9
| | | resolvers private => array (3) [ ... ]
| | "translation.selector" => Symfony\Component\Translation\MessageSelector #8fd1 | | "translation.fallbackResolver" => Kdyby\Translation\FallbackResolver #1bf6
| | | fallbackLocales private => array (1) [ ... ]
| | "translation.loader.php" => Symfony\Component\Translation\Loader\PhpFileLoader #1962 | | "translation.loader.yml" => Symfony\Component\Translation\Loader\YamlFileLoader #6316
| | | yamlParser private => NULL
| | "translation.loader.xlf" => Symfony\Component\Translation\Loader\XliffFileLoader #a3c4 | | "translation.loader.po" => Symfony\Component\Translation\Loader\PoFileLoader #a9c5 | | "translation.loader.mo" => Symfony\Component\Translation\Loader\MoFileLoader #622a | | "translation.loader.ts" => Symfony\Component\Translation\Loader\QtFileLoader #1f87 | | "translation.loader.csv" => Symfony\Component\Translation\Loader\CsvFileLoader #44e2
| | | delimiter private => ";" | | | enclosure private => """ | | | escape private => "\"
| | "translation.loader.res" => Symfony\Component\Translation\Loader\IcuResFileLoader #ecab | | "translation.loader.dat" => Symfony\Component\Translation\Loader\IcuDatFileLoader #df9c | | "translation.loader.ini" => Symfony\Component\Translation\Loader\IniFileLoader #7576 | | "translation.loader.neon" => Kdyby\Translation\Loader\NeonFileLoader #29fa | | "translation.loader" => Kdyby\Translation\TranslationLoader #3aea
| | | loaders private => array (11) [ ... ]
| | "translation.catalogueFactory" => Kdyby\Translation\CatalogueFactory #f1b9
| | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | loader private => Kdyby\Translation\TranslationLoader #3aea { ... } | | | resources private => array (2) [ ... ]
| | "translation.loadersInitializer" => Kdyby\Translation\LoadersInitializer #88a1
| | | container private => SystemContainer #437e { RECURSION } | | | loaderIds private => array (11) [ ... ] | | | initialized private => array ()
| | "translation.catalogueCompiler" => Kdyby\Translation\CatalogueCompiler #635a
| | | cache private => Nette\Caching\Cache #4651 { ... } | | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | loadersInitializer private => Kdyby\Translation\LoadersInitializer #88a1 { ... } | | | catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9 { ... }
| | "translation.default" => Kdyby\Translation\Translator #c66a
| | | localeResolver private => Kdyby\Translation\LocaleResolver\ChainResolver #99e9 { ... } | | | catalogueCompiler private => Kdyby\Translation\CatalogueCompiler #635a { ... } | | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9 { ... } | | | panel private => Kdyby\Translation\Diagnostics\Panel #45ac { ... } | | | availableResourceLocales private => array (2) [ ... ] | | | catalogues protected => array () | | | locale protected => "cs" (2) | | | fallbackLocales private => array (1) [ ... ] | | | loaders private => array () | | | resources private => array (2) [ ... ] | | | selector private => Symfony\Component\Translation\MessageSelector #8fd1
| | container => SystemContainer #437e { RECURSION } | | "nette.userStorage" => Nette\Http\UserStorage #2114
| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #7ca4 { ... } | | | sessionSection private => NULL
| | "doctrine.cache.default.dbalResult" => Kdyby\DoctrineCache\Cache #b8b2
| | | cache private => Nette\Caching\Cache #ec23 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.default.dbalConfiguration" => Doctrine\DBAL\Configuration #5378
| | | _attributes protected => array (2) [ ... ]
| | "doctrine.default.connection" => Kdyby\Doctrine\Connection #5d42
| | | entityManager private => Kdyby\Doctrine\EntityManager #6530 { ... } | | | _conn protected => NULL | | | _config protected => Doctrine\DBAL\Configuration #5378 { ... } | | | _eventManager protected => Kdyby\Events\LazyEventManager #704d { ... } | | | _expr protected => Doctrine\DBAL\Query\Expression\ExpressionBuilder #8c07 { ... } | | | _isConnected private => FALSE | | | _transactionNestingLevel private => 0 | | | _transactionIsolationLevel private => 2 | | | _nestTransactionsWithSavepoints private => NULL | | | _params private => array (16) [ ... ] | | | _platform protected => Doctrine\DBAL\Platforms\MySqlPlatform #bed1 { ... } | | | _schemaManager protected => NULL | | | _driver protected => Doctrine\DBAL\Driver\PDOMySql\Driver #64c9 | | | _isRollbackOnly private => FALSE | | | defaultFetchMode protected => 2
| | "doctrine.cache.default.metadata" => Kdyby\DoctrineCache\Cache #c4e5
| | | cache private => Nette\Caching\Cache #5fea { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => 1
| | "doctrine.cache.default.query" => Kdyby\DoctrineCache\Cache #fc85
| | | cache private => Nette\Caching\Cache #dc25 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.cache.default.ormResult" => Kdyby\DoctrineCache\Cache #ed1b
| | | cache private => Nette\Caching\Cache #8775 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.cache.default.hydration" => Kdyby\DoctrineCache\Cache #d65b
| | | cache private => Nette\Caching\Cache #2516 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "annotations.reflectionReader" => Doctrine\Common\Annotations\AnnotationReader #bb39
| | | parser private => Doctrine\Common\Annotations\DocParser #c8a4 { ... } | | | preParser private => Doctrine\Common\Annotations\DocParser #0794 { ... } | | | phpParser private => Doctrine\Common\Annotations\PhpParser #55d9 | | | imports private => array () | | | ignoredAnnotationNames private => array ()
| | "annotations.cache.annotations" => Kdyby\DoctrineCache\Cache #d119
| | | cache private => Nette\Caching\Cache #09dd { ... } | | | debug private => TRUE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "annotations.reader" => Doctrine\Common\Annotations\CachedReader #26fe
| | | delegate private => Doctrine\Common\Annotations\AnnotationReader #bb39 { ... } | | | cache private => Kdyby\DoctrineCache\Cache #d119 { ... } | | | debug private => TRUE | | | loadedAnnotations private => array ()
| | "doctrine.default.driver.App.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #2710
| | | fileExtensions protected => array () | | | loaders private => array () | | | cache private => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | entityAnnotationClasses protected => array (2) [ ... ] | | | reader protected => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | paths protected => array (1) [ ... ] | | | excludePaths protected => array () | | | fileExtension protected => ".php" (4) | | | classNames protected => NULL
| | "doctrine.default.driver.Kdyby_Doctrine.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #1ce5
| | | fileExtensions protected => array () | | | loaders private => array () | | | cache private => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | entityAnnotationClasses protected => array (2) [ ... ] | | | reader protected => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | paths protected => array (1) [ ... ] | | | excludePaths protected => array () | | | fileExtension protected => ".php" (4) | | | classNames protected => NULL
| | "doctrine.default.metadataDriver" => Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain #b4f3
| | | defaultDriver private => NULL | | | drivers private => array (2) [ ... ]
| | "doctrine.default.ormConfiguration" => Kdyby\Doctrine\Configuration #cec0
| | | _attributes protected => array (15) [ ... ]
| | "doctrine.default.entityManager" => Kdyby\Doctrine\EntityManager #6530
| | | onDaoCreate => Kdyby\Events\Event #9d29 { ... } | | | repositories private => array (1) [ ... ] | | | nonLockingUniqueInserter private => NULL | | | config private => Kdyby\Doctrine\Configuration #cec0 { ... } | | | conn private => Kdyby\Doctrine\Connection #5d42 { ... } | | | metadataFactory private => Kdyby\Doctrine\Mapping\ClassMetadataFactory #8bfc { ... } | | | unitOfWork private => Doctrine\ORM\UnitOfWork #15fb { ... } | | | eventManager private => Kdyby\Events\LazyEventManager #704d { ... } | | | proxyFactory private => Doctrine\ORM\Proxy\ProxyFactory #c225 { ... } | | | repositoryFactory private => Doctrine\ORM\Repository\DefaultRepositoryFactory #373f { ... } | | | expressionBuilder private => NULL | | | closed private => FALSE | | | filterCollection private => NULL
| | 98_App_Model_DatabaseHandler => App\Model\DatabaseHandler #46a6
| | | entityManager private => Kdyby\Doctrine\EntityManager #6530 { ... } | | | userDao private => Kdyby\Doctrine\EntityDao #095a { ... }
| | 100_App_Model_UserHandler => App\Model\UserHandler #d66c
| | | databaseHandler private => App\Model\DatabaseHandler #46a6 { ... }
| | user => Nette\Security\User #9d60
| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => Kdyby\Events\Event #362b { ... } | | | onLoggedOut => Kdyby\Events\Event #742c { ... } | | | storage private => Nette\Http\UserStorage #2114 { ... } | | | authenticator private => App\Model\UserHandler #d66c { ... } | | | authorizator private => NULL
| | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794
| | | container private => SystemContainer #437e { RECURSION }
| | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #b517
| | | latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794 { ... } | | | httpRequest private => Nette\Http\Request #38ec { ... } | | | httpResponse private => Nette\Http\Response #53f9 { ... } | | | user private => Nette\Security\User #9d60 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #b64f { ... }
| | 99_App_Model_HelloGenerator => Kdyby\Aop_CG\SystemContainer\App_Model_HelloGeneratorClass_99_App_Model_HelloGenerator #d3c1
| | | _kdyby_aopContainer private => SystemContainer #437e { RECURSION } | | | _kdyby_aopAdvices private => array (1) [ ... ]
| creating private => array ()
_kdyby_aopAdvices private => array () helloGenerator => Kdyby\Aop_CG\SystemContainer\App_Model_HelloGeneratorClass_99_App_Model_HelloGenerator #d3c1
| _kdyby_aopContainer private => SystemContainer #437e
| | meta protected => array (2)
| | | types => array (121) [ ... ] | | | tags => array (9) [ ... ]
| | parameters => array (10)
| | | appDir => "C:\wamp\www\klubduch\app" (24) | | | wwwDir => "C:\wamp\www\klubduch\www" (24) | | | debugMode => TRUE | | | productionMode => FALSE | | | environment => "development" (11) | | | consoleMode => FALSE | | | container => array (3) [ ... ] | | | tempDir => "C:\wamp\www\klubduch\app/../temp" (32) | | | "doctrine.debug" => FALSE | | | "doctrine.orm.defaultEntityManager" => "default" (7)
| | registry private => array (56)
| | | "nette.httpRequestFactory" => Nette\Http\RequestFactory #700c { ... } | | | httpRequest => Nette\Http\Request #38ec { ... } | | | httpResponse => Nette\Http\Response #53f9 { ... } | | | session => Nette\Http\Session #7ca4 { ... } | | | "events.manager" => Kdyby\Events\LazyEventManager #704d { ... } | | | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #781a { ... } | | | cacheStorage => Nette\Caching\Storages\FileStorage #b64f { ... } | | | "nette.presenterFactory" => Nette\Application\PresenterFactory #d30d { ... } | | | 102_App_RouterFactory => App\RouterFactory #89ac | | | router => Nette\Application\Routers\RouteList #5a91 { ... } | | | "translation.userLocaleResolver.param" => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363 { ... } | | | "translation.userLocaleResolver.acceptHeader" => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0 { ... } | | | "translation.panel" => Kdyby\Translation\Diagnostics\Panel #45ac { ... } | | | application => Nette\Application\Application #b466 { ... } | | | "translation.userLocaleResolver" => Kdyby\Translation\LocaleResolver\ChainResolver #99e9 { ... } | | | "translation.selector" => Symfony\Component\Translation\MessageSelector #8fd1 | | | "translation.fallbackResolver" => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | "translation.loader.php" => Symfony\Component\Translation\Loader\PhpFileLoader #1962 | | | "translation.loader.yml" => Symfony\Component\Translation\Loader\YamlFileLoader #6316 { ... } | | | "translation.loader.xlf" => Symfony\Component\Translation\Loader\XliffFileLoader #a3c4 | | | "translation.loader.po" => Symfony\Component\Translation\Loader\PoFileLoader #a9c5 | | | "translation.loader.mo" => Symfony\Component\Translation\Loader\MoFileLoader #622a | | | "translation.loader.ts" => Symfony\Component\Translation\Loader\QtFileLoader #1f87 | | | "translation.loader.csv" => Symfony\Component\Translation\Loader\CsvFileLoader #44e2 { ... } | | | "translation.loader.res" => Symfony\Component\Translation\Loader\IcuResFileLoader #ecab | | | "translation.loader.dat" => Symfony\Component\Translation\Loader\IcuDatFileLoader #df9c | | | "translation.loader.ini" => Symfony\Component\Translation\Loader\IniFileLoader #7576 | | | "translation.loader.neon" => Kdyby\Translation\Loader\NeonFileLoader #29fa | | | "translation.loader" => Kdyby\Translation\TranslationLoader #3aea { ... } | | | "translation.catalogueFactory" => Kdyby\Translation\CatalogueFactory #f1b9 { ... } | | | "translation.loadersInitializer" => Kdyby\Translation\LoadersInitializer #88a1 { ... } | | | "translation.catalogueCompiler" => Kdyby\Translation\CatalogueCompiler #635a { ... } | | | "translation.default" => Kdyby\Translation\Translator #c66a { ... } | | | container => SystemContainer #437e { RECURSION } | | | "nette.userStorage" => Nette\Http\UserStorage #2114 { ... } | | | "doctrine.cache.default.dbalResult" => Kdyby\DoctrineCache\Cache #b8b2 { ... } | | | "doctrine.default.dbalConfiguration" => Doctrine\DBAL\Configuration #5378 { ... } | | | "doctrine.default.connection" => Kdyby\Doctrine\Connection #5d42 { ... } | | | "doctrine.cache.default.metadata" => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | "doctrine.cache.default.query" => Kdyby\DoctrineCache\Cache #fc85 { ... } | | | "doctrine.cache.default.ormResult" => Kdyby\DoctrineCache\Cache #ed1b { ... } | | | "doctrine.cache.default.hydration" => Kdyby\DoctrineCache\Cache #d65b { ... } | | | "annotations.reflectionReader" => Doctrine\Common\Annotations\AnnotationReader #bb39 { ... } | | | "annotations.cache.annotations" => Kdyby\DoctrineCache\Cache #d119 { ... } | | | "annotations.reader" => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | "doctrine.default.driver.App.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #2710 { ... } | | | "doctrine.default.driver.Kdyby_Doctrine.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #1ce5 { ... } | | | "doctrine.default.metadataDriver" => Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain #b4f3 { ... } | | | "doctrine.default.ormConfiguration" => Kdyby\Doctrine\Configuration #cec0 { ... } | | | "doctrine.default.entityManager" => Kdyby\Doctrine\EntityManager #6530 { ... } | | | 98_App_Model_DatabaseHandler => App\Model\DatabaseHandler #46a6 { ... } | | | 100_App_Model_UserHandler => App\Model\UserHandler #d66c { ... } | | | user => Nette\Security\User #9d60 { ... } | | | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794 { ... } | | | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #b517 { ... } | | | 99_App_Model_HelloGenerator => Kdyby\Aop_CG\SystemContainer\App_Model_HelloGeneratorClass_99_App_Model_HelloGenerator #d3c1 { RECURSION }
| | creating private => array ()
| _kdyby_aopAdvices private => array (1)
| | 97 => App\Model\ExampleAspect #5549
locale => NULL translator protected => Kdyby\Translation\Translator #c66a
| localeResolver private => Kdyby\Translation\LocaleResolver\ChainResolver #99e9
| | resolvers private => array (3)
| | | 0 => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363 { ... } | | | 1 => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0 { ... } | | | 2 => Kdyby\Translation\LocaleResolver\DefaultLocale #5f85 { ... }
| catalogueCompiler private => Kdyby\Translation\CatalogueCompiler #635a
| | cache private => Nette\Caching\Cache #4651
| | | storage private => Nette\Caching\Storages\MemoryStorage #db91 { ... } | | | namespace private => "\x00" | | | key private => NULL | | | data private => NULL
| | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6
| | | fallbackLocales private => array (1) [ ... ]
| | loadersInitializer private => Kdyby\Translation\LoadersInitializer #88a1
| | | container private => SystemContainer #437e { ... } | | | loaderIds private => array (11) [ ... ] | | | initialized private => array ()
| | catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9
| | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | loader private => Kdyby\Translation\TranslationLoader #3aea { ... } | | | resources private => array (2) [ ... ]
| fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6
| | fallbackLocales private => array (1)
| | | 0 => "en_US" (5)
| catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9
| | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6
| | | fallbackLocales private => array (1) [ ... ]
| | loader private => Kdyby\Translation\TranslationLoader #3aea
| | | loaders private => array (11) [ ... ]
| | resources private => array (2)
| | | cs => array (1) [ ... ] | | | en => array (1) [ ... ]
| panel private => Kdyby\Translation\Diagnostics\Panel #45ac
| | translator private => Kdyby\Translation\Translator #c66a { RECURSION } | | untranslated private => array () | | resources private => array (2)
| | | cs => array (1) [ ... ] | | | en => array (1) [ ... ]
| | ignoredResources private => array () | | resourceWhitelist private => array (2)
| | | 0 => "cs" (2) | | | 1 => "en" (2)
| | localeResolvers private => array (3)
| | | LocaleParamResolver => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363 { ... } | | | AcceptHeaderResolver => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0 { ... } | | | DefaultLocale => Kdyby\Translation\LocaleResolver\DefaultLocale #f8a7 { ... }
| | onRequestLocaleSnapshot private => array (1)
| | | 0 => array (3) [ ... ]
| | rootDir private => "C:\wamp\www\klubduch" (20)
| availableResourceLocales private => array (2)
| | cs => TRUE | | en => TRUE
| catalogues protected => array () | locale protected => "cs" (2) | fallbackLocales private => array (1)
| | 0 => "en_US" (5)
| loaders private => array () | resources private => array (2)
| | cs => array (1)
| | | 0 => array (3) [ ... ]
| | en => array (1)
| | | 0 => array (3) [ ... ]
| selector private => Symfony\Component\Translation\MessageSelector #8fd1
invalidLinkMode => 2 onShutdown => Kdyby\Events\Event #5e07
| listeners private => array () | name private => "onShutdown" (10) | namespace private => "Nette\Application\UI\Presenter" (30) | eventManager private => Kdyby\Events\LazyEventManager #704d
| | listenerIds private => array (1)
| | | postConnect => array (1) [ ... ]
| | container private => SystemContainer #437e
| | | meta protected => array (2) [ ... ] | | | parameters => array (10) [ ... ] | | | registry private => array (56) [ ... ] | | | creating private => array ()
| | listeners private => array () | | sorted private => array () | | subscribers private => array () | | panel private => Kdyby\Events\Diagnostics\Panel #1cad
| | | evm private => Kdyby\Events\LazyEventManager #704d { RECURSION } | | | sl private => SystemContainer #437e { ... } | | | events private => array (11) [ ... ] | | | dispatchLog private => array (5) [ ... ] | | | dispatchTree private => array (5) [ ... ] | | | dispatchTreePointer private => NULL | | | listenerIds private => array (1) [ ... ] | | | inlineCallbacks private => array (5) [ ... ] | | | registeredClasses private => NULL | | | renderPanel => TRUE
| | exceptionHandler private => NULL | | _listeners private => array ()
| argsClass private => NULL | panel private => Kdyby\Events\Diagnostics\Panel #1cad
| | evm private => Kdyby\Events\LazyEventManager #704d
| | | listenerIds private => array (1) [ ... ] | | | container private => SystemContainer #437e { ... } | | | listeners private => array () | | | sorted private => array () | | | subscribers private => array () | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { RECURSION } | | | exceptionHandler private => NULL | | | _listeners private => array ()
| | sl private => SystemContainer #437e
| | | meta protected => array (2) [ ... ] | | | parameters => array (10) [ ... ] | | | registry private => array (56) [ ... ] | | | creating private => array ()
| | events private => array (11)
| | | 0 => Kdyby\Events\Event #1f7b { ... } | | | 1 => Kdyby\Events\Event #0fb9 { ... } | | | 2 => Kdyby\Events\Event #7c7a { ... } | | | 3 => Kdyby\Events\Event #3e40 { ... } | | | 4 => Kdyby\Events\Event #8872 { ... } | | | 5 => Kdyby\Events\Event #9882 { ... } | | | 6 => Kdyby\Events\Event #7423 { ... } | | | 7 => Kdyby\Events\Event #5e07 { RECURSION } | | | 8 => Kdyby\Events\Event #9d29 { ... } | | | 9 => Kdyby\Events\Event #362b { ... } | | | 10 => Kdyby\Events\Event #742c { ... }
| | dispatchLog private => array (5)
| | | "Nette\DI\Container::onInitialize" => array (1) [ ... ] | | | "Nette\Application\Application::onStartup" => array (1) [ ... ] | | | "Nette\Application\Application::onRequest" => array (1) [ ... ] | | | "Kdyby\Doctrine\EntityManager::onDaoCreate" => array (1) [ ... ] | | | "Nette\Application\Application::onPresenter" => array (1) [ ... ]
| | dispatchTree private => array (5)
| | | 0 => array (4) [ ... ] | | | 1 => array (4) [ ... ] | | | 2 => array (4) [ ... ] | | | 3 => array (4) [ ... ] | | | 4 => array (4) [ ... ]
| | dispatchTreePointer private => NULL | | listenerIds private => array (1)
| | | postConnect => array (1) [ ... ]
| | inlineCallbacks private => array (5)
| | | "Nette\DI\Container::onInitialize" => array () | | | "Nette\Application\Application::onStartup" => array (1) [ ... ] | | | "Nette\Application\Application::onRequest" => array (2) [ ... ] | | | "Kdyby\Doctrine\EntityManager::onDaoCreate" => array () | | | "Nette\Application\Application::onPresenter" => array ()
| | registeredClasses private => NULL | | renderPanel => TRUE
request private => Nette\Application\Request #543e
| method private => "GET" (3) | flags private => array (1)
| | secured => FALSE
| name private => "Homepage" (8) | params private => array (2)
| | action => "default" (7) | | locale => "cs" (2)
| post private => array () | files private => array ()
response private => NULL autoCanonicalize => TRUE absoluteUrls => FALSE globalParams private => NULL globalState private => NULL globalStateSinces private => NULL action private => NULL view private => NULL layout private => NULL payload private => stdClass #57d4 signalReceiver private => NULL signal private => NULL ajaxMode private => NULL startupCheck private => NULL lastCreatedRequest private => NULL lastCreatedRequestFlag private => NULL context private => SystemContainer #437e
| meta protected => array (2)
| | types => array (121)
| | | "nette\object" => array (32) [ ... ] | | | "nette\bridges\framework\netteaccessor" => array (1) [ ... ] | | | "nette\caching\storages\ijournal" => array (1) [ ... ] | | | "nette\caching\storages\filejournal" => array (1) [ ... ] | | | "nette\caching\istorage" => array (1) [ ... ] | | | "nette\caching\storages\filestorage" => array (1) [ ... ] | | | "nette\http\requestfactory" => array (1) [ ... ] | | | "nette\http\irequest" => array (1) [ ... ] | | | "nette\http\request" => array (1) [ ... ] | | | "nette\http\iresponse" => array (1) [ ... ] | | | "nette\http\response" => array (1) [ ... ] | | | "nette\http\context" => array (1) [ ... ] | | | "nette\http\session" => array (1) [ ... ] | | | "nette\security\iuserstorage" => array (1) [ ... ] | | | "nette\http\userstorage" => array (1) [ ... ] | | | "nette\security\user" => array (1) [ ... ] | | | "nette\application\application" => array (1) [ ... ] | | | "nette\application\ipresenterfactory" => array (1) [ ... ] | | | "nette\application\presenterfactory" => array (1) [ ... ] | | | "nette\application\irouter" => array (1) [ ... ] | | | "nette\mail\imailer" => array (1) [ ... ] | | | "nette\mail\sendmailmailer" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\ilattefactory" => array (1) [ ... ] | | | "nette\application\ui\itemplatefactory" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\templatefactory" => array (1) [ ... ] | | | "nette\database\connection" => array (1) [ ... ] | | | "nette\database\context" => array (1) [ ... ] | | | "symfony\component\translation\translator" => array (1) [ ... ] | | | "symfony\component\translation\translatorinterface" => array (1) [ ... ] | | | "kdyby\translation\itranslator" => array (1) [ ... ] | | | "nette\localization\itranslator" => array (1) [ ... ] | | | "kdyby\translation\translator" => array (1) [ ... ] | | | "kdyby\translation\cataloguecompiler" => array (1) [ ... ] | | | "tracy\ibarpanel" => array (1) [ ... ] | | | "kdyby\translation\diagnostics\panel" => array (1) [ ... ] | | | "kdyby\translation\iuserlocaleresolver" => array (3) [ ... ] | | | "kdyby\translation\localeresolver\acceptheaderresolver" => array (1) [ ... ] | | | "kdyby\translation\localeresolver\sessionresolver" => array (1) [ ... ] | | | "kdyby\translation\templatehelpers" => array (1) [ ... ] | | | "kdyby\translation\fallbackresolver" => array (1) [ ... ] | | | "kdyby\translation\cataloguefactory" => array (1) [ ... ] | | | "symfony\component\translation\messageselector" => array (1) [ ... ] | | | "kdyby\translation\loadersinitializer" => array (1) [ ... ] | | | "symfony\component\translation\extractor\extractorinterface" => array (1) [ ... ] | | | "symfony\component\translation\extractor\chainextractor" => array (1) [ ... ] | | | "symfony\component\translation\writer\translationwriter" => array (1) [ ... ] | | | "kdyby\translation\translationloader" => array (1) [ ... ] | | | "symfony\component\console\command\command" => array (13) [ ... ] | | | "kdyby\translation\console\extractcommand" => array (1) [ ... ] | | | "doctrine\common\annotations\reader" => array (1) [ ... ] | | | "kdyby\events\eventmanager" => array (1) [ ... ] | | | "doctrine\common\eventmanager" => array (1) [ ... ] | | | "kdyby\events\lazyeventmanager" => array (1) [ ... ] | | | "doctrine\orm\entitymanager" => array (1) [ ... ] | | | "doctrine\common\persistence\objectmanager" => array (1) [ ... ] | | | "doctrine\orm\entitymanagerinterface" => array (1) [ ... ] | | | "kdyby\doctrine\entitymanager" => array (1) [ ... ] | | | "doctrine\dbal\connection" => array (1) [ ... ] | | | "doctrine\dbal\driver\connection" => array (1) [ ... ] | | | "kdyby\doctrine\connection" => array (1) [ ... ] | | | "kdyby\doctrine\entityrepository" => array (1) [ ... ] | | | "doctrine\orm\entityrepository" => array (1) [ ... ] | | | "kdyby\persistence\queryable" => array (1) [ ... ] | | | "kdyby\persistence\queryexecutor" => array (1) [ ... ] | | | "doctrine\common\persistence\objectrepository" => array (1) [ ... ] | | | "doctrine\common\collections\selectable" => array (1) [ ... ] | | | "kdyby\persistence\objectdao" => array (1) [ ... ] | | | "kdyby\doctrine\entitydao" => array (1) [ ... ] | | | "kdyby\doctrine\entitydaofactory" => array (1) [ ... ] | | | "doctrine\orm\tools\schemavalidator" => array (1) [ ... ] | | | "doctrine\orm\tools\schematool" => array (1) [ ... ] | | | "doctrine\dbal\schema\abstractschemamanager" => array (1) [ ... ] | | | "kdyby\doctrine\tools\cachecleaner" => array (1) [ ... ] | | | "doctrine\dbal\tools\console\command\importcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\metadatacommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\resultcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\clearcache\querycommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\convertmappingcommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\convertmappingcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\generateentitiescommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\generateentitiescommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\createcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\abstractcommand" => array (3) [ ... ] | | | "kdyby\doctrine\console\schemacreatecommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\updatecommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\schemaupdatecommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\schematool\dropcommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\schemadropcommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\generateproxiescommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\generateproxiescommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\validateschemacommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\validateschemacommand" => array (1) [ ... ] | | | "doctrine\orm\tools\console\command\infocommand" => array (1) [ ... ] | | | "kdyby\doctrine\console\infocommand" => array (1) [ ... ] | | | "symfony\component\console\helper\helper" => array (2) [ ... ] | | | "symfony\component\console\helper\helperinterface" => array (2) [ ... ] | | | "doctrine\orm\tools\console\helper\entitymanagerhelper" => array (1) [ ... ] | | | "doctrine\dbal\tools\console\helper\connectionhelper" => array (1) [ ... ] | | | "app\model\exampleaspect" => array (1) [ ... ] | | | "app\model\interfaces\idatabasehandler" => array (1) [ ... ] | | | "app\model\databasehandler" => array (1) [ ... ] | | | "app\model\hellogenerator" => array (1) [ ... ] | | | "app\model\interfaces\iuserhandler" => array (1) [ ... ] | | | "nette\security\iauthenticator" => array (1) [ ... ] | | | "app\model\userhandler" => array (1) [ ... ] | | | "app\presenters\basepresenter" => array (1) [ ... ] | | | "nette\application\ui\presenter" => array (1) [ ... ] | | | "nette\application\ui\control" => array (1) [ ... ] | | | "nette\application\ui\presentercomponent" => array (1) [ ... ] | | | "nette\componentmodel\container" => array (1) [ ... ] | | | "nette\componentmodel\component" => array (1) [ ... ] | | | "nette\application\ui\irenderable" => array (1) [ ... ] | | | "nette\componentmodel\icontainer" => array (1) [ ... ] | | | "nette\componentmodel\icomponent" => array (1) [ ... ] | | | "nette\application\ui\isignalreceiver" => array (1) [ ... ] | | | "nette\application\ui\istatepersistent" => array (1) [ ... ] | | | arrayaccess => array (1) [ ... ] | | | "nette\application\ipresenter" => array (1) [ ... ] | | | "app\presenters\homepagepresenter" => array (1) [ ... ] | | | "app\routerfactory" => array (1) [ ... ] | | | "nette\di\container" => array (1) [ ... ]
| | tags => array (9)
| | | "kdyby.subscriber" => array (1) [ ... ] | | | "kdyby.console.command" => array (13) [ ... ] | | | "kdyby.doctrine.connection" => array (1) [ ... ] | | | "kdyby.doctrine.entityManager" => array (1) [ ... ] | | | "kdyby.console.helper" => array (2) [ ... ] | | | "translation.dumper" => array (10) [ ... ] | | | "translation.extractor" => array (1) [ ... ] | | | "translation.loader" => array (11) [ ... ] | | | "kdyby.aspect" => array (1) [ ... ]
| parameters => array (10)
| | appDir => "C:\wamp\www\klubduch\app" (24) | | wwwDir => "C:\wamp\www\klubduch\www" (24) | | debugMode => TRUE | | productionMode => FALSE | | environment => "development" (11) | | consoleMode => FALSE | | container => array (3)
| | | class => "SystemContainer" (15) | | | parent => "Nette\DI\Container" (18) | | | accessors => TRUE
| | tempDir => "C:\wamp\www\klubduch\app/../temp" (32) | | "doctrine.debug" => FALSE | | "doctrine.orm.defaultEntityManager" => "default" (7)
| registry private => array (56)
| | "nette.httpRequestFactory" => Nette\Http\RequestFactory #700c
| | | urlFilters => array (2) [ ... ] | | | binary private => FALSE | | | proxies private => array ()
| | httpRequest => Nette\Http\Request #38ec
| | | method private => "GET" (3) | | | url private => Nette\Http\UrlScript #d76c { ... } | | | query private => array () | | | post private => array () | | | files private => array () | | | cookies private => array (3) [ ... ] | | | headers private => array (7) [ ... ] | | | remoteAddress private => "::1" (3) | | | remoteHost private => NULL | | | rawBody private => NULL
| | httpResponse => Nette\Http\Response #53f9
| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | code private => 200
| | session => Nette\Http\Session #7ca4
| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #38ec { ... } | | | response private => Nette\Http\Response #53f9 { ... }
| | "events.manager" => Kdyby\Events\LazyEventManager #704d
| | | listenerIds private => array (1) [ ... ] | | | container private => SystemContainer #437e { RECURSION } | | | listeners private => array () | | | sorted private => array () | | | subscribers private => array () | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... } | | | exceptionHandler private => NULL | | | _listeners private => array ()
| | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #781a
| | | file private => "C:\wamp\www\klubduch\app/../temp/btfj.dat" (41) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()
| | cacheStorage => Nette\Caching\Storages\FileStorage #b64f
| | | dir private => "C:\wamp\www\klubduch\temp\cache" (31) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #781a { ... } | | | locks private => NULL
| | "nette.presenterFactory" => Nette\Application\PresenterFactory #d30d
| | | caseSensitive => FALSE | | | mapping private => array (2) [ ... ] | | | baseDir private => "C:\wamp\www\klubduch\app" (24) | | | cache private => array (1) [ ... ] | | | container private => SystemContainer #437e { RECURSION }
| | 102_App_RouterFactory => App\RouterFactory #89ac | | router => Nette\Application\Routers\RouteList #5a91
| | | cachedRoutes private => NULL | | | module private => "" | | | list private => array (1) [ ... ]
| | "translation.userLocaleResolver.param" => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363
| | | request private => Nette\Application\Request #543e { ... } | | | translator private => Kdyby\Translation\Translator #c66a { ... }
| | "translation.userLocaleResolver.acceptHeader" => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0
| | | httpRequest private => Nette\Http\Request #38ec { ... }
| | "translation.panel" => Kdyby\Translation\Diagnostics\Panel #45ac
| | | translator private => Kdyby\Translation\Translator #c66a { ... } | | | untranslated private => array () | | | resources private => array (2) [ ... ] | | | ignoredResources private => array () | | | resourceWhitelist private => array (2) [ ... ] | | | localeResolvers private => array (3) [ ... ] | | | onRequestLocaleSnapshot private => array (1) [ ... ] | | | rootDir private => "C:\wamp\www\klubduch" (20)
| | application => Nette\Application\Application #b466
| | | catchExceptions => FALSE | | | errorPresenter => "Error" (5) | | | onStartup => Kdyby\Events\Event #0fb9 { ... } | | | onShutdown => Kdyby\Events\Event #7c7a { ... } | | | onRequest => Kdyby\Events\Event #3e40 { ... } | | | onPresenter => Kdyby\Events\Event #8872 { ... } | | | onResponse => Kdyby\Events\Event #9882 { ... } | | | onError => Kdyby\Events\Event #7423 { ... } | | | requests private => array (1) [ ... ] | | | presenter private => Kdyby\Aop_CG\SystemContainer\App_Presenters_HomepagePresenterClass_101_App_Presenters_HomepagePresenter #0df8 { RECURSION } | | | httpRequest private => Nette\Http\Request #38ec { ... } | | | httpResponse private => Nette\Http\Response #53f9 { ... } | | | presenterFactory private => Nette\Application\PresenterFactory #d30d { ... } | | | router private => Nette\Application\Routers\RouteList #5a91 { ... }
| | "translation.userLocaleResolver" => Kdyby\Translation\LocaleResolver\ChainResolver #99e9
| | | resolvers private => array (3) [ ... ]
| | "translation.selector" => Symfony\Component\Translation\MessageSelector #8fd1 | | "translation.fallbackResolver" => Kdyby\Translation\FallbackResolver #1bf6
| | | fallbackLocales private => array (1) [ ... ]
| | "translation.loader.php" => Symfony\Component\Translation\Loader\PhpFileLoader #1962 | | "translation.loader.yml" => Symfony\Component\Translation\Loader\YamlFileLoader #6316
| | | yamlParser private => NULL
| | "translation.loader.xlf" => Symfony\Component\Translation\Loader\XliffFileLoader #a3c4 | | "translation.loader.po" => Symfony\Component\Translation\Loader\PoFileLoader #a9c5 | | "translation.loader.mo" => Symfony\Component\Translation\Loader\MoFileLoader #622a | | "translation.loader.ts" => Symfony\Component\Translation\Loader\QtFileLoader #1f87 | | "translation.loader.csv" => Symfony\Component\Translation\Loader\CsvFileLoader #44e2
| | | delimiter private => ";" | | | enclosure private => """ | | | escape private => "\"
| | "translation.loader.res" => Symfony\Component\Translation\Loader\IcuResFileLoader #ecab | | "translation.loader.dat" => Symfony\Component\Translation\Loader\IcuDatFileLoader #df9c | | "translation.loader.ini" => Symfony\Component\Translation\Loader\IniFileLoader #7576 | | "translation.loader.neon" => Kdyby\Translation\Loader\NeonFileLoader #29fa | | "translation.loader" => Kdyby\Translation\TranslationLoader #3aea
| | | loaders private => array (11) [ ... ]
| | "translation.catalogueFactory" => Kdyby\Translation\CatalogueFactory #f1b9
| | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | loader private => Kdyby\Translation\TranslationLoader #3aea { ... } | | | resources private => array (2) [ ... ]
| | "translation.loadersInitializer" => Kdyby\Translation\LoadersInitializer #88a1
| | | container private => SystemContainer #437e { RECURSION } | | | loaderIds private => array (11) [ ... ] | | | initialized private => array ()
| | "translation.catalogueCompiler" => Kdyby\Translation\CatalogueCompiler #635a
| | | cache private => Nette\Caching\Cache #4651 { ... } | | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | loadersInitializer private => Kdyby\Translation\LoadersInitializer #88a1 { ... } | | | catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9 { ... }
| | "translation.default" => Kdyby\Translation\Translator #c66a
| | | localeResolver private => Kdyby\Translation\LocaleResolver\ChainResolver #99e9 { ... } | | | catalogueCompiler private => Kdyby\Translation\CatalogueCompiler #635a { ... } | | | fallbackResolver private => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | catalogueFactory private => Kdyby\Translation\CatalogueFactory #f1b9 { ... } | | | panel private => Kdyby\Translation\Diagnostics\Panel #45ac { ... } | | | availableResourceLocales private => array (2) [ ... ] | | | catalogues protected => array () | | | locale protected => "cs" (2) | | | fallbackLocales private => array (1) [ ... ] | | | loaders private => array () | | | resources private => array (2) [ ... ] | | | selector private => Symfony\Component\Translation\MessageSelector #8fd1
| | container => SystemContainer #437e { RECURSION } | | "nette.userStorage" => Nette\Http\UserStorage #2114
| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #7ca4 { ... } | | | sessionSection private => NULL
| | "doctrine.cache.default.dbalResult" => Kdyby\DoctrineCache\Cache #b8b2
| | | cache private => Nette\Caching\Cache #ec23 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.default.dbalConfiguration" => Doctrine\DBAL\Configuration #5378
| | | _attributes protected => array (2) [ ... ]
| | "doctrine.default.connection" => Kdyby\Doctrine\Connection #5d42
| | | entityManager private => Kdyby\Doctrine\EntityManager #6530 { ... } | | | _conn protected => NULL | | | _config protected => Doctrine\DBAL\Configuration #5378 { ... } | | | _eventManager protected => Kdyby\Events\LazyEventManager #704d { ... } | | | _expr protected => Doctrine\DBAL\Query\Expression\ExpressionBuilder #8c07 { ... } | | | _isConnected private => FALSE | | | _transactionNestingLevel private => 0 | | | _transactionIsolationLevel private => 2 | | | _nestTransactionsWithSavepoints private => NULL | | | _params private => array (16) [ ... ] | | | _platform protected => Doctrine\DBAL\Platforms\MySqlPlatform #bed1 { ... } | | | _schemaManager protected => NULL | | | _driver protected => Doctrine\DBAL\Driver\PDOMySql\Driver #64c9 | | | _isRollbackOnly private => FALSE | | | defaultFetchMode protected => 2
| | "doctrine.cache.default.metadata" => Kdyby\DoctrineCache\Cache #c4e5
| | | cache private => Nette\Caching\Cache #5fea { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => 1
| | "doctrine.cache.default.query" => Kdyby\DoctrineCache\Cache #fc85
| | | cache private => Nette\Caching\Cache #dc25 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.cache.default.ormResult" => Kdyby\DoctrineCache\Cache #ed1b
| | | cache private => Nette\Caching\Cache #8775 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "doctrine.cache.default.hydration" => Kdyby\DoctrineCache\Cache #d65b
| | | cache private => Nette\Caching\Cache #2516 { ... } | | | debug private => FALSE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "annotations.reflectionReader" => Doctrine\Common\Annotations\AnnotationReader #bb39
| | | parser private => Doctrine\Common\Annotations\DocParser #c8a4 { ... } | | | preParser private => Doctrine\Common\Annotations\DocParser #0794 { ... } | | | phpParser private => Doctrine\Common\Annotations\PhpParser #55d9 | | | imports private => array () | | | ignoredAnnotationNames private => array ()
| | "annotations.cache.annotations" => Kdyby\DoctrineCache\Cache #d119
| | | cache private => Nette\Caching\Cache #09dd { ... } | | | debug private => TRUE | | | namespace private => "" | | | namespaceVersion private => NULL
| | "annotations.reader" => Doctrine\Common\Annotations\CachedReader #26fe
| | | delegate private => Doctrine\Common\Annotations\AnnotationReader #bb39 { ... } | | | cache private => Kdyby\DoctrineCache\Cache #d119 { ... } | | | debug private => TRUE | | | loadedAnnotations private => array ()
| | "doctrine.default.driver.App.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #2710
| | | fileExtensions protected => array () | | | loaders private => array () | | | cache private => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | entityAnnotationClasses protected => array (2) [ ... ] | | | reader protected => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | paths protected => array (1) [ ... ] | | | excludePaths protected => array () | | | fileExtension protected => ".php" (4) | | | classNames protected => NULL
| | "doctrine.default.driver.Kdyby_Doctrine.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #1ce5
| | | fileExtensions protected => array () | | | loaders private => array () | | | cache private => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | entityAnnotationClasses protected => array (2) [ ... ] | | | reader protected => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | paths protected => array (1) [ ... ] | | | excludePaths protected => array () | | | fileExtension protected => ".php" (4) | | | classNames protected => NULL
| | "doctrine.default.metadataDriver" => Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain #b4f3
| | | defaultDriver private => NULL | | | drivers private => array (2) [ ... ]
| | "doctrine.default.ormConfiguration" => Kdyby\Doctrine\Configuration #cec0
| | | _attributes protected => array (15) [ ... ]
| | "doctrine.default.entityManager" => Kdyby\Doctrine\EntityManager #6530
| | | onDaoCreate => Kdyby\Events\Event #9d29 { ... } | | | repositories private => array (1) [ ... ] | | | nonLockingUniqueInserter private => NULL | | | config private => Kdyby\Doctrine\Configuration #cec0 { ... } | | | conn private => Kdyby\Doctrine\Connection #5d42 { ... } | | | metadataFactory private => Kdyby\Doctrine\Mapping\ClassMetadataFactory #8bfc { ... } | | | unitOfWork private => Doctrine\ORM\UnitOfWork #15fb { ... } | | | eventManager private => Kdyby\Events\LazyEventManager #704d { ... } | | | proxyFactory private => Doctrine\ORM\Proxy\ProxyFactory #c225 { ... } | | | repositoryFactory private => Doctrine\ORM\Repository\DefaultRepositoryFactory #373f { ... } | | | expressionBuilder private => NULL | | | closed private => FALSE | | | filterCollection private => NULL
| | 98_App_Model_DatabaseHandler => App\Model\DatabaseHandler #46a6
| | | entityManager private => Kdyby\Doctrine\EntityManager #6530 { ... } | | | userDao private => Kdyby\Doctrine\EntityDao #095a { ... }
| | 100_App_Model_UserHandler => App\Model\UserHandler #d66c
| | | databaseHandler private => App\Model\DatabaseHandler #46a6 { ... }
| | user => Nette\Security\User #9d60
| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => Kdyby\Events\Event #362b { ... } | | | onLoggedOut => Kdyby\Events\Event #742c { ... } | | | storage private => Nette\Http\UserStorage #2114 { ... } | | | authenticator private => App\Model\UserHandler #d66c { ... } | | | authorizator private => NULL
| | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794
| | | container private => SystemContainer #437e { RECURSION }
| | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #b517
| | | latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794 { ... } | | | httpRequest private => Nette\Http\Request #38ec { ... } | | | httpResponse private => Nette\Http\Response #53f9 { ... } | | | user private => Nette\Security\User #9d60 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #b64f { ... }
| | 99_App_Model_HelloGenerator => Kdyby\Aop_CG\SystemContainer\App_Model_HelloGeneratorClass_99_App_Model_HelloGenerator #d3c1
| | | _kdyby_aopContainer private => SystemContainer #437e { RECURSION } | | | _kdyby_aopAdvices private => array (1) [ ... ]
| creating private => array ()
httpRequest private => Nette\Http\Request #38ec
| method private => "GET" (3) | url private => Nette\Http\UrlScript #d76c
| | scriptPath private => "/klubduch/www/" (14) | | scheme private => "http" (4) | | user private => "" | | pass private => "" | | host private => "localhost" (9) | | port private => 80 | | path private => "/klubduch/www/" (14) | | query private => "" | | fragment private => ""
| query private => array () | post private => array () | files private => array () | cookies private => array (3)
| | PHPSESSID => "noqtjhje0t0815du6ush71m006" (26) | | "nette-browser" => "2h20up9uym" (10) | | "tracy-debug-panel-kdyby-translation" => ""
| headers private => array (7)
| | host => "localhost" (9) | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0" (72) | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | "accept-encoding" => "gzip, deflate" (13) | | cookie => "PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=" (100) | | connection => "keep-alive" (10)
| remoteAddress private => "::1" (3) | remoteHost private => NULL | rawBody private => NULL
httpResponse private => Nette\Http\Response #53f9
| cookieDomain => "" | cookiePath => "/" | cookieSecure => FALSE | cookieHttpOnly => TRUE | code private => 200
session private => Nette\Http\Session #7ca4
| regenerated private => NULL | options private => array (14)
| | gc_maxlifetime => 1209600 | | cookie_lifetime => 1209600 | | referer_check => "" | | use_cookies => 1 | | use_only_cookies => 1 | | use_trans_sid => 0 | | cookie_path => "/" | | cookie_domain => "" | | cookie_secure => FALSE | | cookie_httponly => TRUE | | cache_limiter => NULL | | cache_expire => NULL | | hash_function => NULL | | hash_bits_per_character => NULL
| request private => Nette\Http\Request #38ec
| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #d76c
| | | scriptPath private => "/klubduch/www/" (14) | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "localhost" (9) | | | port private => 80 | | | path private => "/klubduch/www/" (14) | | | query private => "" | | | fragment private => ""
| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (3)
| | | PHPSESSID => "noqtjhje0t0815du6ush71m006" (26) | | | "nette-browser" => "2h20up9uym" (10) | | | "tracy-debug-panel-kdyby-translation" => ""
| | headers private => array (7)
| | | host => "localhost" (9) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0" (72) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | | "accept-encoding" => "gzip, deflate" (13) | | | cookie => "PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=" (100) | | | connection => "keep-alive" (10)
| | remoteAddress private => "::1" (3) | | remoteHost private => NULL | | rawBody private => NULL
| response private => Nette\Http\Response #53f9
| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | code private => 200
presenterFactory private => Nette\Application\PresenterFactory #d30d
| caseSensitive => FALSE | mapping private => array (2)
| | "*" => array (3)
| | | 0 => "App\" (4) | | | 1 => "*Module\" (8) | | | 2 => "Presenters\*Presenter" (21)
| | Nette => array (3)
| | | 0 => "NetteModule\" (12) | | | 1 => "*\" (2) | | | 2 => "*Presenter" (10)
| baseDir private => "C:\wamp\www\klubduch\app" (24) | cache private => array (1)
| | Homepage => array (2)
| | | 0 => "App\Presenters\HomepagePresenter" (32) | | | 1 => "Homepage" (8)
| container private => SystemContainer #437e
| | meta protected => array (2)
| | | types => array (121) [ ... ] | | | tags => array (9) [ ... ]
| | parameters => array (10)
| | | appDir => "C:\wamp\www\klubduch\app" (24) | | | wwwDir => "C:\wamp\www\klubduch\www" (24) | | | debugMode => TRUE | | | productionMode => FALSE | | | environment => "development" (11) | | | consoleMode => FALSE | | | container => array (3) [ ... ] | | | tempDir => "C:\wamp\www\klubduch\app/../temp" (32) | | | "doctrine.debug" => FALSE | | | "doctrine.orm.defaultEntityManager" => "default" (7)
| | registry private => array (56)
| | | "nette.httpRequestFactory" => Nette\Http\RequestFactory #700c { ... } | | | httpRequest => Nette\Http\Request #38ec { ... } | | | httpResponse => Nette\Http\Response #53f9 { ... } | | | session => Nette\Http\Session #7ca4 { ... } | | | "events.manager" => Kdyby\Events\LazyEventManager #704d { ... } | | | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #781a { ... } | | | cacheStorage => Nette\Caching\Storages\FileStorage #b64f { ... } | | | "nette.presenterFactory" => Nette\Application\PresenterFactory #d30d { RECURSION } | | | 102_App_RouterFactory => App\RouterFactory #89ac | | | router => Nette\Application\Routers\RouteList #5a91 { ... } | | | "translation.userLocaleResolver.param" => Kdyby\Translation\LocaleResolver\LocaleParamResolver #8363 { ... } | | | "translation.userLocaleResolver.acceptHeader" => Kdyby\Translation\LocaleResolver\AcceptHeaderResolver #90f0 { ... } | | | "translation.panel" => Kdyby\Translation\Diagnostics\Panel #45ac { ... } | | | application => Nette\Application\Application #b466 { ... } | | | "translation.userLocaleResolver" => Kdyby\Translation\LocaleResolver\ChainResolver #99e9 { ... } | | | "translation.selector" => Symfony\Component\Translation\MessageSelector #8fd1 | | | "translation.fallbackResolver" => Kdyby\Translation\FallbackResolver #1bf6 { ... } | | | "translation.loader.php" => Symfony\Component\Translation\Loader\PhpFileLoader #1962 | | | "translation.loader.yml" => Symfony\Component\Translation\Loader\YamlFileLoader #6316 { ... } | | | "translation.loader.xlf" => Symfony\Component\Translation\Loader\XliffFileLoader #a3c4 | | | "translation.loader.po" => Symfony\Component\Translation\Loader\PoFileLoader #a9c5 | | | "translation.loader.mo" => Symfony\Component\Translation\Loader\MoFileLoader #622a | | | "translation.loader.ts" => Symfony\Component\Translation\Loader\QtFileLoader #1f87 | | | "translation.loader.csv" => Symfony\Component\Translation\Loader\CsvFileLoader #44e2 { ... } | | | "translation.loader.res" => Symfony\Component\Translation\Loader\IcuResFileLoader #ecab | | | "translation.loader.dat" => Symfony\Component\Translation\Loader\IcuDatFileLoader #df9c | | | "translation.loader.ini" => Symfony\Component\Translation\Loader\IniFileLoader #7576 | | | "translation.loader.neon" => Kdyby\Translation\Loader\NeonFileLoader #29fa | | | "translation.loader" => Kdyby\Translation\TranslationLoader #3aea { ... } | | | "translation.catalogueFactory" => Kdyby\Translation\CatalogueFactory #f1b9 { ... } | | | "translation.loadersInitializer" => Kdyby\Translation\LoadersInitializer #88a1 { ... } | | | "translation.catalogueCompiler" => Kdyby\Translation\CatalogueCompiler #635a { ... } | | | "translation.default" => Kdyby\Translation\Translator #c66a { ... } | | | container => SystemContainer #437e { RECURSION } | | | "nette.userStorage" => Nette\Http\UserStorage #2114 { ... } | | | "doctrine.cache.default.dbalResult" => Kdyby\DoctrineCache\Cache #b8b2 { ... } | | | "doctrine.default.dbalConfiguration" => Doctrine\DBAL\Configuration #5378 { ... } | | | "doctrine.default.connection" => Kdyby\Doctrine\Connection #5d42 { ... } | | | "doctrine.cache.default.metadata" => Kdyby\DoctrineCache\Cache #c4e5 { ... } | | | "doctrine.cache.default.query" => Kdyby\DoctrineCache\Cache #fc85 { ... } | | | "doctrine.cache.default.ormResult" => Kdyby\DoctrineCache\Cache #ed1b { ... } | | | "doctrine.cache.default.hydration" => Kdyby\DoctrineCache\Cache #d65b { ... } | | | "annotations.reflectionReader" => Doctrine\Common\Annotations\AnnotationReader #bb39 { ... } | | | "annotations.cache.annotations" => Kdyby\DoctrineCache\Cache #d119 { ... } | | | "annotations.reader" => Doctrine\Common\Annotations\CachedReader #26fe { ... } | | | "doctrine.default.driver.App.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #2710 { ... } | | | "doctrine.default.driver.Kdyby_Doctrine.annotationsImpl" => Kdyby\Doctrine\Mapping\AnnotationDriver #1ce5 { ... } | | | "doctrine.default.metadataDriver" => Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain #b4f3 { ... } | | | "doctrine.default.ormConfiguration" => Kdyby\Doctrine\Configuration #cec0 { ... } | | | "doctrine.default.entityManager" => Kdyby\Doctrine\EntityManager #6530 { ... } | | | 98_App_Model_DatabaseHandler => App\Model\DatabaseHandler #46a6 { ... } | | | 100_App_Model_UserHandler => App\Model\UserHandler #d66c { ... } | | | user => Nette\Security\User #9d60 { ... } | | | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794 { ... } | | | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #b517 { ... } | | | 99_App_Model_HelloGenerator => Kdyby\Aop_CG\SystemContainer\App_Model_HelloGeneratorClass_99_App_Model_HelloGenerator #d3c1 { ... }
| | creating private => array ()
router private => Nette\Application\Routers\RouteList #5a91
| cachedRoutes private => NULL | module private => "" | list private => array (1)
| | 0 => Nette\Application\Routers\Route #d189
| | | mask private => "[<locale=cs cs|en>/]<presenter>/<action>" (40) | | | sequence private => array (11) [ ... ] | | | re private => "#(?:(?P<p6>(?U)cs|en)/)?(?:(?P<p17>(?U)[a-z][a-z0-9.-]*)/(?:(?P<p22>(?U)[a-z][a-z0-9-]*))?)?/?\z#Aiu" (100) | | | aliases private => array (3) [ ... ] | | | metadata private => array (3) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0
user private => Nette\Security\User #9d60
| guestRole => "guest" (5) | authenticatedRole => "authenticated" (13) | onLoggedIn => Kdyby\Events\Event #362b
| | listeners private => array () | | name private => "onLoggedIn" (10) | | namespace private => "Nette\Security\User" (19) | | eventManager private => Kdyby\Events\LazyEventManager #704d
| | | listenerIds private => array (1) [ ... ] | | | container private => SystemContainer #437e { ... } | | | listeners private => array () | | | sorted private => array () | | | subscribers private => array () | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... } | | | exceptionHandler private => NULL | | | _listeners private => array ()
| | argsClass private => NULL | | panel private => Kdyby\Events\Diagnostics\Panel #1cad
| | | evm private => Kdyby\Events\LazyEventManager #704d { ... } | | | sl private => SystemContainer #437e { ... } | | | events private => array (11) [ ... ] | | | dispatchLog private => array (5) [ ... ] | | | dispatchTree private => array (5) [ ... ] | | | dispatchTreePointer private => NULL | | | listenerIds private => array (1) [ ... ] | | | inlineCallbacks private => array (5) [ ... ] | | | registeredClasses private => NULL | | | renderPanel => TRUE
| onLoggedOut => Kdyby\Events\Event #742c
| | listeners private => array () | | name private => "onLoggedOut" (11) | | namespace private => "Nette\Security\User" (19) | | eventManager private => Kdyby\Events\LazyEventManager #704d
| | | listenerIds private => array (1) [ ... ] | | | container private => SystemContainer #437e { ... } | | | listeners private => array () | | | sorted private => array () | | | subscribers private => array () | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... } | | | exceptionHandler private => NULL | | | _listeners private => array ()
| | argsClass private => NULL | | panel private => Kdyby\Events\Diagnostics\Panel #1cad
| | | evm private => Kdyby\Events\LazyEventManager #704d { ... } | | | sl private => SystemContainer #437e { ... } | | | events private => array (11) [ ... ] | | | dispatchLog private => array (5) [ ... ] | | | dispatchTree private => array (5) [ ... ] | | | dispatchTreePointer private => NULL | | | listenerIds private => array (1) [ ... ] | | | inlineCallbacks private => array (5) [ ... ] | | | registeredClasses private => NULL | | | renderPanel => TRUE
| storage private => Nette\Http\UserStorage #2114
| | namespace private => "" | | sessionHandler private => Nette\Http\Session #7ca4
| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #38ec { ... } | | | response private => Nette\Http\Response #53f9 { ... }
| | sessionSection private => NULL
| authenticator private => App\Model\UserHandler #d66c
| | databaseHandler private => App\Model\DatabaseHandler #46a6
| | | entityManager private => Kdyby\Doctrine\EntityManager #6530 { ... } | | | userDao private => Kdyby\Doctrine\EntityDao #095a { ... }
| authorizator private => NULL
templateFactory private => Nette\Bridges\ApplicationLatte\TemplateFactory #b517
| latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #3794
| | container private => SystemContainer #437e
| | | meta protected => array (2) [ ... ] | | | parameters => array (10) [ ... ] | | | registry private => array (56) [ ... ] | | | creating private => array ()
| httpRequest private => Nette\Http\Request #38ec
| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #d76c
| | | scriptPath private => "/klubduch/www/" (14) | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "localhost" (9) | | | port private => 80 | | | path private => "/klubduch/www/" (14) | | | query private => "" | | | fragment private => ""
| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (3)
| | | PHPSESSID => "noqtjhje0t0815du6ush71m006" (26) | | | "nette-browser" => "2h20up9uym" (10) | | | "tracy-debug-panel-kdyby-translation" => ""
| | headers private => array (7)
| | | host => "localhost" (9) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0" (72) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63) | | | "accept-language" => "cs,en-us;q=0.7,en;q=0.3" (23) | | | "accept-encoding" => "gzip, deflate" (13) | | | cookie => "PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=" (100) | | | connection => "keep-alive" (10)
| | remoteAddress private => "::1" (3) | | remoteHost private => NULL | | rawBody private => NULL
| httpResponse private => Nette\Http\Response #53f9
| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | code private => 200
| user private => Nette\Security\User #9d60
| | guestRole => "guest" (5) | | authenticatedRole => "authenticated" (13) | | onLoggedIn => Kdyby\Events\Event #362b
| | | listeners private => array () | | | name private => "onLoggedIn" (10) | | | namespace private => "Nette\Security\User" (19) | | | eventManager private => Kdyby\Events\LazyEventManager #704d { ... } | | | argsClass private => NULL | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... }
| | onLoggedOut => Kdyby\Events\Event #742c
| | | listeners private => array () | | | name private => "onLoggedOut" (11) | | | namespace private => "Nette\Security\User" (19) | | | eventManager private => Kdyby\Events\LazyEventManager #704d { ... } | | | argsClass private => NULL | | | panel private => Kdyby\Events\Diagnostics\Panel #1cad { ... }
| | storage private => Nette\Http\UserStorage #2114
| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #7ca4 { ... } | | | sessionSection private => NULL
| | authenticator private => App\Model\UserHandler #d66c
| | | databaseHandler private => App\Model\DatabaseHandler #46a6 { ... }
| | authorizator private => NULL
| cacheStorage private => Nette\Caching\Storages\FileStorage #b64f
| | dir private => "C:\wamp\www\klubduch\temp\cache" (31) | | useDirs private => TRUE | | journal private => Nette\Caching\Storages\FileJournal #781a
| | | file private => "C:\wamp\www\klubduch\app/../temp/btfj.dat" (41) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()
| | locks private => NULL
template private => NULL invalidSnippets private => array () snippetMode => NULL params protected => array () components private => array () cloning private => NULL parent private => NULL name private => "Homepage" (8) monitors private => array () templateFactory private => NULL

Environment

$_SERVER

HTTP_HOST
"localhost" (9)
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0" (72)
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63)
HTTP_ACCEPT_LANGUAGE
"cs,en-us;q=0.7,en;q=0.3" (23)
HTTP_ACCEPT_ENCODING
"gzip, deflate" (13)
HTTP_COOKIE
"PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=" (100)
HTTP_CONNECTION
"keep-alive" (10)
PATH
"C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\binaries\php\php_runningversion;C:\Program Files (x86)\EasyPHP-DevServer-14.1VC11\binaries\php\php_ru ... " (1467)
SystemRoot
"C:\WINDOWS" (10)
COMSPEC
"C:\WINDOWS\system32\cmd.exe" (27)
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC" (53)
WINDIR
"C:\WINDOWS" (10)
SERVER_SIGNATURE
"<address>Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80</address>
" (79)
SERVER_SOFTWARE
"Apache/2.4.9 (Win64) PHP/5.5.12" (31)
SERVER_NAME
"localhost" (9)
SERVER_ADDR
"::1" (3)
SERVER_PORT
"80" (2)
REMOTE_ADDR
"::1" (3)
DOCUMENT_ROOT
"C:/wamp/www/" (12)
REQUEST_SCHEME
"http" (4)
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"C:/wamp/www/" (12)
SERVER_ADMIN
"admin@example.com" (17)
SCRIPT_FILENAME
"C:/wamp/www/klubduch/www/index.php" (34)
REMOTE_PORT
"57892" (5)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
""
REQUEST_URI
"/klubduch/www/" (14)
SCRIPT_NAME
"/klubduch/www/index.php" (23)
PHP_SELF
"/klubduch/www/index.php" (23)
REQUEST_TIME_FLOAT
1407858844.851
REQUEST_TIME
1407858844

$_SESSION

__NFNette Session

Nette Session

Nette.Http.UserStorage/
array (2)
authenticated => NULL identity => NULL

Included files (261)

C:\wamp\www\klubduch\www\index.php
C:\wamp\www\klubduch\app\bootstrap.php
C:\wamp\www\klubduch\vendor\autoload.php
C:\wamp\www\klubduch\vendor\composer\autoload_real.php
C:\wamp\www\klubduch\vendor\composer\ClassLoader.php
C:\wamp\www\klubduch\vendor\composer\autoload_namespaces.php
C:\wamp\www\klubduch\vendor\composer\autoload_psr4.php
C:\wamp\www\klubduch\vendor\composer\autoload_classmap.php
C:\wamp\www\klubduch\vendor\composer\autoload_files.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\shortcuts.php
C:\wamp\www\klubduch\vendor\nette\nette\Nette\loader.php
C:\wamp\www\klubduch\vendor\nette\nette\Nette\Loaders\NetteLoader.php
C:\wamp\www\klubduch\vendor\nette\bootstrap\src\Bootstrap\Configurator.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\Object.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\CompilerExtension.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\Bar.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\BlueScreen.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\Dumper.php
C:\wamp\www\klubduch\vendor\latte\latte\src\Latte\exceptions.php
C:\wamp\www\klubduch\vendor\latte\latte\src\Latte\IMacro.php
C:\wamp\www\klubduch\vendor\latte\latte\src\Latte\Macros\MacroSet.php
C:\wamp\www\klubduch\vendor\latte\latte\src\Latte\Object.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\ArrayHash.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\ArrayList.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\DateTime.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\Image.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\ObjectMixin.php
C:\wamp\www\klubduch\vendor\nette\neon\src\Neon\Exception.php
C:\wamp\www\klubduch\vendor\nette\neon\src\Neon\Entity.php
C:\wamp\www\klubduch\vendor\nette\neon\src\Neon\Neon.php
C:\wamp\www\klubduch\vendor\nette\nette\Nette\shortcuts.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Doctrine\compatibility.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\EventManager.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\Debugger.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\DefaultBarPanel.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\IBarPanel.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\FireLogger.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\Helpers.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\Logger.php
C:\wamp\www\klubduch\vendor\nette\robot-loader\src\RobotLoader\RobotLoader.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\Storages\FileStorage.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\IStorage.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\Cache.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\Config\Loader.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\Config\Adapters\NeonAdapter.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\Config\IAdapter.php
C:\wamp\www\klubduch\vendor\nette\neon\src\Neon\Decoder.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\Validators.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\ContainerFactory.php
C:\wamp\www\klubduch\temp\cache\Nette.Configurator\8b7f93c1c374982ab68f9c73d6344660.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\Container.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\EntityDaoFactory.php
C:\wamp\www\klubduch\vendor\nette\application\src\Bridges\ApplicationLatte\ILatteFactory.php
C:\wamp\www\klubduch\vendor\nette\bootstrap\src\Bridges\Framework\TracyBridge.php
C:\wamp\www\klubduch\vendor\nette\nette\Nette\Framework.php
C:\wamp\www\klubduch\vendor\nette\reflection\src\Reflection\ClassType.php
C:\wamp\www\klubduch\vendor\nette\reflection\src\Reflection\Method.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\Session.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\RequestFactory.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\UrlScript.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\Url.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\Strings.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\Request.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\IRequest.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\Response.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\IResponse.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\LazyEventManager.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\EventManager.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\Diagnostics\Panel.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\Event.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\Callback.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\EventArgsList.php
C:\wamp\www\klubduch\vendor\kdyby\events\src\Kdyby\Events\EventArgs.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\EventArgs.php
C:\wamp\www\klubduch\vendor\nette\safe-stream\src\SafeStream\SafeStream.php
C:\wamp\www\klubduch\vendor\nette\reflection\src\Reflection\AnnotationsParser.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\Storages\FileJournal.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\Storages\IJournal.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\Diagnostics\Panel.php
C:\wamp\www\klubduch\temp\cache\_Kdyby.Aop\676e5ead2f3fb657e219d3c1e117f415.php
C:\wamp\www\klubduch\app\presenters\HomepagePresenter.php
C:\wamp\www\klubduch\app\presenters\BasePresenter.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\Presenter.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\Control.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\PresenterComponent.php
C:\wamp\www\klubduch\vendor\nette\component-model\src\ComponentModel\Container.php
C:\wamp\www\klubduch\vendor\nette\component-model\src\ComponentModel\Component.php
C:\wamp\www\klubduch\vendor\nette\component-model\src\ComponentModel\IComponent.php
C:\wamp\www\klubduch\vendor\nette\component-model\src\ComponentModel\IContainer.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\ISignalReceiver.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\IStatePersistent.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\IRenderable.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\IPresenter.php
C:\wamp\www\klubduch\app\model\HelloGenerator.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\AnnotationRegistry.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Diagnostics\Panel.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Logging\SQLLogger.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Proxy\ProxyAutoloader.php
C:\wamp\www\klubduch\vendor\nette\nette\Nette\deprecated\Environment.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\Application.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\PresenterFactory.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\IPresenterFactory.php
C:\wamp\www\klubduch\app\router\RouterFactory.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\Routers\RouteList.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\IRouter.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\Routers\Route.php
C:\wamp\www\klubduch\vendor\nette\application\src\Bridges\ApplicationTracy\RoutingPanel.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\LocaleResolver\LocaleParamResolver.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\IUserLocaleResolver.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\LocaleResolver\AcceptHeaderResolver.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\LocaleResolver\DefaultLocale.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\Translator.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Translator.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\TranslatorInterface.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\ITranslator.php
C:\wamp\www\klubduch\vendor\nette\utils\src\Utils\ITranslator.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\LocaleResolver\ChainResolver.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\MessageSelector.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\CatalogueCompiler.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\Caching\PhpFileStorage.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\FallbackResolver.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\CatalogueFactory.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\TranslationLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\PhpFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\ArrayLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\LoaderInterface.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\YamlFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\XliffFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\PoFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\MoFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\QtFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\CsvFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\IcuResFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\IcuDatFileLoader.php
C:\wamp\www\klubduch\vendor\symfony\translation\Symfony\Component\Translation\Loader\IniFileLoader.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\Loader\NeonFileLoader.php
C:\wamp\www\klubduch\vendor\kdyby\translation\src\Kdyby\Translation\LoadersInitializer.php
C:\wamp\www\klubduch\vendor\nette\caching\src\Caching\Storages\MemoryStorage.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\Request.php
C:\wamp\www\klubduch\vendor\nette\di\src\DI\Helpers.php
C:\wamp\www\klubduch\vendor\nette\reflection\src\Reflection\Parameter.php
C:\wamp\www\klubduch\vendor\nette\security\src\Security\User.php
C:\wamp\www\klubduch\vendor\nette\security\src\Security\IUserStorage.php
C:\wamp\www\klubduch\vendor\nette\http\src\Http\UserStorage.php
C:\wamp\www\klubduch\app\model\UserHandler.php
C:\wamp\www\klubduch\app\model\interfaces\IUserHandler.php
C:\wamp\www\klubduch\vendor\nette\security\src\Security\IAuthenticator.php
C:\wamp\www\klubduch\app\model\DatabaseHandler.php
C:\wamp\www\klubduch\app\model\interfaces\IDatabaseHandler.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\EntityManager.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\EntityManager.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\EntityManagerInterface.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\ObjectManager.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Connection.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Connection.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\Connection.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Configuration.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine-cache\src\Kdyby\DoctrineCache\Cache.php
C:\wamp\www\klubduch\vendor\doctrine\cache\lib\Doctrine\Common\Cache\CacheProvider.php
C:\wamp\www\klubduch\vendor\doctrine\cache\lib\Doctrine\Common\Cache\Cache.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Logging\LoggerChain.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\DbalType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\Type.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\DriverManager.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver\PDOMySql\Driver.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Driver.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Query\Expression\ExpressionBuilder.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Platforms\MySqlPlatform.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Platforms\AbstractPlatform.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\ArrayType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\SimpleArrayType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\JsonArrayType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\ObjectType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\BooleanType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\IntegerType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\SmallIntType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\BigIntType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\StringType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\TextType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\DateTimeType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\DateTimeTzType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\DateType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\TimeType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\DecimalType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\FloatType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\BlobType.php
C:\wamp\www\klubduch\vendor\doctrine\dbal\lib\Doctrine\DBAL\Types\GuidType.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\Enum.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\Point.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\GeometryType.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\LineString.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\MultiLineString.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\Polygon.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\MultiPolygon.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Types\GeometryCollection.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Configuration.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Configuration.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\Driver\MappingDriver.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Mapping\AnnotationDriver.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\Driver\AnnotationDriver.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\Driver\AnnotationDriver.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\CachedReader.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\Reader.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\AnnotationReader.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\Annotation\IgnoreAnnotation.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\DocParser.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\DocLexer.php
C:\wamp\www\klubduch\vendor\doctrine\lexer\lib\Doctrine\Common\Lexer\AbstractLexer.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\Annotation\Target.php
C:\wamp\www\klubduch\vendor\doctrine\annotations\lib\Doctrine\Common\Annotations\PhpParser.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\EntityDao.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\EntityRepository.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\EntityRepository.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\ObjectRepository.php
C:\wamp\www\klubduch\vendor\doctrine\collections\lib\Doctrine\Common\Collections\Selectable.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Persistence\QueryExecutor.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Persistence\Queryable.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Persistence\ObjectDao.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\UnderscoreNamingStrategy.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\NamingStrategy.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\DefaultQuoteStrategy.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\QuoteStrategy.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Mapping\EntityListenerResolver.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\EntityListenerResolver.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Mapping\ClassMetadataFactory.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\ClassMetadataFactory.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\AbstractClassMetadataFactory.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\ClassMetadataFactory.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Mapping\RuntimeReflectionService.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\RuntimeReflectionService.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\ReflectionService.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Repository\DefaultRepositoryFactory.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Repository\RepositoryFactory.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\UnitOfWork.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\PropertyChangedListener.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Event\ListenersInvoker.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Proxy\ProxyFactory.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Proxy\AbstractProxyFactory.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Proxy\ProxyGenerator.php
C:\wamp\www\klubduch\app\entities\User.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Entities\BaseEntity.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Util\ClassUtils.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Proxy.php
C:\wamp\www\klubduch\vendor\kdyby\doctrine\src\Kdyby\Doctrine\Mapping\ClassMetadata.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\ClassMetadata.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Mapping\ClassMetadataInfo.php
C:\wamp\www\klubduch\vendor\doctrine\common\lib\Doctrine\Common\Persistence\Mapping\ClassMetadata.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Id\IdentityGenerator.php
C:\wamp\www\klubduch\vendor\doctrine\orm\lib\Doctrine\ORM\Id\AbstractIdGenerator.php
C:\wamp\www\klubduch\vendor\nette\reflection\src\Reflection\Property.php
C:\wamp\www\klubduch\vendor\nette\security\src\Bridges\SecurityTracy\UserPanel.php
C:\wamp\www\klubduch\vendor\nette\application\src\Application\UI\ITemplateFactory.php
C:\wamp\www\klubduch\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php
C:\wamp\www\klubduch\app\model\ExampleAspect.php
C:\wamp\www\klubduch\vendor\kdyby\aop\src\Kdyby\Aop\JoinPoint\AfterMethod.php
C:\wamp\www\klubduch\vendor\kdyby\aop\src\Kdyby\Aop\JoinPoint\MethodInvocation.php
C:\wamp\www\klubduch\vendor\kdyby\aop\src\Kdyby\Aop\JoinPoint\ResultAware.php
C:\wamp\www\klubduch\vendor\kdyby\aop\src\Kdyby\Aop\JoinPoint\ExceptionAware.php
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\templates\bluescreen.phtml
C:\wamp\www\klubduch\vendor\tracy\tracy\src\Tracy\templates\bluescreen.css

Configuration options


Configuration

apache2handler

Apache Version Apache/2.4.9 (Win64) PHP/5.5.12
Apache API Version 20120211
Server Administrator admin@example.com
Hostname:Port localhost:80
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 60 - Keep-Alive: 5
Virtual Server No
Server Root C:/wamp/bin/apache/apache2.4.9
Loaded Modules core mod_win32 mpm_winnt http_core mod_so mod_access_compat mod_actions mod_alias mod_allowmethods mod_asis mod_auth_basic mod_authn_core mod_authn_file mod_authz_core mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cache mod_cache_disk mod_cgi mod_deflate mod_dir mod_env mod_file_cache mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_vhost_alias mod_php5

DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
HTTP_HOST localhost
HTTP_USER_AGENT Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
HTTP_ACCEPT_LANGUAGE cs,en-us;q=0.7,en;q=0.3
HTTP_ACCEPT_ENCODING gzip, deflate
HTTP_COOKIE PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=
HTTP_CONNECTION keep-alive
PATH C:\Program Files (x86)\EasyPHP-DevServer-14.1VC9\binaries\php\php_runningversion;C:\Program Files (x86)\EasyPHP-DevServer-14.1VC11\binaries\php\php_runningversion;C:\Program Files (x86)\Intel\iCLS Client\;C:\Program Files\Intel\iCLS Client\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x86;C:\Program Files (x86)\Intel\OpenCL SDK\2.0\bin\x64;C:\Program Files\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\DAL;C:\Program Files (x86)\Intel\Intel(R) Management Engine Components\IPT;C:\Program Files\Lenovo\Bluetooth Software\;C:\Program Files\Lenovo\Bluetooth Software\syswow64;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\VXIPNP\WinNT\Bin;C:\Windows\twain_32\CNQ4803\;C:\Program Files (x86)\Universal Extractor;C:\Program Files (x86)\Universal Extractor\bin;C:\Program Files (x86)\Windows Kits\8.1\Windows Performance Toolkit\;C:\Program Files\Microsoft SQL Server\110\Tools\Binn\;C:\Program Files\MATLAB\R2013b\bin;C:\Program Files (x86)\Heroku\bin;C:\Program Files (x86)\git\cmd;C:\Program Files\Java\jdk1.7.0_51\bin;C:\cygwin64\bin;C:\minGW\bin;C:\wamp\bin\php\php5.3.13;C:\ProgramData\ComposerSetup\bin;C:\wamp\bin\php\php5.5.12;
SystemRoot C:\WINDOWS
COMSPEC C:\WINDOWS\system32\cmd.exe
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
WINDIR C:\WINDOWS
SERVER_SIGNATURE <address>Apache/2.4.9 (Win64) PHP/5.5.12 Server at localhost Port 80</address>
SERVER_SOFTWARE Apache/2.4.9 (Win64) PHP/5.5.12
SERVER_NAME localhost
SERVER_ADDR ::1
SERVER_PORT 80
REMOTE_ADDR ::1
DOCUMENT_ROOT C:/wamp/www/
REQUEST_SCHEME http
CONTEXT_PREFIX no value
CONTEXT_DOCUMENT_ROOT C:/wamp/www/
SERVER_ADMIN admin@example.com
SCRIPT_FILENAME C:/wamp/www/klubduch/www/index.php
REMOTE_PORT 57892
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /klubduch/www/
SCRIPT_NAME /klubduch/www/index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /klubduch/www/ HTTP/1.1
Host localhost
User-Agent Mozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language cs,en-us;q=0.7,en;q=0.3
Accept-Encoding gzip, deflate
Cookie PHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=
Connection keep-alive
HTTP Response Headers
X-Powered-By Nette Framework
Expires Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma no-cache
X-Frame-Options SAMEORIGIN
Set-Cookie PHPSESSID=noqtjhje0t0815du6ush71m006; expires=Tue, 26-Aug-2014 15:54:04 GMT; Max-Age=1209600; path=/; httponly
Set-Cookie nette-browser=2h20up9uym; path=/; httponly
Connection close
Transfer-Encoding chunked
Content-Type text/html; charset=UTF-8

bcmath

BCMath support enabled

DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.6, 6-Sept-2010

calendar

Calendar support enabled

com_dotnet

COM supportenabled
DCOM supportdisabled
.Net supportenabled

DirectiveLocal ValueMaster Value
com.allow_dcom00
com.autoregister_casesensitive11
com.autoregister_typelib00
com.autoregister_verbose00
com.code_pageno valueno value
com.typelib_fileno valueno value

Core

PHP Version 5.5.12

DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
always_populate_raw_post_dataOffOff
arg_separator.input&&
arg_separator.output&&
asp_tagsOffOff
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetno valueno value
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionsno valueno value
display_errorsOnOn
display_startup_errorsOnOn
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_logC:\wamp\www\klubduch\log/php_error.logc:/wamp/logs/php_error.log
error_prepend_stringno valueno value
error_reporting032767
exit_on_timeoutOffOff
expose_phpOnOn
extension_dirc:/wamp/bin/php/php5.5.12/ext/c:/wamp/bin/php/php5.5.12/ext/
file_uploadsOnOn
highlight.comment#998; font-style: italic#FF8000
highlight.default#000#0000BB
highlight.html#06B#000000
highlight.keyword#D24; font-weight: bold#007700
highlight.string#080#DD0000
html_errorsOffOn
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.;C:\php\pear.;C:\php\pear
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time120120
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars25002500
memory_limit128M128M
open_basedirno valueno value
output_buffering40964096
output_handlerno valueno value
post_max_size3M3M
precision1414
realpath_cache_size20482048
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_frommemnarch@seznam.czmemnarch@seznam.cz
sendmail_pathno valueno value
serialize_precision1717
short_open_tagOffOff
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOnOn
unserialize_callback_funcno valueno value
upload_max_filesize64M64M
upload_tmp_dirc:/wamp/tmpc:/wamp/tmp
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
windows.show_crt_warningOffOff
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.36.0
Age 3
Features
AsynchDNS Yes
CharConv No
Debug No
GSS-Negotiate Yes
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB No
SPNEGO Yes
SSL Yes
SSPI Yes
TLS-SRP No
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp
Host x86_64-pc-win32
SSL Version OpenSSL/1.0.1g
ZLib Version 1.2.7
libSSH Version libssh2/1.4.3

date

date/time support enabled
"Olson" Timezone Database Version 2014.2
Timezone Database internal
Default timezone Europe/Prague

DirectiveLocal ValueMaster Value
date.default_latitude48.8877848.88778
date.default_longitude2.318062.31806
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneEurope/ParisEurope/Paris

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.9.1
HTML Support enabled
XPath Support enabled
XPointer Support enabled
Schema Support enabled
RelaxNG Support enabled

ereg

Regex Library Bundled library enabled

exif

EXIF Support enabled
EXIF Version 1.4 $Id$
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF

DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

fileinfo

fileinfo support enabled
version 1.0.5

filter

Input Validation and Filtering enabled
Revision $Id: 4d3899e089e6e45b157975ceef2ac7deb6e9d762 $

DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled

gd

GD Support enabled
GD Version bundled (2.1.0 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.4.10
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 9 compatible
PNG Support enabled
libPNG Version 1.5.18
WBMP Support enabled
XPM Support enabled
libXpm Version 30411
XBM Support enabled
WebP Support enabled

DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning00

gettext

GetText Support enabled

gmp

gmp support enabled
MPIR version 2.6.0

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b fnv132 fnv164 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5

iconv

iconv support enabled
iconv implementation "libiconv"
iconv library version 1.14

DirectiveLocal ValueMaster Value
iconv.input_encodingISO-8859-1ISO-8859-1
iconv.internal_encodingISO-8859-1ISO-8859-1
iconv.output_encodingISO-8859-1ISO-8859-1

imap

IMAP c-Client Version 2007f
SSL Support enabled

intl

Internationalization supportenabled
version 1.1.0
ICU version 51.2
ICU Data version 51.2

DirectiveLocal ValueMaster Value
intl.default_localefr_FRfr_FR
intl.error_level22
intl.use_exceptions00

json

json support enabled
json version 1.2.1

ldap

LDAP Support enabled
RCS Version $Id$
Total Links 0/unlimited
API Version 3001
Vendor Name OpenLDAP
Vendor Version 20433
SASL Support Enabled

DirectiveLocal ValueMaster Value
ldap.max_linksUnlimitedUnlimited

libxml

libXML support active
libXML Compiled Version 2.9.1
libXML Loaded Version 20901
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2

mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.

Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 5.9.2

DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputpasspass
mbstring.http_outputpasspass
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.strict_detectionOffOff
mbstring.substitute_characterno valueno value

mcrypt

mcrypt supportenabled
mcrypt_filter supportenabled
Version 2.5.8
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes arcfour
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream

DirectiveLocal ValueMaster Value
mcrypt.algorithms_dirno valueno value
mcrypt.modes_dirno valueno value

mhash

MHASH support Enabled
MHASH API Version Emulated Support

mysql

MySQL Supportenabled
Active Persistent Links 0
Active Links 0
Client API version mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $

DirectiveLocal ValueMaster Value
mysql.allow_local_infileOnOn
mysql.allow_persistentOnOn
mysql.connect_timeout6060
mysql.default_hostno valueno value
mysql.default_passwordno valueno value
mysql.default_port33063306
mysql.default_socketno valueno value
mysql.default_userno valueno value
mysql.max_linksUnlimitedUnlimited
mysql.max_persistentUnlimitedUnlimited
mysql.trace_modeOffOff

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0

DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socketno valueno value
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $
Compression supported
core SSL supported
extended SSL not supported
Command buffer size 4096
Read buffer size 32768
Read timeout 31536000
Collecting statistics Yes
Collecting memory statistics Yes
Tracing n/a
Loaded plugins mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password
API Extensions mysql,mysqli,pdo_mysql

mysqlnd statistics
bytes_sent 61308
bytes_received 198391
packets_sent 1374
packets_received 5431
protocol_overhead_in 21724
protocol_overhead_out 5496
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 3951
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 3939
bytes_received_prepare_response_packet 110840
bytes_received_change_user_packet 71740
packets_sent_command 626
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 439
packets_received_rset_field_meta 0
packets_received_rset_row 538
packets_received_prepare_response 2291
packets_received_change_user 2014
result_set_queries 439
non_result_set_queries 93
no_index_used 162
bad_index_used 0
slow_queries 0
buffered_sets 439
unbuffered_sets 0
ps_buffered_sets 0
ps_unbuffered_sets 0
flushed_normal_sets 0
flushed_ps_sets 0
ps_prepared_never_executed 0
ps_prepared_once_executed 0
rows_fetched_from_server_normal 1575
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 1575
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 1571
rows_fetched_from_client_normal_unbuffered 0
rows_fetched_from_client_ps_buffered 0
rows_fetched_from_client_ps_unbuffered 0
rows_fetched_from_client_ps_cursor 0
rows_affected_normal 13
rows_affected_ps 0
rows_skipped_normal 1575
rows_skipped_ps 0
copy_on_write_saved 6349
copy_on_write_performed 2352
command_buffer_too_small 0
connect_success 61
connect_failure 0
connection_reused 0
reconnect 0
pconnect_success 19
active_connections 18446744073709551555
active_persistent_connections 18446744073709551597
explicit_close 61
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 439
implicit_free_result 0
explicit_stmt_close 0
implicit_stmt_close 0
mem_emalloc_count 2572
mem_emalloc_amount 277433
mem_ecalloc_count 4810
mem_ecalloc_amount 1708956
mem_erealloc_count 655
mem_erealloc_amount 406376
mem_efree_count 7832
mem_efree_amount 2001417
mem_malloc_count 3509
mem_malloc_amount 7268694
mem_calloc_count 1381
mem_calloc_amount 173952
mem_realloc_count 0
mem_realloc_amount 0
mem_free_count 5094
mem_free_amount 7444770
mem_estrndup_count 137
mem_strndup_count 84
mem_estndup_count 313
mem_strdup_count 120
proto_text_fetched_null 0
proto_text_fetched_bit 0
proto_text_fetched_tinyint 0
proto_text_fetched_short 0
proto_text_fetched_int24 0
proto_text_fetched_int 0
proto_text_fetched_bigint 2386
proto_text_fetched_decimal 0
proto_text_fetched_float 0
proto_text_fetched_double 0
proto_text_fetched_date 0
proto_text_fetched_year 0
proto_text_fetched_time 0
proto_text_fetched_datetime 16
proto_text_fetched_timestamp 0
proto_text_fetched_string 5994
proto_text_fetched_blob 40
proto_text_fetched_enum 0
proto_text_fetched_set 0
proto_text_fetched_geometry 0
proto_text_fetched_other 0
proto_binary_fetched_null 0
proto_binary_fetched_bit 0
proto_binary_fetched_tinyint 0
proto_binary_fetched_short 0
proto_binary_fetched_int24 0
proto_binary_fetched_int 0
proto_binary_fetched_bigint 0
proto_binary_fetched_decimal 0
proto_binary_fetched_float 0
proto_binary_fetched_double 0
proto_binary_fetched_date 0
proto_binary_fetched_year 0
proto_binary_fetched_time 0
proto_binary_fetched_datetime 0
proto_binary_fetched_timestamp 0
proto_binary_fetched_string 0
proto_binary_fetched_blob 0
proto_binary_fetched_enum 0
proto_binary_fetched_set 0
proto_binary_fetched_geometry 0
proto_binary_fetched_other 0
init_command_executed_count 0
init_command_failed_count 0
com_quit 61
com_init_db 27
com_query 538
com_field_list 0
com_create_db 0
com_drop_db 0
com_refresh 0
com_shutdown 0
com_statistics 0
com_process_info 0
com_connect 0
com_process_kill 0
com_debug 0
com_ping 0
com_time 0
com_delayed_insert 0
com_change_user 0
com_binlog_dump 0
com_table_dump 0
com_connect_out 0
com_register_slave 0
com_stmt_prepare 0
com_stmt_execute 0
com_stmt_send_long_data 0
com_stmt_close 0
com_stmt_reset 0
com_stmt_set_option 0
com_stmt_fetch 0
com_deamon 0
bytes_received_real_data_normal 54599
bytes_received_real_data_ps 0

odbc

ODBC Supportenabled
Active Persistent Links 0
Active Links 0
ODBC library Win32

DirectiveLocal ValueMaster Value
odbc.allow_persistentOnOn
odbc.check_persistentOnOn
odbc.default_cursortypeStatic cursorStatic cursor
odbc.default_dbno valueno value
odbc.default_pwno valueno value
odbc.default_userno valueno value
odbc.defaultbinmodereturn as isreturn as is
odbc.defaultlrlreturn up to 4096 bytesreturn up to 4096 bytes
odbc.max_linksUnlimitedUnlimited
odbc.max_persistentUnlimitedUnlimited

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.1g 7 Apr 2014
OpenSSL Header Version OpenSSL 1.0.1g 7 Apr 2014

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.34 2013-12-15

DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 5.0.11-dev - 20120503 - $Id: bf9ad53b11c9a57efdb1057292d73b928b8c5c77 $

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.8.4.3

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: a5488937a80433d434af6753d3db8517feaf91df $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
OpenSSL support enabled

Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.

DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

Reflection

Reflectionenabled
Version $Id: 31d836a7ac92a37b5c580836d91ad4736fe2f376 $

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php_serialize php php_binary wddx

DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOnOff
session.cookie_lifetime12096000
session.cookie_path//
session.cookie_secureOffOff
session.entropy_fileno valueno value
session.entropy_length00
session.gc_divisor10001000
session.gc_maxlifetime12096001800
session.gc_probability11
session.hash_bits_per_character55
session.hash_function00
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_pathc:/wamp/tmpc:/wamp/tmp
session.serialize_handlerphpphp
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: f84e1e014d888b0412910755edb035e56483fcf8 $
Schema support enabled

soap

Soap Client enabled
Soap Server enabled

DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

SPL

SPL supportenabled
Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException

sqlite3

SQLite3 supportenabled
SQLite3 module version 0.7-dev
SQLite Library 3.8.4.3

DirectiveLocal ValueMaster Value
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Internal Sendmail Support for Windows enabled

DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
url_rewriter.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xdebug

xdebug supportenabled
Version 2.2.5
IDE Key AZATHOTH$

Supported protocolsRevision
DBGp - Common DeBuGger Protocol $Revision: 1.145 $

DirectiveLocal ValueMaster Value
xdebug.auto_traceOffOff
xdebug.cli_color00
xdebug.collect_assignmentsOffOff
xdebug.collect_includesOnOn
xdebug.collect_params00
xdebug.collect_returnOffOff
xdebug.collect_varsOffOff
xdebug.coverage_enableOnOn
xdebug.default_enableOnOn
xdebug.dump.COOKIEno valueno value
xdebug.dump.ENVno valueno value
xdebug.dump.FILESno valueno value
xdebug.dump.GETno valueno value
xdebug.dump.POSTno valueno value
xdebug.dump.REQUESTno valueno value
xdebug.dump.SERVERno valueno value
xdebug.dump.SESSIONno valueno value
xdebug.dump_globalsOnOn
xdebug.dump_onceOnOn
xdebug.dump_undefinedOffOff
xdebug.extended_infoOnOn
xdebug.file_link_formatno valueno value
xdebug.idekeyno valueno value
xdebug.max_nesting_level250250
xdebug.overload_var_dumpOnOn
xdebug.profiler_aggregateOffOff
xdebug.profiler_appendOffOff
xdebug.profiler_enableOffOff
xdebug.profiler_enable_triggerOffOff
xdebug.profiler_output_dirc:/wamp/tmpc:/wamp/tmp
xdebug.profiler_output_namecachegrind.out.%t.%pcachegrind.out.%t.%p
xdebug.remote_autostartOffOff
xdebug.remote_connect_backOffOff
xdebug.remote_cookie_expire_time36003600
xdebug.remote_enableOffOff
xdebug.remote_handlerdbgpdbgp
xdebug.remote_hostlocalhostlocalhost
xdebug.remote_logno valueno value
xdebug.remote_modereqreq
xdebug.remote_port90009000
xdebug.screamOffOff
xdebug.show_exception_traceOffOff
xdebug.show_local_varsOffOff
xdebug.show_mem_deltaOffOff
xdebug.trace_enable_triggerOffOff
xdebug.trace_format00
xdebug.trace_options00
xdebug.trace_output_dir\\
xdebug.trace_output_nametrace.%ctrace.%c
xdebug.var_display_max_children128128
xdebug.var_display_max_data512512
xdebug.var_display_max_depth33

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.9.1

xmlreader

XMLReader enabled

xmlrpc

core library version xmlrpc-epi v. 0.51
php extension version 0.51
author Dan Libby
homepage http://xmlrpc-epi.sourceforge.net
open sourced by Epinions.com

xmlwriter

XMLWriter enabled

xsl

XSL enabled
libxslt Version 1.1.27
libxslt compiled against libxml Version 2.7.8
EXSLT enabled
libexslt Version 0.8.16

zip

Zip enabled
Extension Version $Id: 05dd1ecc211075107543b0ef8cee488dd229fccf $
Zip version 1.11.0
Libzip version 0.10.1

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.7.3
Linked Version 1.2.7.3

DirectiveLocal ValueMaster Value
zlib.output_compressionOffOff
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name

HTTP request

Headers

Hostlocalhost
User-AgentMozilla/5.0 (Windows NT 6.3; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
Accepttext/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Languagecs,en-us;q=0.7,en;q=0.3
Accept-Encodinggzip, deflate
CookiePHPSESSID=noqtjhje0t0815du6ush71m006; nette-browser=2h20up9uym; tracy-debug-panel-kdyby-translation=
Connectionkeep-alive

$_GET

empty

$_POST

empty

$_COOKIE

PHPSESSID
"noqtjhje0t0815du6ush71m006" (26)
nette-browser
"2h20up9uym" (10)
tracy-debug-panel-kdyby-translation
""

HTTP response

Headers

Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
X-Frame-Options: SAMEORIGIN
X-Powered-By: Nette Framework
Content-Type: text/html; charset=UTF-8
Set-Cookie: PHPSESSID=noqtjhje0t0815du6ush71m006; expires=Tue, 26-Aug-2014 15:54:04 GMT; Max-Age=1209600; path=/; httponly
Set-Cookie: nette-browser=2h20up9uym; path=/; httponly
  • Report generated at 2014/08/12 17:54:04
  • http://localhost/klubduch/www/
  • PHP 5.5.12
  • Apache/2.4.9 (Win64) PHP/5.5.12
  • Tracy 2.2.2
  • Nette Framework 2.2.2 (released on 2014-06-26)