Nette\MemberAccessException

Call to undefined method Nette\Application\UI\Form::addTest(), did you mean addText()? fix it► search►

Source file

File: ...\vendor\nette\utils\src\Utils\ObjectMixin.php:100

90: } else { 91: $hint = self::getSuggestion(array_merge( 92: get_class_methods($class), 93: self::parseFullDoc($class, '~^[ \t*]*@method[ \t]+(?:\S+[ \t]+)??(\w+)\(~m'), 94: array_keys(self::getExtensionMethods($class)) 95: ), $name); 96: 97: if (method_exists($class, $name)) { // called parent::$name() 98: $class = 'parent'; 99: } 100: throw new MemberAccessException("Call to undefined method $class::$name()" . ($hint ? ", did you mean $hint()?" : '.')); 101: } 102: } 103: 104:

Call stack

  1. ...\x-sandbox\vendor\nette\utils\src\Utils\Object.php:75 source  Nette\Utils\ObjectMixin::call(arguments)

    65: 66: /** 67: * Call to undefined method. 68: * @param string method name 69: * @param array arguments 70: * @return mixed 71: * @throws MemberAccessException 72: */ 73: public function __call($name, $args) 74: { 75: return ObjectMixin::call($this, $name, $args); 76: } 77: 78: 79: /**
    $_this
    
    
    $name
    "addTest" (7)
    
    $args
    
    
  2. \sandbox\app\forms\SignFormFactory.php:32 source  Nette\Object->__call(arguments)

    22: $this->user = $user; 23: } 24: 25: 26: /** 27: * @return Form 28: */ 29: public function create() 30: { 31: $form = $this->factory->create(); 32: $form->addTest('username', 'Username:') 33: ->setRequired('Please enter your username.'); 34: 35: $form->addPassword('password', 'Password:') 36: ->setRequired('Please enter your password.');
    $name
    "addTest" (7)
    
    $args
    
    
  3. \sandbox\app\presenters\SignPresenter.php:21 source  App\Forms\SignFormFactory->create()

    11: /** @var SignFormFactory @inject */ 12: public $factory; 13: 14: 15: /** 16: * Sign-in form factory. 17: * @return Nette\Application\UI\Form 18: */ 19: protected function createComponentSignInForm() 20: { 21: $form = $this->factory->create(); 22: $form->onSuccess[] = function ($form) { 23: $form->getPresenter()->redirect('Homepage:'); 24: }; 25: return $form;
  4. ...\component-model\src\ComponentModel\Container.php:181 source  App\Presenters\SignPresenter->createComponentSignInForm(arguments)

    171: /** 172: * Component factory. Delegates the creation of components to a createComponent<Name> method. 173: * @param string component name 174: * @return IComponent the created component (optionally) 175: */ 176: protected function createComponent($name) 177: { 178: $ucname = ucfirst($name); 179: $method = 'createComponent' . $ucname; 180: if ($ucname !== $name && method_exists($this, $method) && $this->getReflection()->getMethod($method)->getName() === $method) { 181: $component = $this->$method($name); 182: if (!$component instanceof IComponent && !isset($this->components[$name])) { 183: $class = get_class($this); 184: throw new Nette\UnexpectedValueException("Method $class::$method() did not return or create the desired component."); 185: }
    #0
    "signInForm" (10)
    
  5. ...\component-model\src\ComponentModel\Container.php:139 source  Nette\ComponentModel\Container->createComponent(arguments)

    129: 130: if ($name === '') { 131: if ($need) { 132: throw new Nette\InvalidArgumentException('Component or subcomponent name must not be empty string.'); 133: } 134: return; 135: } 136: } 137: 138: if (!isset($this->components[$name])) { 139: $component = $this->createComponent($name); 140: if ($component) { 141: if (!$component instanceof IComponent) { 142: throw new Nette\UnexpectedValueException('Method createComponent() did not return Nette\ComponentModel\IComponent.'); 143:
    $name
    "signInForm" (10)
    
  6. \sandbox\temp\cache\latte\x-sandbox-app-presenters-templates-Sign-in-latte-Template53adebb15206b353f351f6bfca2c36cc.php:17 source  Nette\ComponentModel\Container->getComponent(arguments)

    7: // prolog Latte\Macros\CoreMacros 8: list($_b, $_g, $_l) = $template->initialize('071a7d8038', 'html') 9: ; 10: // prolog Latte\Macros\BlockMacros 11: // 12: // block content 13: // 14: if (!function_exists($_b->blocks['content'][] = '_lbb7a8ce7054_content')) { function _lbb7a8ce7054_content($_b, $_args) { foreach ($_args as $__k => $__v) $$__k = $__v 15: ;call_user_func(reset($_b->blocks['title']), $_b, get_defined_vars()) ?> 16: 17: <?php $_l->tmp = $_control->getComponent("signInForm"); if ($_l->tmp instanceof Nette\Application\UI\IRenderable) $_l->tmp->redrawControl(NULL, FALSE); $_l->tmp->render() ?> 18: 19: <?php 20: }} 21:
    $name
    "signInForm" (10)
    
  7. ...\latte\src\Latte\Macros\BlockMacrosRuntime.php:31 source  _lbb7a8ce7054_content(arguments)

    21: * Calls block. 22: * @return void 23: */ 24: public static function callBlock(\stdClass $context, $name, array $params) 25: { 26: if (empty($context->blocks[$name])) { 27: $hint = isset($context->blocks) && ($t = Latte\Helpers::getSuggestion(array_keys($context->blocks), $name)) ? ", did you mean '$t'?" : '.'; 28: throw new RuntimeException("Cannot include undefined block '$name'$hint"); 29: } 30: $block = reset($context->blocks[$name]); 31: $block($context, $params); 32: } 33: 34: 35: /**
    $_b
    
    
    $_args
    
    
  8. \sandbox\temp\cache\latte\x-sandbox-app-presenters-templates-layout-latte-Template77ce826f0b6261503af981b0b4b98687.php:69 source  Latte\Macros\BlockMacrosRuntime::callBlock(arguments)

    59: <?php if ($_l->extends) { ob_end_clean(); return $template->renderChildTemplate($_l->extends, get_defined_vars()); } 60: call_user_func(reset($_b->blocks['head']), $_b, get_defined_vars()) ?> 61: 62: </head> 63: 64: <body> 65: <?php $iterations = 0; foreach ($flashes as $flash) { ?> <div<?php if ($_l->tmp = array_filter(array('flash', $flash->type))) echo ' class="', Latte\Runtime\Filters::escapeHtml(implode(" ", array_unique($_l->tmp)), ENT_COMPAT), '"' ?> 66: ><?php echo Latte\Runtime\Filters::escapeHtml($flash->message, ENT_NOQUOTES) ?></div> 67: <?php $iterations++; } ?> 68: 69: <?php Latte\Macros\BlockMacrosRuntime::callBlock($_b, 'content', $template->getParameters()) ?> 70: 71: <?php call_user_func(reset($_b->blocks['scripts']), $_b, get_defined_vars()) ?> 72: </body> 73: </html>
    $context
    
    
    $name
    "content" (7)
    
    $params
    
    
  9. ...\x-sandbox\vendor\latte\latte\src\Latte\Engine.php:98 source  Template77ce826f0b6261503af981b0b4b98687->render()

    88: $class = $this->getTemplateClass($name); 89: if (!class_exists($class, FALSE)) { 90: if ($this->tempDirectory) { 91: $this->loadTemplateFromCache($name); 92: } else { 93: $this->loadTemplate($name); 94: } 95: } 96: 97: $template = new $class($params, $this, $name); 98: $template->render(); 99: } 100: 101: 102: /**
  10. ...\vendor\latte\latte\src\Latte\Template.php:91 source  Latte\Engine->render(arguments)

    81: 82: 83: /** 84: * Renders template. 85: * @return void 86: * @internal 87: */ 88: public function renderChildTemplate($name, array $params = array()) 89: { 90: $name = $this->engine->getLoader()->getChildName($name, $this->name); 91: $this->engine->render($name, $params); 92: } 93: 94: 95: /**
    $name
    "\sandbox\app\presenters/templates/@layout.latte" (57)
    
    $params
    
    
  11. \sandbox\temp\cache\latte\x-sandbox-app-presenters-templates-Sign-in-latte-Template53adebb15206b353f351f6bfca2c36cc.php:50 source  Latte\Template->renderChildTemplate(arguments)

    40: // prolog Nette\Bridges\ApplicationLatte\UIMacros 41: 42: // snippets support 43: if (empty($_l->extends) && !empty($_control->snippetMode)) { 44: return Nette\Bridges\ApplicationLatte\UIRuntime::renderSnippets($_control, $_b, get_defined_vars()); 45: } 46: 47: // 48: // main template 49: // 50: if ($_l->extends) { ob_end_clean(); return $template->renderChildTemplate($_l->extends, get_defined_vars()); } 51: call_user_func(reset($_b->blocks['content']), $_b, get_defined_vars()) ; 52: }}
    $name
    "\sandbox\app\presenters/templates/@layout.latte" (57)
    
    $params
    
    
  12. ...\x-sandbox\vendor\latte\latte\src\Latte\Engine.php:98 source  Template53adebb15206b353f351f6bfca2c36cc->render()

    88: $class = $this->getTemplateClass($name); 89: if (!class_exists($class, FALSE)) { 90: if ($this->tempDirectory) { 91: $this->loadTemplateFromCache($name); 92: } else { 93: $this->loadTemplate($name); 94: } 95: } 96: 97: $template = new $class($params, $this, $name); 98: $template->render(); 99: } 100: 101: 102: /**
  13. ...\src\Bridges\ApplicationLatte\Template.php:50 source  Latte\Engine->render(arguments)

    40: return $this->latte; 41: } 42: 43: 44: /** 45: * Renders template to output. 46: * @return void 47: */ 48: public function render($file = NULL, array $params = array()) 49: { 50: $this->latte->render($file ?: $this->file, $params + $this->params); 51: } 52: 53: 54: /**
    $name
    "\sandbox\app\presenters/templates/Sign/in.latte" (57)
    
    $params
    
    
  14. ...\src\Application\Responses\TextResponse.php:47 source  Nette\Bridges\ApplicationLatte\Template->render()

    37: } 38: 39: 40: /** 41: * Sends response to output. 42: * @return void 43: */ 44: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 45: { 46: if ($this->source instanceof Nette\Application\UI\ITemplate) { 47: $this->source->render(); 48: 49: } else { 50: echo $this->source; 51: }
  15. ...\nette\application\src\Application\Application.php:148 source  Nette\Application\Responses\TextResponse->send(arguments)

    138: 139: $this->presenter = $this->presenterFactory->createPresenter($request->getPresenterName()); 140: $this->onPresenter($this, $this->presenter); 141: $response = $this->presenter->run($request); 142: 143: if ($response instanceof Responses\ForwardResponse) { 144: $this->processRequest($response->getRequest()); 145: 146: } elseif ($response) { 147: $this->onResponse($this, $response); 148: $response->send($this->httpRequest, $this->httpResponse); 149: } 150: } 151: 152:
    $httpRequest
    
    
    $httpResponse
    
    
  16. ...\nette\application\src\Application\Application.php:81 source  Nette\Application\Application->processRequest(arguments)

    71: 72: 73: /** 74: * Dispatch a HTTP request to a front controller. 75: * @return void 76: */ 77: public function run() 78: { 79: try { 80: $this->onStartup($this); 81: $this->processRequest($this->createInitialRequest()); 82: $this->onShutdown($this); 83: 84: } catch (\Exception $e) { 85: $this->onError($this, $e);
    $request
    
    
  17. \sandbox\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 __DIR__ . '/.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getByType('Nette\Application\Application')->run(); 9:

Nette Application

Requests


Presenter


		

Environment

$_SERVER

REDIRECT_STATUS
"200" (3)
HTTP_HOST
"localhost" (9)
HTTP_CONNECTION
"keep-alive" (10)
HTTP_CACHE_CONTROL
"max-age=0" (9)
HTTP_ACCEPT
"text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" (74)
HTTP_UPGRADE_INSECURE_REQUESTS
"1"
HTTP_USER_AGENT
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36 OPR/35.0.2066.68" (127)
HTTP_ACCEPT_ENCODING
"gzip, deflate, lzma, sdch" (25)
HTTP_ACCEPT_LANGUAGE
"cs-CZ,cs;q=0.8" (14)
SystemRoot
"C:\WINDOWS" (10)
COMSPEC
"C:\WINDOWS\system32\cmd.exe" (27)
PATHEXT
".COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PHP" (58)
WINDIR
"C:\WINDOWS" (10)
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.3" (46)
SERVER_NAME
"localhost" (9)
SERVER_ADDR
"::1" (3)
SERVER_PORT
"80" (2)
REMOTE_ADDR
"::1" (3)
DOCUMENT_ROOT
"W:/" (3)
REQUEST_SCHEME
"http" (4)
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"W:/" (3)
SERVER_ADMIN
"admin@example.com" (15)
SCRIPT_FILENAME
"/sandbox/www/index.php" (32)
REMOTE_PORT
"19661" (5)
REDIRECT_URL
"/sandbox/www/sign/in" (28)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
""
REQUEST_URI
"/sandbox/www/sign/in" (28)
SCRIPT_NAME
"/sandbox/www/index.php" (30)
PHP_SELF
"/sandbox/www/index.php" (30)
REQUEST_TIME_FLOAT
1456249825.192
REQUEST_TIME
1456249825

$_SESSION

empty

Included files (176)

\sandbox\www\index.php
\sandbox\app\bootstrap.php
\sandbox\vendor\autoload.php
\sandbox\vendor\composer\autoload_real.php
\sandbox\vendor\composer\ClassLoader.php
\sandbox\vendor\composer\autoload_namespaces.php
\sandbox\vendor\composer\autoload_psr4.php
\sandbox\vendor\composer\autoload_classmap.php
\sandbox\vendor\composer\autoload_files.php
\sandbox\vendor\tracy\tracy\src\shortcuts.php
\sandbox\vendor\nette\safe-stream\src\loader.php
\sandbox\vendor\nette\safe-stream\src\SafeStream\SafeStream.php
\sandbox\vendor\nette\bootstrap\src\Bootstrap\Configurator.php
\sandbox\vendor\nette\utils\src\Utils\Object.php
\sandbox\vendor\tracy\tracy\src\Tracy\Debugger.php
\sandbox\vendor\tracy\tracy\src\Tracy\ILogger.php
\sandbox\vendor\tracy\tracy\src\Tracy\Bar.php
\sandbox\vendor\tracy\tracy\src\Tracy\BlueScreen.php
\sandbox\vendor\tracy\tracy\src\Tracy\DefaultBarPanel.php
\sandbox\vendor\tracy\tracy\src\Tracy\IBarPanel.php
\sandbox\vendor\tracy\tracy\src\Tracy\Dumper.php
\sandbox\vendor\tracy\tracy\src\Tracy\FireLogger.php
\sandbox\vendor\tracy\tracy\src\Tracy\Helpers.php
\sandbox\vendor\tracy\tracy\src\Tracy\Logger.php
\sandbox\vendor\nette\bootstrap\src\Bridges\Framework\TracyBridge.php
\sandbox\vendor\nette\robot-loader\src\RobotLoader\RobotLoader.php
\sandbox\vendor\nette\caching\src\Caching\Storages\FileStorage.php
\sandbox\vendor\nette\caching\src\Caching\IStorage.php
\sandbox\vendor\nette\caching\src\Caching\Cache.php
\sandbox\vendor\nette\di\src\DI\Config\Loader.php
\sandbox\vendor\nette\di\src\DI\Config\Adapters\NeonAdapter.php
\sandbox\vendor\nette\di\src\DI\Config\IAdapter.php
\sandbox\vendor\nette\neon\src\Neon\Neon.php
\sandbox\vendor\nette\neon\src\Neon\Decoder.php
\sandbox\vendor\nette\utils\src\Utils\Validators.php
\sandbox\vendor\nette\utils\src\Utils\exceptions.php
\sandbox\vendor\nette\di\src\DI\ContainerLoader.php
\sandbox\vendor\nette\di\src\DI\Compiler.php
\sandbox\vendor\nette\di\src\DI\ContainerBuilder.php
\sandbox\vendor\nette\di\src\DI\Config\Helpers.php
\sandbox\vendor\nette\di\src\DI\Extensions\PhpExtension.php
\sandbox\vendor\nette\di\src\DI\CompilerExtension.php
\sandbox\vendor\nette\di\src\DI\Helpers.php
\sandbox\vendor\nette\di\src\DI\Extensions\ConstantsExtension.php
\sandbox\vendor\nette\di\src\DI\Extensions\ExtensionsExtension.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationDI\ApplicationExtension.php
\sandbox\vendor\nette\utils\src\Utils\Arrays.php
\sandbox\vendor\nette\di\src\DI\Extensions\DecoratorExtension.php
\sandbox\vendor\nette\caching\src\Bridges\CacheDI\CacheExtension.php
\sandbox\vendor\nette\database\src\Bridges\DatabaseDI\DatabaseExtension.php
\sandbox\vendor\nette\di\src\DI\Extensions\DIExtension.php
\sandbox\vendor\nette\forms\src\Bridges\FormsDI\FormsExtension.php
\sandbox\vendor\nette\http\src\Bridges\HttpDI\HttpExtension.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationDI\LatteExtension.php
\sandbox\vendor\nette\mail\src\Bridges\MailDI\MailExtension.php
\sandbox\vendor\nette\reflection\src\Bridges\ReflectionDI\ReflectionExtension.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationDI\RoutingExtension.php
\sandbox\vendor\nette\security\src\Bridges\SecurityDI\SecurityExtension.php
\sandbox\vendor\nette\http\src\Bridges\HttpDI\SessionExtension.php
\sandbox\vendor\tracy\tracy\src\Bridges\Nette\TracyExtension.php
\sandbox\vendor\nette\di\src\DI\Extensions\InjectExtension.php
\sandbox\vendor\nette\utils\src\Utils\ObjectMixin.php
\sandbox\vendor\nette\application\src\Application\UI\Presenter.php
\sandbox\vendor\nette\application\src\Application\UI\Control.php
\sandbox\vendor\nette\application\src\Application\UI\PresenterComponent.php
\sandbox\vendor\nette\component-model\src\ComponentModel\Container.php
\sandbox\vendor\nette\component-model\src\ComponentModel\Component.php
\sandbox\vendor\nette\component-model\src\ComponentModel\IComponent.php
\sandbox\vendor\nette\component-model\src\ComponentModel\IContainer.php
\sandbox\vendor\nette\application\src\Application\UI\ISignalReceiver.php
\sandbox\vendor\nette\application\src\Application\UI\IStatePersistent.php
\sandbox\vendor\nette\application\src\Application\UI\IRenderable.php
\sandbox\vendor\nette\application\src\Application\IPresenter.php
\sandbox\vendor\nette\di\src\DI\ServiceDefinition.php
\sandbox\vendor\nette\di\src\DI\Statement.php
\sandbox\vendor\latte\latte\src\Latte\Engine.php
\sandbox\vendor\latte\latte\src\Latte\Object.php
\sandbox\vendor\latte\latte\src\Latte\Compiler.php
\sandbox\app\forms\FormFactory.php
\sandbox\app\forms\SignFormFactory.php
\sandbox\app\model\UserManager.php
\sandbox\vendor\nette\security\src\Security\IAuthenticator.php
\sandbox\vendor\nette\utils\src\Utils\Strings.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationLatte\ILatteFactory.php
\sandbox\vendor\nette\application\src\Application\Application.php
\sandbox\vendor\nette\application\src\Application\PresenterFactory.php
\sandbox\vendor\nette\application\src\Application\IPresenterFactory.php
\sandbox\vendor\nette\application\src\Application\LinkGenerator.php
\sandbox\vendor\nette\caching\src\Caching\Storages\FileJournal.php
\sandbox\vendor\nette\caching\src\Caching\Storages\IJournal.php
\sandbox\vendor\nette\database\src\Database\Connection.php
\sandbox\vendor\nette\database\src\Database\Structure.php
\sandbox\vendor\nette\database\src\Database\IStructure.php
\sandbox\vendor\nette\database\src\Database\Conventions\DiscoveredConventions.php
\sandbox\vendor\nette\database\src\Database\IConventions.php
\sandbox\vendor\nette\database\src\Database\Context.php
\sandbox\vendor\nette\http\src\Http\RequestFactory.php
\sandbox\vendor\nette\utils\src\Utils\Callback.php
\sandbox\vendor\nette\reflection\src\Reflection\Method.php
\sandbox\vendor\nette\reflection\src\Reflection\ClassType.php
\sandbox\vendor\nette\di\src\DI\PhpReflection.php
\sandbox\vendor\nette\http\src\Http\Request.php
\sandbox\vendor\nette\http\src\Http\IRequest.php
\sandbox\vendor\nette\http\src\Http\Response.php
\sandbox\vendor\nette\http\src\Http\IResponse.php
\sandbox\vendor\nette\http\src\Http\Context.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationLatte\TemplateFactory.php
\sandbox\vendor\nette\application\src\Application\UI\ITemplateFactory.php
\sandbox\vendor\nette\mail\src\Mail\SendmailMailer.php
\sandbox\vendor\nette\mail\src\Mail\IMailer.php
\sandbox\app\router\RouterFactory.php
\sandbox\vendor\nette\application\src\Application\IRouter.php
\sandbox\vendor\nette\http\src\Http\UserStorage.php
\sandbox\vendor\nette\security\src\Security\IUserStorage.php
\sandbox\vendor\nette\security\src\Security\User.php
\sandbox\vendor\nette\http\src\Http\Session.php
\sandbox\vendor\nette\di\src\DI\Container.php
\sandbox\vendor\nette\caching\src\Caching\Storages\DevNullStorage.php
\sandbox\vendor\nette\finder\src\Finder\Finder.php
\sandbox\vendor\nette\finder\src\Finder\RecursiveCallbackFilterIterator.php
\sandbox\vendor\nette\finder\src\Finder\CallbackFilterIterator.php
\sandbox\app\presenters\BasePresenter.php
\sandbox\app\presenters\Error4xxPresenter.php
\sandbox\app\presenters\ErrorPresenter.php
\sandbox\app\presenters\HomepagePresenter.php
\sandbox\app\presenters\SignPresenter.php
\sandbox\vendor\nette\application\src\Application\ErrorPresenter.php
\sandbox\vendor\nette\application\src\Application\MicroPresenter.php
\sandbox\vendor\nette\application\src\Application\exceptions.php
\sandbox\vendor\nette\application\src\Application\UI\PresenterComponentReflection.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationDI\PresenterFactoryCallback.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\ClassType.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\Method.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\Helpers.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\Property.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\PhpLiteral.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationTracy\RoutingPanel.php
\sandbox\vendor\nette\database\src\Database\Helpers.php
\sandbox\vendor\nette\php-generator\src\PhpGenerator\Parameter.php
\sandbox\vendor\nette\security\src\Security\IAuthorizator.php
\sandbox\vendor\nette\security\src\Bridges\SecurityTracy\UserPanel.php
\sandbox\temp\cache\Nette.Configurator\Container_6fe119db50.php
\sandbox\vendor\nette\reflection\src\Reflection\AnnotationsParser.php
\sandbox\vendor\nette\http\src\Http\UrlScript.php
\sandbox\vendor\nette\http\src\Http\Url.php
\sandbox\vendor\nette\http\src\Http\Helpers.php
\sandbox\vendor\nette\utils\src\Utils\DateTime.php
\sandbox\vendor\nette\application\src\Application\Routers\RouteList.php
\sandbox\vendor\nette\utils\src\Utils\ArrayList.php
\sandbox\vendor\nette\application\src\Application\Routers\Route.php
\sandbox\vendor\nette\application\src\Application\Request.php
\sandbox\vendor\nette\database\src\Bridges\DatabaseTracy\ConnectionPanel.php
\sandbox\vendor\nette\component-model\src\ComponentModel\RecursiveComponentIterator.php
\sandbox\vendor\nette\utils\src\Utils\Html.php
\sandbox\vendor\nette\utils\src\Utils\IHtmlString.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationLatte\Template.php
\sandbox\vendor\nette\application\src\Application\UI\ITemplate.php
\sandbox\vendor\nette\application\src\Bridges\ApplicationLatte\Loader.php
\sandbox\vendor\latte\latte\src\Latte\Loaders\FileLoader.php
\sandbox\vendor\latte\latte\src\Latte\ILoader.php
\sandbox\vendor\nette\application\src\Application\Responses\TextResponse.php
\sandbox\vendor\nette\application\src\Application\IResponse.php
\sandbox\temp\cache\latte\x-sandbox-app-presenters-templates-Sign-in-latte-Template53adebb15206b353f351f6bfca2c36cc.php
\sandbox\vendor\latte\latte\src\Latte\Template.php
\sandbox\vendor\latte\latte\src\Latte\Runtime\Filters.php
\sandbox\temp\cache\latte\x-sandbox-app-presenters-templates-layout-latte-Template77ce826f0b6261503af981b0b4b98687.php
\sandbox\vendor\latte\latte\src\Latte\Macros\BlockMacrosRuntime.php
\sandbox\vendor\latte\latte\src\Latte\Helpers.php
\sandbox\vendor\nette\application\src\Application\UI\Form.php
\sandbox\vendor\nette\forms\src\Forms\Form.php
\sandbox\vendor\nette\forms\src\Forms\Container.php
\sandbox\vendor\nette\forms\src\Forms\Controls\CsrfProtection.php
\sandbox\vendor\nette\forms\src\Forms\Controls\HiddenField.php
\sandbox\vendor\nette\forms\src\Forms\Controls\BaseControl.php
\sandbox\vendor\nette\forms\src\Forms\IControl.php
\sandbox\vendor\tracy\tracy\src\Tracy\assets\BlueScreen\bluescreen.phtml

Configuration options


Configuration

apache2handler

Apache Version Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.3
Apache API Version 20120211
Server Administrator admin@example.com
Hostname:Port localhost:0
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 60 - Keep-Alive: 5
Virtual Server Yes
Server Root C:/PHP/Apache24
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_cgi mod_deflate mod_dir mod_env mod_expires mod_filter mod_headers mod_include mod_isapi mod_log_config mod_mime mod_negotiation mod_rewrite mod_setenvif mod_ssl mod_php7
DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
REDIRECT_STATUS 200
HTTP_HOST localhost
HTTP_CONNECTION keep-alive
HTTP_CACHE_CONTROL max-age=0
HTTP_ACCEPT text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
HTTP_UPGRADE_INSECURE_REQUESTS 1
HTTP_USER_AGENT Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36 OPR/35.0.2066.68
HTTP_ACCEPT_ENCODING gzip, deflate, lzma, sdch
HTTP_ACCEPT_LANGUAGE cs-CZ,cs;q=0.8
SystemRoot C:\WINDOWS
COMSPEC C:\WINDOWS\system32\cmd.exe
PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC;.PHP
WINDIR C:\WINDOWS
SERVER_SIGNATURE no value
SERVER_SOFTWARE Apache/2.4.18 (Win32) OpenSSL/1.0.2e PHP/7.0.3
SERVER_NAME localhost
SERVER_ADDR ::1
SERVER_PORT 80
REMOTE_ADDR ::1
DOCUMENT_ROOT W:/
REQUEST_SCHEME http
CONTEXT_PREFIX no value
CONTEXT_DOCUMENT_ROOT W:/
SERVER_ADMIN admin@example.com
SCRIPT_FILENAME /sandbox/www/index.php
REMOTE_PORT 19661
REDIRECT_URL /sandbox/www/sign/in
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /sandbox/www/sign/in
SCRIPT_NAME /sandbox/www/index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /sandbox/www/sign/in HTTP/1.1
Host localhost
Connection keep-alive
Cache-Control max-age=0
Accept text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Upgrade-Insecure-Requests 1
User-Agent Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36 OPR/35.0.2066.68
Accept-Encoding gzip, deflate, lzma, sdch
Accept-Language cs-CZ,cs;q=0.8
HTTP Response Headers
X-Powered-By Nette Framework
X-Frame-Options SAMEORIGIN
Vary X-Requested-With,Accept-Encoding
Content-Encoding gzip
Connection close
Transfer-Encoding chunked
Content-Type text/html; charset=UTF-8

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

calendar

Calendar support enabled

Core

PHP Version 7.0.3
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
arg_separator.input&&
arg_separator.output&&
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
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_logno valueno value
error_prepend_stringno valueno value
error_reporting3276732767
exit_on_timeoutOffOff
expose_phpOnOn
extension_dirC:/PHP/php70/extC:/PHP/php70/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/pear;W:/_libs.;C:/PHP/pear/pear;W:/_libs
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit500M500M
open_basedirno valueno value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size8M8M
precision1414
realpath_cache_size16K16K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_pathno valueno value
serialize_precision1717
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOnOn
unserialize_callback_funcno valueno value
upload_max_filesize2M2M
upload_tmp_dirno valueno value
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.assertions11
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

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

date

date/time support enabled
"Olson" Timezone Database Version 2015.7
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneEurope/PragueEurope/Prague

dom

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

fileinfo

fileinfo support enabled
version 1.0.5
libmagic 522

filter

Input Validation and Filtering enabled
Revision $Id: 1d6a16c754374c8770d8fe485dfc6a2be72a8145 $
DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled
FTPS support enabled

gd

GD Support enabled
GD Version bundled (2.1.0 compatible)
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.6.2
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version 9 compatible
PNG Support enabled
libPNG Version 1.6.20
WBMP Support enabled
XPM Support enabled
libXpm Version 30411
XBM Support enabled
WebP Support enabled
DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning00

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 gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 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
MHASH support Enabled
MHASH API Version Emulated Support

iconv

iconv support enabled
iconv implementation "libiconv"
iconv library version 1.14
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingno valueno value
iconv.output_encodingno valueno value

json

json support enabled
json version 1.4.0

libxml

libXML support active
libXML Compiled Version 2.9.3
libXML Loaded Version 20903
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
oniguruma version 5.9.6
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.6
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
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

mysqli

MysqlI Supportenabled
Client API library version mysqlnd 5.0.12-dev - 20150407 - $Id: f59eb767fe17a6679589b5c076d9fa88d3d4eac0 $
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostlocalhostlocalhost
mysqli.default_port33063306
mysqli.default_pwxxxxxx
mysqli.default_socketno valueno value
mysqli.default_userrootroot
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

mysqlnd

mysqlndenabled
Version mysqlnd 5.0.12-dev - 20150407 - $Id: f59eb767fe17a6679589b5c076d9fa88d3d4eac0 $
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 mysqli,pdo_mysql
mysqlnd statistics
bytes_sent 7533195
bytes_received 139092130
packets_sent 81216
packets_received 5032302
protocol_overhead_in 20129208
protocol_overhead_out 324864
bytes_received_ok_packet 0
bytes_received_eof_packet 0
bytes_received_rset_header_packet 290583
bytes_received_rset_field_meta_packet 0
bytes_received_rset_row_packet 221138
bytes_received_prepare_response_packet 14781168
bytes_received_change_user_packet 123442353
packets_sent_command 38559
packets_received_ok 0
packets_received_eof 0
packets_received_rset_header 32287
packets_received_rset_field_meta 0
packets_received_rset_row 36081
packets_received_prepare_response 299267
packets_received_change_user 4660142
result_set_queries 32285
non_result_set_queries 3781
no_index_used 3780
bad_index_used 0
slow_queries 0
buffered_sets 32285
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 4627857
rows_fetched_from_server_ps 0
rows_buffered_from_client_normal 4627857
rows_buffered_from_client_ps 0
rows_fetched_from_client_normal_buffered 4624947
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 869697
rows_affected_ps 0
rows_skipped_normal 4627857
rows_skipped_ps 0
copy_on_write_saved 0
copy_on_write_performed 0
command_buffer_too_small 0
connect_success 2049
connect_failure 0
connection_reused 0
reconnect 0
pconnect_success 1363
active_connections 18446744073709549567
active_persistent_connections 18446744073709550253
explicit_close 2049
implicit_close 0
disconnect_close 0
in_middle_of_command_close 0
explicit_free_result 32280
implicit_free_result 5
explicit_stmt_close 0
implicit_stmt_close 0
mem_emalloc_count 8774686
mem_emalloc_amount 985308480
mem_ecalloc_count 227723
mem_ecalloc_amount 81831440
mem_erealloc_count 2304452
mem_erealloc_amount 128216645952
mem_efree_count 9009946
mem_efree_amount 1085634494
mem_malloc_count 311024
mem_malloc_amount 15296165
mem_calloc_count 190686
mem_calloc_amount 30669864
mem_realloc_count 0
mem_realloc_amount 0
mem_free_count 513422
mem_free_amount 46118323
mem_estrndup_count 3430
mem_strndup_count 7603
mem_estndup_count 4107
mem_strdup_count 4109
proto_text_fetched_null 0
proto_text_fetched_bit 0
proto_text_fetched_tinyint 54631
proto_text_fetched_short 456799
proto_text_fetched_int24 610517
proto_text_fetched_int 4533579
proto_text_fetched_bigint 3430774
proto_text_fetched_decimal 1045125
proto_text_fetched_float 0
proto_text_fetched_double 230825
proto_text_fetched_date 0
proto_text_fetched_year 0
proto_text_fetched_time 0
proto_text_fetched_datetime 34736
proto_text_fetched_timestamp 0
proto_text_fetched_string 4866532
proto_text_fetched_blob 0
proto_text_fetched_enum 49345
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_json 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 2049
com_init_db 427
com_query 36081
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 2
com_stmt_fetch 0
com_deamon 0
bytes_received_real_data_normal 89268110
bytes_received_real_data_ps 0

odbc

ODBC Supportenabled
Active Persistent Links 0
Active Links 0
ODBC library Win32
ODBCVER 0x0300
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.2e 3 Dec 2015
OpenSSL Header Version OpenSSL 1.0.2f 28 Jan 2016
Openssl default config c:/openssl-1.0.2e-win32/ssl/openssl.cnf
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.38 2015-11-23
PCRE JIT Support enabled
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.jit11
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql, pgsql, sqlite

pdo_mysql

PDO Driver for MySQLenabled
Client API version mysqlnd 5.0.12-dev - 20150407 - $Id: f59eb767fe17a6679589b5c076d9fa88d3d4eac0 $

pdo_pgsql

PDO Driver for PostgreSQLenabled
PostgreSQL(libpq) Version 9.4.5
Module version 7.0.3
Revision $Id: f9b0c62eba234361d62f16fcbaaa120353ab5175 $

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.8.10.2

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: 0ed34dbfcd0576adc02983de692e3ad4873155c3 $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression disabled (install pecl/bz2)
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: 029e4e9ddabf86fbdfdb0e75de52b886108c1b66 $

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_httponlyOffOff
session.cookie_lifetime00
session.cookie_path//
session.cookie_secureOffOff
session.entropy_fileno valueno value
session.entropy_length00
session.gc_divisor10001000
session.gc_maxlifetime14401440
session.gc_probability11
session.hash_bits_per_character55
session.hash_function00
session.lazy_writeOnOn
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_pathC:/PHP/tempC:/PHP/temp
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

SimpleXML

Simplexml supportenabled
Revision $Id: 6152ec0f28d4b50b1fe52255cbc0b28f8d820539 $
Schema 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.10.2
DirectiveLocal ValueMaster Value
sqlite3.extension_dirno valueno value

ssh2

SSH2 supportenabled
extension version 0.13-dev
libssh2 version 1.6.0
banner SSH-2.0-libssh2_1.6.0

standard

Dynamic Library Support enabled
Internal Sendmail Support for Windows enabled
DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.exception00
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.4.0RC3
IDE Key JAMESON$
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_enableOffOff
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.force_display_errorsOffOff
xdebug.force_error_reporting00
xdebug.halt_level00
xdebug.idekeyno valueno value
xdebug.max_nesting_level256256
xdebug.max_stack_frames-1-1
xdebug.overload_var_dumpOnOn
xdebug.profiler_aggregateOffOff
xdebug.profiler_appendOffOff
xdebug.profiler_enableOffOff
xdebug.profiler_enable_triggerOnOn
xdebug.profiler_enable_trigger_valueno valueno value
xdebug.profiler_output_dirw:\w:\
xdebug.profiler_output_namecachegrind.out.%pcachegrind.out.%p
xdebug.remote_addr_headerno valueno value
xdebug.remote_autostartOffOff
xdebug.remote_connect_backOffOff
xdebug.remote_cookie_expire_time36003600
xdebug.remote_enableOnOn
xdebug.remote_handlerdbgpdbgp
xdebug.remote_hostlocalhostlocalhost
xdebug.remote_logno valueno value
xdebug.remote_modereqreq
xdebug.remote_port90009000
xdebug.screamOffOff
xdebug.show_error_traceOffOff
xdebug.show_exception_traceOffOff
xdebug.show_local_varsOffOff
xdebug.show_mem_deltaOffOff
xdebug.trace_enable_triggerOffOff
xdebug.trace_enable_trigger_valueno valueno value
xdebug.trace_format00
xdebug.trace_options00
xdebug.trace_output_dirC:\Windows\TempC:\Windows\Temp
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.3

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

zip

Zip enabled
Extension Version $Id: c31ace1f8dbd6f39bc76c84611423c885aa8e9af $
Zip version 1.13.0
Libzip version 1.0.1

zlib

ZLib Supportenabled
Stream Wrapper compress.zlib://
Stream Filter zlib.inflate, zlib.deflate
Compiled Version 1.2.8
Linked Version 1.2.8
DirectiveLocal ValueMaster Value
zlib.output_compressionOnOn
zlib.output_compression_level-1-1
zlib.output_handlerno valueno value

Additional Modules

Module Name

HTTP request

Headers

Hostlocalhost
Connectionkeep-alive
Cache-Controlmax-age=0
Accepttext/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8
Upgrade-Insecure-Requests1
User-AgentMozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.109 Safari/537.36 OPR/35.0.2066.68
Accept-Encodinggzip, deflate, lzma, sdch
Accept-Languagecs-CZ,cs;q=0.8

$_GET

empty

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Frame-Options: SAMEORIGIN
X-Powered-By: Nette Framework
Vary: X-Requested-With
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding