ParseError
File: ...\x-sandbox\app\presenters\HomepagePresenter.php:15
5: use Nette; 6: use App\Model; 7: 8: 9: class HomepagePresenter extends BasePresenter 10: { 11: 12: public function renderDefault() 13: { 14: $this->template->anyVariable = 'any value' 15: } 16: 17: } 18:
inner-code Nette\Loaders\RobotLoader->Nette\Loaders\{closure}(arguments)
#0 | "\sandbox\app\presenters\HomepagePresenter.php" (55)
|
---|
...\nette\robot-loader\src\RobotLoader\RobotLoader.php:107 source call_user_func(arguments)
97: $this->classes[$type] = 0; 98: } 99: $this->getCache()->save($this->getKey(), $this->classes); 100: } 101: } 102: 103: if (isset($this->classes[$type]['file'])) { 104: if ($this->classes[$type]['orig'] !== $orig) { 105: trigger_error("Case mismatch on class name '$orig', correct name is '{$this->classes[$type]['orig']}'.", E_USER_WARNING); 106: } 107: call_user_func(function ($file) { require $file; }, $this->classes[$type]['file']); 108: } else { 109: $this->missing[$type] = TRUE; 110: } 111: }
$function_name | |
---|---|
$parameters | "\sandbox\app\presenters\HomepagePresenter.php" (55)
|
inner-code Nette\Loaders\RobotLoader->tryLoad(arguments)
$type | "app\presenters\homepagepresenter" (32)
|
---|
inner-code spl_autoload_call(arguments)
$class_name | "App\Presenters\HomepagePresenter" (32)
|
---|
...\src\Bridges\ApplicationDI\ApplicationExtension.php:150 source class_exists(arguments)
140: if (is_file($classFile)) { 141: $this->getContainerBuilder()->addDependency($classFile); 142: $classes = array_merge($classes, array_keys(call_user_func(function ($path) { 143: return require $path; 144: }, $classFile))); 145: } 146: } 147: 148: $presenters = array(); 149: foreach (array_unique($classes) as $class) { 150: if (strpos($class, $config['scanFilter']) !== FALSE && class_exists($class) 151: && ($rc = new \ReflectionClass($class)) && $rc->implementsInterface('Nette\Application\IPresenter') 152: && !$rc->isAbstract() 153: ) { 154: $presenters[] = $rc->getName();
$classname | "App\Presenters\HomepagePresenter" (32)
|
---|
...\src\Bridges\ApplicationDI\ApplicationExtension.php:103 source Nette\Bridges\ApplicationDI\ApplicationExtension->findPresenters()
93: public function beforeCompile() 94: { 95: $container = $this->getContainerBuilder(); 96: $all = array(); 97: 98: foreach ($container->findByType('Nette\Application\IPresenter') as $def) { 99: $all[$def->getClass()] = $def; 100: } 101: 102: $counter = 0; 103: foreach ($this->findPresenters() as $class) { 104: if (empty($all[$class])) { 105: $all[$class] = $container->addDefinition($this->prefix(++$counter))->setClass($class); 106: } 107: }
...\x-sandbox\vendor\nette\di\src\DI\Compiler.php:209 source Nette\Bridges\ApplicationDI\ApplicationExtension->beforeCompile()
199: } 200: 201: 202: /** @internal */ 203: public function generateCode($className, $parentName = NULL) 204: { 205: $this->builder->prepareClassList(); 206: $state = serialize($this->builder->getDefinitions()); 207: 208: foreach ($this->extensions as $extension) { 209: $extension->beforeCompile(); 210: $rc = new \ReflectionClass($extension); 211: $this->dependencies[] = $rc->getFileName(); 212: if ($state !== serialize($this->builder->getDefinitions())) { 213: $this->builder->prepareClassList();
...\x-sandbox\vendor\nette\di\src\DI\Compiler.php:139 source Nette\DI\Compiler->generateCode(arguments)
129: 130: /** 131: * @return Nette\PhpGenerator\ClassType[]|string 132: */ 133: public function compile(array $config = NULL, $className = NULL, $parentName = NULL) 134: { 135: $this->config = $config ?: $this->config; 136: $this->processParameters(); 137: $this->processExtensions(); 138: $this->processServices(); 139: $classes = $this->generateCode($className, $parentName); 140: return func_num_args() 141: ? implode("\n\n\n", $classes) // back compatiblity 142: : $classes; 143: }
$className | NULL
|
---|---|
$parentName | NULL
|
...\nette\bootstrap\src\Bootstrap\Configurator.php:264 source Nette\DI\Compiler->compile()
254: list($class, $args) = is_string($extension) ? array($extension, array()) : $extension; 255: if (class_exists($class)) { 256: $rc = new \ReflectionClass($class); 257: $args = DI\Helpers::expand($args, $this->parameters, TRUE); 258: $compiler->addExtension($name, $args ? $rc->newInstanceArgs($args) : $rc->newInstance()); 259: } 260: } 261: 262: $this->onCompile($this, $compiler); 263: 264: $classes = $compiler->compile(); 265: 266: if (!empty($builder->parameters['container']['parent'])) { 267: $classes[0]->setExtends($builder->parameters['container']['parent']); 268: }
inner-code Nette\Configurator->generateContainer(arguments)
$compiler |
---|
...\vendor\nette\di\src\DI\ContainerLoader.php:111 source call_user_func_array(arguments)
101: } 102: 103: 104: /** 105: * @return array of (code, file[]) 106: */ 107: protected function generate($class, $generator) 108: { 109: $compiler = new Compiler; 110: $compiler->getContainerBuilder()->setClassName($class); 111: $code = call_user_func_array($generator, array(& $compiler)); 112: $code = $code ?: implode("\n\n\n", $compiler->compile()); 113: $files = $compiler->getDependencies(); 114: $files = $files ? array_combine($files, $files) : array(); // workaround for PHP 5.3 array_combine 115: return array(
$function_name | |
---|---|
$parameters |
...\vendor\nette\di\src\DI\ContainerLoader.php:76 source Nette\DI\ContainerLoader->generate(arguments)
66: if (!is_dir($this->tempDirectory)) { 67: @mkdir($this->tempDirectory); // @ - directory may already exist 68: } 69: 70: $handle = fopen("$file.lock", 'c+'); 71: if (!$handle || !flock($handle, LOCK_EX)) { 72: throw new Nette\IOException("Unable to acquire exclusive lock on '$file.lock'."); 73: } 74: 75: if (!is_file($file) || $this->isExpired($file)) { 76: list($toWrite[$file], $toWrite["$file.meta"]) = $this->generate($class, $generator); 77: 78: foreach ($toWrite as $name => $content) { 79: if (file_put_contents("$name.tmp", $content) !== strlen($content) || !rename("$name.tmp", $name)) { 80: @unlink("$name.tmp"); // @ - file may not exist
$class | "Container_6fe119db50" (20)
|
---|---|
$generator |
...\vendor\nette\di\src\DI\ContainerLoader.php:41 source Nette\DI\ContainerLoader->loadFile(arguments)
31: 32: /** 33: * @param mixed 34: * @param callable function (Nette\DI\Compiler $compiler): string|NULL 35: * @return string 36: */ 37: public function load($key, $generator) 38: { 39: $class = $this->getClassName($key); 40: if (!class_exists($class, FALSE)) { 41: $this->loadFile($class, $generator); 42: } 43: return $class; 44: } 45:
$class | "Container_6fe119db50" (20)
|
---|---|
$generator |
...\nette\bootstrap\src\Bootstrap\Configurator.php:217 source Nette\DI\ContainerLoader->load(arguments)
207: * @return DI\Container 208: */ 209: public function createContainer() 210: { 211: $loader = new DI\ContainerLoader( 212: $this->getCacheDirectory() . '/Nette.Configurator', 213: $this->parameters['debugMode'] 214: ); 215: $class = $loader->load( 216: array($this->parameters, $this->files, PHP_VERSION_ID - PHP_RELEASE_VERSION), 217: array($this, 'generateContainer') 218: ); 219: 220: $container = new $class; 221: foreach ($this->services as $name => $service) {
$key | |
---|---|
$generator |
\sandbox\app\bootstrap.php:20 source Nette\Configurator->createContainer()
10: 11: $configurator->setTempDirectory(__DIR__ . '/../temp'); 12: 13: $configurator->createRobotLoader() 14: ->addDirectory(__DIR__) 15: ->register(); 16: 17: $configurator->addConfig(__DIR__ . '/config/config.neon'); 18: $configurator->addConfig(__DIR__ . '/config/config.local.neon'); 19: 20: $container = $configurator->createContainer(); 21: 22: return $container; 23:
\sandbox\www\index.php:6 source require(arguments)
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:
#0 | "\sandbox\app\bootstrap.php" (36)
|
---|
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 | "19681" (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 | 1456249983.618
|
REQUEST_TIME | 1456249983
|
empty
\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\vendor\tracy\tracy\src\Tracy\assets\BlueScreen\bluescreen.phtml |
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 |
Directive | Local Value | Master Value |
---|---|---|
engine | 1 | 1 |
last_modified | 0 | 0 |
xbithack | 0 | 0 |
Variable | Value |
---|---|
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 | 19681 |
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 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 | PHP/7.0.3 |
Content-Encoding | gzip |
Vary | Accept-Encoding |
Connection | close |
Transfer-Encoding | chunked |
Content-Type | text/html; charset=UTF-8 |
BCMath support | enabled |
Directive | Local Value | Master Value |
---|---|---|
bcmath.scale | 0 | 0 |
Calendar support | enabled |
PHP Version | 7.0.3 |
Directive | Local Value | Master Value |
---|---|---|
allow_url_fopen | On | On |
allow_url_include | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
auto_append_file | no value | no value |
auto_globals_jit | On | On |
auto_prepend_file | no value | no value |
browscap | no value | no value |
default_charset | UTF-8 | UTF-8 |
default_mimetype | text/html | text/html |
disable_classes | no value | no value |
disable_functions | no value | no value |
display_errors | On | On |
display_startup_errors | On | On |
doc_root | no value | no value |
docref_ext | no value | no value |
docref_root | no value | no value |
enable_dl | Off | Off |
enable_post_data_reading | On | On |
error_append_string | no value | no value |
error_log | no value | no value |
error_prepend_string | no value | no value |
error_reporting | 32767 | 32767 |
exit_on_timeout | Off | Off |
expose_php | On | On |
extension_dir | C:/PHP/php70/ext | C:/PHP/php70/ext |
file_uploads | On | On |
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_errors | Off | On |
ignore_repeated_errors | Off | Off |
ignore_repeated_source | Off | Off |
ignore_user_abort | Off | Off |
implicit_flush | Off | Off |
include_path | .;C:/PHP/pear/pear;W:/_libs | .;C:/PHP/pear/pear;W:/_libs |
input_encoding | no value | no value |
internal_encoding | no value | no value |
log_errors | Off | On |
log_errors_max_len | 1024 | 1024 |
mail.add_x_header | On | On |
mail.force_extra_parameters | no value | no value |
mail.log | no value | no value |
max_execution_time | 30 | 30 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 60 | 60 |
max_input_vars | 1000 | 1000 |
memory_limit | 500M | 500M |
open_basedir | no value | no value |
output_buffering | 4096 | 4096 |
output_encoding | no value | no value |
output_handler | no value | no value |
post_max_size | 8M | 8M |
precision | 14 | 14 |
realpath_cache_size | 16K | 16K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | Off | Off |
report_memleaks | On | On |
report_zend_debug | On | On |
request_order | GP | GP |
sendmail_from | no value | no value |
sendmail_path | no value | no value |
serialize_precision | 17 | 17 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sql.safe_mode | Off | Off |
sys_temp_dir | no value | no value |
track_errors | On | On |
unserialize_callback_func | no value | no value |
upload_max_filesize | 2M | 2M |
upload_tmp_dir | no value | no value |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | .user.ini | .user.ini |
variables_order | GPCS | GPCS |
windows.show_crt_warning | Off | Off |
xmlrpc_error_number | 0 | 0 |
xmlrpc_errors | Off | Off |
zend.assertions | 1 | 1 |
zend.detect_unicode | On | On |
zend.enable_gc | On | On |
zend.multibyte | Off | Off |
zend.script_encoding | no value | no value |
ctype functions | enabled |
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/time support | enabled |
"Olson" Timezone Database Version | 2015.7 |
Timezone Database | internal |
Default timezone | Europe/Prague |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 31.7667 | 31.7667 |
date.default_longitude | 35.2333 | 35.2333 |
date.sunrise_zenith | 90.583333 | 90.583333 |
date.sunset_zenith | 90.583333 | 90.583333 |
date.timezone | Europe/Prague | Europe/Prague |
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 support | enabled |
version | 1.0.5 |
libmagic | 522 |
Input Validation and Filtering | enabled |
Revision | $Id: 1d6a16c754374c8770d8fe485dfc6a2be72a8145 $ |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
FTP support | enabled |
FTPS support | enabled |
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 |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | 0 | 0 |
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 support | enabled |
iconv implementation | "libiconv" |
iconv library version | 1.14 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | no value | no value |
iconv.internal_encoding | no value | no value |
iconv.output_encoding | no value | no value |
json support | enabled |
json version | 1.4.0 |
libXML support | active |
libXML Compiled Version | 2.9.3 |
libXML Loaded Version | 20903 |
libXML streams | enabled |
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 |
Directive | Local Value | Master Value |
---|---|---|
mbstring.detect_order | no value | no value |
mbstring.encoding_translation | Off | Off |
mbstring.func_overload | 0 | 0 |
mbstring.http_input | no value | no value |
mbstring.http_output | no value | no value |
mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
mbstring.internal_encoding | no value | no value |
mbstring.language | neutral | neutral |
mbstring.strict_detection | Off | Off |
mbstring.substitute_character | no value | no value |
mcrypt support | enabled |
---|---|
mcrypt_filter support | enabled |
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 |
Directive | Local Value | Master Value |
---|---|---|
mcrypt.algorithms_dir | no value | no value |
mcrypt.modes_dir | no value | no value |
MysqlI Support | enabled |
---|---|
Client API library version | mysqlnd 5.0.12-dev - 20150407 - $Id: f59eb767fe17a6679589b5c076d9fa88d3d4eac0 $ |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | On | On |
mysqli.allow_persistent | On | On |
mysqli.default_host | localhost | localhost |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | xxx | xxx |
mysqli.default_socket | no value | no value |
mysqli.default_user | root | root |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
mysqli.rollback_on_cached_plink | Off | Off |
mysqlnd | enabled |
---|---|
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 Support | enabled |
---|---|
Active Persistent Links | 0 |
Active Links | 0 |
ODBC library | Win32 |
ODBCVER | 0x0300 |
Directive | Local Value | Master Value |
---|---|---|
odbc.allow_persistent | On | On |
odbc.check_persistent | On | On |
odbc.default_cursortype | Static cursor | Static cursor |
odbc.default_db | no value | no value |
odbc.default_pw | no value | no value |
odbc.default_user | no value | no value |
odbc.defaultbinmode | return as is | return as is |
odbc.defaultlrl | return up to 4096 bytes | return up to 4096 bytes |
odbc.max_links | Unlimited | Unlimited |
odbc.max_persistent | Unlimited | Unlimited |
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 |
Directive | Local Value | Master Value |
---|---|---|
openssl.cafile | no value | no value |
openssl.capath | no value | no value |
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 8.38 2015-11-23 |
PCRE JIT Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
pcre.backtrack_limit | 1000000 | 1000000 |
pcre.jit | 1 | 1 |
pcre.recursion_limit | 100000 | 100000 |
PDO support | enabled |
---|---|
PDO drivers | mysql, pgsql, sqlite |
PDO Driver for MySQL | enabled |
---|---|
Client API version | mysqlnd 5.0.12-dev - 20150407 - $Id: f59eb767fe17a6679589b5c076d9fa88d3d4eac0 $ |
PDO Driver for PostgreSQL | enabled |
---|---|
PostgreSQL(libpq) Version | 9.4.5 |
Module version | 7.0.3 |
Revision | $Id: f9b0c62eba234361d62f16fcbaaa120353ab5175 $ |
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.8.10.2 |
Phar: PHP Archive support | enabled |
---|---|
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. |
Directive | Local Value | Master Value |
---|---|---|
phar.cache_list | no value | no value |
phar.readonly | On | On |
phar.require_hash | On | On |
Reflection | enabled |
---|---|
Version | $Id: 029e4e9ddabf86fbdfdb0e75de52b886108c1b66 $ |
Session Support | enabled |
Registered save handlers | files user |
Registered serializer handlers | php_serialize php php_binary wddx |
Directive | Local Value | Master Value |
---|---|---|
session.auto_start | Off | Off |
session.cache_expire | 180 | 180 |
session.cache_limiter | nocache | nocache |
session.cookie_domain | no value | no value |
session.cookie_httponly | Off | Off |
session.cookie_lifetime | 0 | 0 |
session.cookie_path | / | / |
session.cookie_secure | Off | Off |
session.entropy_file | no value | no value |
session.entropy_length | 0 | 0 |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 1440 | 1440 |
session.gc_probability | 1 | 1 |
session.hash_bits_per_character | 5 | 5 |
session.hash_function | 0 | 0 |
session.lazy_write | On | On |
session.name | PHPSESSID | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | C:/PHP/temp | C:/PHP/temp |
session.serialize_handler | php | php |
session.upload_progress.cleanup | On | On |
session.upload_progress.enabled | On | On |
session.upload_progress.freq | 1% | 1% |
session.upload_progress.min_freq | 1 | 1 |
session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
session.upload_progress.prefix | upload_progress_ | upload_progress_ |
session.use_cookies | On | On |
session.use_only_cookies | On | On |
session.use_strict_mode | Off | Off |
session.use_trans_sid | 0 | 0 |
Simplexml support | enabled |
---|---|
Revision | $Id: 6152ec0f28d4b50b1fe52255cbc0b28f8d820539 $ |
Schema support | enabled |
SPL support | enabled |
---|---|
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 support | enabled |
---|---|
SQLite3 module version | 0.7-dev |
SQLite Library | 3.8.10.2 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
SSH2 support | enabled |
---|---|
extension version | 0.13-dev |
libssh2 version | 1.6.0 |
banner | SSH-2.0-libssh2_1.6.0 |
Dynamic Library Support | enabled |
Internal Sendmail Support for Windows | enabled |
Directive | Local Value | Master Value |
---|---|---|
assert.active | 1 | 1 |
assert.bail | 0 | 0 |
assert.callback | no value | no value |
assert.exception | 0 | 0 |
assert.quiet_eval | 0 | 0 |
assert.warning | 1 | 1 |
auto_detect_line_endings | 0 | 0 |
default_socket_timeout | 60 | 60 |
from | no value | no value |
url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
user_agent | no value | no value |
Tokenizer Support | enabled |
WDDX Support | enabled |
---|---|
WDDX Session Serializer | enabled |
xdebug support | enabled |
---|---|
Version | 2.4.0RC3 |
IDE Key | JAMESON$ |
Supported protocols | Revision |
---|---|
DBGp - Common DeBuGger Protocol | $Revision: 1.145 $ |
Directive | Local Value | Master Value |
---|---|---|
xdebug.auto_trace | Off | Off |
xdebug.cli_color | 0 | 0 |
xdebug.collect_assignments | Off | Off |
xdebug.collect_includes | On | On |
xdebug.collect_params | 0 | 0 |
xdebug.collect_return | Off | Off |
xdebug.collect_vars | Off | Off |
xdebug.coverage_enable | On | On |
xdebug.default_enable | Off | Off |
xdebug.dump.COOKIE | no value | no value |
xdebug.dump.ENV | no value | no value |
xdebug.dump.FILES | no value | no value |
xdebug.dump.GET | no value | no value |
xdebug.dump.POST | no value | no value |
xdebug.dump.REQUEST | no value | no value |
xdebug.dump.SERVER | no value | no value |
xdebug.dump.SESSION | no value | no value |
xdebug.dump_globals | On | On |
xdebug.dump_once | On | On |
xdebug.dump_undefined | Off | Off |
xdebug.extended_info | On | On |
xdebug.file_link_format | no value | no value |
xdebug.force_display_errors | Off | Off |
xdebug.force_error_reporting | 0 | 0 |
xdebug.halt_level | 0 | 0 |
xdebug.idekey | no value | no value |
xdebug.max_nesting_level | 256 | 256 |
xdebug.max_stack_frames | -1 | -1 |
xdebug.overload_var_dump | On | On |
xdebug.profiler_aggregate | Off | Off |
xdebug.profiler_append | Off | Off |
xdebug.profiler_enable | Off | Off |
xdebug.profiler_enable_trigger | On | On |
xdebug.profiler_enable_trigger_value | no value | no value |
xdebug.profiler_output_dir | w:\ | w:\ |
xdebug.profiler_output_name | cachegrind.out.%p | cachegrind.out.%p |
xdebug.remote_addr_header | no value | no value |
xdebug.remote_autostart | Off | Off |
xdebug.remote_connect_back | Off | Off |
xdebug.remote_cookie_expire_time | 3600 | 3600 |
xdebug.remote_enable | On | On |
xdebug.remote_handler | dbgp | dbgp |
xdebug.remote_host | localhost | localhost |
xdebug.remote_log | no value | no value |
xdebug.remote_mode | req | req |
xdebug.remote_port | 9000 | 9000 |
xdebug.scream | Off | Off |
xdebug.show_error_trace | Off | Off |
xdebug.show_exception_trace | Off | Off |
xdebug.show_local_vars | Off | Off |
xdebug.show_mem_delta | Off | Off |
xdebug.trace_enable_trigger | Off | Off |
xdebug.trace_enable_trigger_value | no value | no value |
xdebug.trace_format | 0 | 0 |
xdebug.trace_options | 0 | 0 |
xdebug.trace_output_dir | C:\Windows\Temp | C:\Windows\Temp |
xdebug.trace_output_name | trace.%c | trace.%c |
xdebug.var_display_max_children | 128 | 128 |
xdebug.var_display_max_data | 512 | 512 |
xdebug.var_display_max_depth | 3 | 3 |
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.3 |
XMLReader | enabled |
XMLWriter | enabled |
Zip | enabled |
Extension Version | $Id: c31ace1f8dbd6f39bc76c84611423c885aa8e9af $ |
Zip version | 1.13.0 |
Libzip version | 1.0.1 |
ZLib Support | enabled |
---|---|
Stream Wrapper | compress.zlib:// |
Stream Filter | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.8 |
Linked Version | 1.2.8 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | On | On |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Module Name |
---|
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 |
empty
empty
empty
X-Powered-By: PHP/7.0.3
Content-Type: text/html; charset=UTF-8
Content-Encoding: gzip
Vary: Accept-Encoding