Nette\Application\BadRequestException #404 search►

Source file

File: .../nette/application/src/Application/UI/Presenter.php:688

678: 679: /** 680: * Throws HTTP error. 681: * @param string 682: * @param int HTTP error code 683: * @return void 684: * @throws Nette\Application\BadRequestException 685: */ 686: public function error($message = NULL, $code = Http\IResponse::S404_NOT_FOUND) 687: { 688: throw new Application\BadRequestException($message, $code); 689: } 690: 691: 692: /**

Call stack

  1. .../app/FrontModule/presenters/PagePresenter.php:106 source  Nette\Application\UI\Presenter->error(arguments)

    96: $this->pages = explode('/', $this->url); 97: $this->actualUrl = $this->pages[count($this->pages)-1]; 98: } 99: } 100: 101: public function getPathError () { 102: if (!empty($this->url)) { 103: foreach (array_reverse($this->pages) as $url) { 104: if (!$this->model->getPages()->where('url = ? OR url'.$this->lang.' = ?', $url, $url)->fetch()) { 105: if ($url == $this->actualUrl) { 106: $this->error('', 404); 107: } 108: else { 109: $this->error('', 301); 110: }
    $message
    ""
    
    $code
    404
    
  2. .../app/FrontModule/presenters/PagePresenter.php:71 source  FrontModule\PagePresenter->getPathError()

    61: $this->lang = $this->request->parameters['lang']; 62: 63: // $this->article = isset($this->params['aid']) ? $this->params['aid'] : null; 64: // $this->category = isset($this->params['cid']) ? $this->params['cid'] : null; 65: $this->tag = isset($this->params['tid']) ? $this->params['tid'] : null; 66: // $this->product = isset($this->params['pid']) ? $this->params['pid'] : null; 67: } 68: 69: public function actionDefault() { 70: $this->getPagesArray(); 71: $this->getPathError(); 72: } 73: 74: public function renderDefault() { 75: $this->getPageLayout();
  3. inner-code FrontModule\PagePresenter->actionDefault()

  4. .../src/Application/UI/PresenterComponent.php:87 source  ReflectionMethod->invokeArgs(arguments)

    77: * @param array 78: * @return bool does method exist? 79: */ 80: protected function tryCall($method, array $params) 81: { 82: $rc = $this->getReflection(); 83: if ($rc->hasMethod($method)) { 84: $rm = $rc->getMethod($method); 85: if ($rm->isPublic() && !$rm->isAbstract() && !$rm->isStatic()) { 86: $this->checkRequirements($rm); 87: $rm->invokeArgs($this, $rc->combineArgs($rm, $params)); 88: return TRUE; 89: } 90: } 91: return FALSE;
    $object
    
    
    $args
    array ()
    
  5. .../nette/application/src/Application/UI/Presenter.php:185 source  Nette\Application\UI\PresenterComponent->tryCall(arguments)

    175: } 176: 177: $this->initGlobalParameters(); 178: $this->checkRequirements($this->getReflection()); 179: $this->startup(); 180: if (!$this->startupCheck) { 181: $class = $this->getReflection()->getMethod('startup')->getDeclaringClass()->getName(); 182: throw new Nette\InvalidStateException("Method $class::startup() or its descendant doesn't call parent::startup()."); 183: } 184: // calls $this->action<Action>() 185: $this->tryCall($this->formatActionMethod($this->action), $this->params); 186: 187: // autoload components 188: foreach ($this->globalParams as $id => $foo) { 189: $this->getComponent($id, FALSE);
    $method
    "actiondefault" (13)
    
    $params
    
    
  6. .../nette/application/src/Application/Application.php:141 source  Nette\Application\UI\Presenter->run(arguments)

    131: { 132: if (count($this->requests) > self::$maxLoop) { 133: throw new ApplicationException('Too many loops detected in application life cycle.'); 134: } 135: 136: $this->requests[] = $request; 137: $this->onRequest($this, $request); 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:
    $request
    
    
  7. .../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
    
    
  8. .../creative/www.nemocnice-horice.cz/app/bootstrap.php:175 source  Nette\Application\Application->run()

    165: } 166: ) 167: )/*,Route::SECURED*/); 168: 169: // $frontRouter[] = new Route('<presenter>/<action>[/<id>]', 'Mailing:view'/*,Route::SECURED*/); 170: } 171: 172: // Run the application! 173: $application->catchExceptions = !$configurator->isDebugMode(); 174: $application->errorPresenter = "Error"; 175: $container->application->run();
  9. .../creative/www.nemocnice-horice.cz/www/index.php:16 source  require(arguments)

    6: // absolute filesystem path to the application root 7: define('APP_DIR', WWW_DIR . '/../app'); 8: 9: // absolute filesystem path to the libraries 10: define('LIBS_DIR', WWW_DIR . '/../libs'); 11: 12: // uncomment this line if you must temporarily take down your site for maintenance 13: // require APP_DIR . '/templates/maintenance.phtml'; 14: 15: // load bootstrap file 16: require APP_DIR . '/bootstrap.php'; 17:
    #0
    "/home/creative/www.nemocnice-horice.cz/app/bootstrap.php" (56)
    

Nette Application

Requests


Presenter


		

Environment

$_SERVER

REDIRECT_STATUS
"200" (3)
HTTP_ACCEPT
"*/*" (3)
HTTP_USER_AGENT
"claudebot" (9)
HTTP_HOST
"www.naslednapece-horice.cz" (26)
PATH
"/usr/local/bin:/usr/bin:/bin" (28)
SERVER_SIGNATURE
"<address>Apache/2.2.22 (Debian) Server at www.naslednapece-horice.cz Port 80</address>
" (87)
SERVER_SOFTWARE
"Apache/2.2.22 (Debian)" (22)
SERVER_NAME
"www.naslednapece-horice.cz" (26)
SERVER_ADDR
"194.12.32.195" (13)
SERVER_PORT
"80" (2)
REMOTE_ADDR
"3.236.111.234" (13)
DOCUMENT_ROOT
"/home/creative/www.nemocnice-horice.cz/www/" (43)
SERVER_ADMIN
"[no address given]" (18)
SCRIPT_FILENAME
"/home/creative/www.nemocnice-horice.cz/www/index.php" (52)
REMOTE_PORT
"60296" (5)
REDIRECT_URL
"/laborator/zadanka-ke-stazeni/" (30)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
""
REQUEST_URI
"/laborator/zadanka-ke-stazeni/" (30)
SCRIPT_NAME
"/index.php" (10)
PHP_SELF
"/index.php" (10)
REQUEST_TIME_FLOAT
1710818337.037
REQUEST_TIME
1710818337

$_SESSION

__NFNette Session

Constants

WWW_DIR
"/home/creative/www.nemocnice-horice.cz/www" (42)
APP_DIR
"/home/creative/www.nemocnice-horice.cz/www/../app" (49)
LIBS_DIR
"/home/creative/www.nemocnice-horice.cz/www/../libs" (50)
TEXY_ALL
TRUE
TEXY_NONE
FALSE
TEXY_CONTENT_MARKUP
"\x17"
TEXY_CONTENT_REPLACED
"\x16"
TEXY_CONTENT_TEXTUAL
"\x15"
TEXY_CONTENT_BLOCK
"\x14"
TEXY_VERSION
"3.0-dev" (7)
TEXY_HEADING_DYNAMIC
1
TEXY_HEADING_FIXED
2
TEXY_CHAR
"A-Za-z\x{C0}-\x{2FF}\x{370}-\x{1EFF}" (36)
TEXY_MARK
"\x14-\x1F" (9)
TEXY_MODIFIER
"(?: *+(?<= |^)\.((?:\((?:\\\)|[^)\n])++\)|\[[^\]\n]++\]|\{[^}\n]++\}){1,3}?))" (77)
TEXY_MODIFIER_H
"(?: *+(?<= |^)\.((?:\((?:\\\)|[^)\n])++\)|\[[^\]\n]++\]|\{[^}\n]++\}|<>|>|=|<){1,4}?))" (86)
TEXY_MODIFIER_HV
"(?: *+(?<= |^)\.((?:\((?:\\\)|[^)\n])++\)|\[[^\]\n]++\]|\{[^}\n]++\}|<>|>|=|<|\^|\-|\_){1,5}?))" (95)
TEXY_IMAGE
"\[\* *+([^\n\x14-\x1F]{1,1000})(?: *+(?<= |^)\.((?:\([^)\n]++\)|\[[^\]\n]++\]|\{[^}\n]++\}){1,3}?))? *+(\*|(?<!<)>|<)\]" (119)
TEXY_LINK_URL
"(?:\[[^\]\n]++\]|(?=[\w/+.~%&?@=_\#$])[^\s\x14-\x1F]{0,1000}?[^:);,.!?\s\x14-\x1F])" (83)
TEXY_LINK
"(?::((?:\[[^\]\n]++\]|(?=[\w/+.~%&?@=_\#$])[^\s\x14-\x1F]{0,1000}?[^:);,.!?\s\x14-\x1F])))" (90)
TEXY_LINK_N
"(?::((?:\[[^\]\n]++\]|(?=[\w/+.~%&?@=_\#$])[^\s\x14-\x1F]{0,1000}?[^:);,.!?\s\x14-\x1F])|:))" (92)
TEXY_EMAIL
"[A-Za-z\x{C0}-\x{2FF}\x{370}-\x{1EFF}][0-9.+_A-Za-z\x{C0}-\x{2FF}\x{370}-\x{1EFF}-]{0,63}@[0-9.+_A-Za-z\x{C0}-\x{2FF}\x{370}-\x{1EFF}\x{ad}-]{1,252}\. ... " (200)
TEXY_URLSCHEME
"[a-z][a-z0-9+.-]{0,20}:" (23)

Included files (157)

/usr/share/php/prepend.php
/home/creative/www.nemocnice-horice.cz/www/index.php
/home/creative/www.nemocnice-horice.cz/app/bootstrap.php
/home/creative/www.nemocnice-horice.cz/vendor/autoload.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/autoload_real.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/ClassLoader.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/autoload_namespaces.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/autoload_psr4.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/autoload_classmap.php
/home/creative/www.nemocnice-horice.cz/vendor/composer/autoload_files.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/shortcuts.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/safe-stream/src/loader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/safe-stream/src/SafeStream/SafeStream.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/deprecated/src/loader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/deprecated/src/Loaders/NetteLoader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/bootstrap/src/Bootstrap/Configurator.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Object.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/CompilerExtension.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/Bar.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/BlueScreen.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/Dumper.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/exceptions.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/IMacro.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/Macros/MacroSet.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/Object.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/ArrayHash.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/ArrayList.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/DateTime.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Image.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/ObjectMixin.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/neon/src/Neon/Exception.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/neon/src/Neon/Entity.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/neon/src/Neon/Neon.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/deprecated/src/shortcuts.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/texy.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/HtmlElement.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/Strict.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/Image.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/Link.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/compatibility.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/Texy.php
/home/creative/www.nemocnice-horice.cz/vendor/texy/texy/src/Texy/Patterns.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/Debugger.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/ILogger.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/DefaultBarPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/IBarPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/FireLogger.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/Helpers.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/Logger.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/caching/src/Caching/Storages/FileStorage.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/caching/src/Caching/IStorage.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/caching/src/Caching/Cache.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/Config/Loader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/Config/Adapters/NeonAdapter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/Config/IAdapter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/neon/src/Neon/Decoder.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Validators.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/exceptions.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/ContainerLoader.php
/home/creative/www.nemocnice-horice.cz/temp/cache/Nette.Configurator/Container_aac49f7cab.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/di/src/DI/Container.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationLatte/ILatteFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/reflection/src/Reflection/AnnotationsParser.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/caching/src/Caching/Storages/FileJournal.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/caching/src/Caching/Storages/IJournal.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/Session.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/RequestFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/UrlScript.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/Url.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Strings.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Callback.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/Request.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/IRequest.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/Response.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/IResponse.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/Helpers.php
/home/creative/www.nemocnice-horice.cz/vendor/vladahejda/livetranslator/LiveTranslator/Panel/Panel.php
/home/creative/www.nemocnice-horice.cz/vendor/vladahejda/livetranslator/LiveTranslator/Translator.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/ITranslator.php
/home/creative/www.nemocnice-horice.cz/vendor/vladahejda/livetranslator/LiveTranslator/Storage/NetteDatabase.php
/home/creative/www.nemocnice-horice.cz/vendor/vladahejda/livetranslator/LiveTranslator/ITranslatorStorage.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Connection.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Drivers/MySqlDriver.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/ISupplementalDriver.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/ResultSet.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/IRowContainer.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/SqlPreprocessor.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Helpers.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Bridges/DatabaseTracy/ConnectionPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Context.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Structure.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/IStructure.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Conventions/StaticConventions.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/IConventions.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/Application.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/PresenterFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/IPresenterFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationDI/PresenterFactoryCallback.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/Routers/RouteList.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/IRouter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationTracy/RoutingPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Random.php
/home/creative/www.nemocnice-horice.cz/vendor/kdyby/nette-session-panel/src/Kdyby/SessionPanel/Diagnostics/SessionPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/janmarek/webloader/WebLoader/Nette/LoaderFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/deprecated/src/Environment.php
/home/creative/www.nemocnice-horice.cz/app/models/Model.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Table/Selection.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Table/IRowContainer.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Table/SqlBuilder.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/Routers/Route.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/Request.php
/home/creative/www.nemocnice-horice.cz/app/FrontModule/presenters/PagePresenter.php
/home/creative/www.nemocnice-horice.cz/app/AdminModule/presenters/SignPresenter.php
/home/creative/www.nemocnice-horice.cz/app/presenters/BasePresenter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/Presenter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/Control.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/PresenterComponent.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/component-model/src/ComponentModel/Container.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/component-model/src/ComponentModel/Component.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/component-model/src/ComponentModel/IComponent.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/component-model/src/ComponentModel/IContainer.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/ISignalReceiver.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/IStatePersistent.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/IRenderable.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/IPresenter.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/security/src/Security/User.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/security/src/Security/IUserStorage.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/UserStorage.php
/home/creative/www.nemocnice-horice.cz/app/models/Authenticator.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/security/src/Security/IAuthenticator.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/security/src/Bridges/SecurityTracy/UserPanel.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/ITemplateFactory.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/mail/src/Mail/SmtpMailer.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/mail/src/Mail/IMailer.php
/home/creative/www.nemocnice-horice.cz/app/models/PagesModel.php
/home/creative/www.nemocnice-horice.cz/app/models/LogsModel.php
/home/creative/www.nemocnice-horice.cz/app/models/ProductsModel.php
/home/creative/www.nemocnice-horice.cz/app/models/OrdersModel.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/PresenterComponentReflection.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/reflection/src/Reflection/ClassType.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Table/ActiveRow.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/Table/IRow.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/database/src/Database/IRow.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/Engine.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/Html.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/utils/src/Utils/IHtmlString.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationLatte/Template.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/UI/ITemplate.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Bridges/ApplicationLatte/Loader.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/Loaders/FileLoader.php
/home/creative/www.nemocnice-horice.cz/vendor/latte/latte/src/Latte/ILoader.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/http/src/Http/SessionSection.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/reflection/src/Reflection/Method.php
/home/creative/www.nemocnice-horice.cz/vendor/nette/application/src/Application/exceptions.php
/home/creative/www.nemocnice-horice.cz/vendor/tracy/tracy/src/Tracy/assets/BlueScreen/bluescreen.phtml

Configuration options


Configuration

apache2handler

Apache Version Apache/2.2.22 (Debian)
Apache API Version 20051115
Server Administrator [no address given]
Hostname:Port www.naslednapece-horice.cz:0
User/Group www-data(33)/33
Max Requests Per Child: 0 - Keep Alive: on - Max Per Connection: 10000
Timeouts Connection: 30 - Keep-Alive: 5
Virtual Server Yes
Server Root /etc/apache2
Loaded Modules core mod_log_config mod_logio mod_version prefork http_core mod_so mod_actions mod_alias mod_auth_basic mod_auth_digest mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dav mod_dav_fs mod_deflate mod_dir mod_env mod_expires mod_fcgid mod_filter mod_headers mod_include mod_info mod_mime mod_php5 mod_proxy mod_proxy_http mod_reqtimeout mod_rewrite mod_ruby mod_setenvif mod_ssl mod_status mod_suexec

DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
REDIRECT_STATUS 200
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_HOST www.naslednapece-horice.cz
PATH /usr/local/bin:/usr/bin:/bin
SERVER_SIGNATURE <address>Apache/2.2.22 (Debian) Server at www.naslednapece-horice.cz Port 80</address>
SERVER_SOFTWARE Apache/2.2.22 (Debian)
SERVER_NAME www.naslednapece-horice.cz
SERVER_ADDR 194.12.32.195
SERVER_PORT 80
REMOTE_ADDR 3.236.111.234
DOCUMENT_ROOT /home/creative/www.nemocnice-horice.cz/www/
SERVER_ADMIN [no address given]
SCRIPT_FILENAME /home/creative/www.nemocnice-horice.cz/www/index.php
REMOTE_PORT 60296
REDIRECT_URL /laborator/zadanka-ke-stazeni/
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /laborator/zadanka-ke-stazeni/
SCRIPT_NAME /index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /laborator/zadanka-ke-stazeni/ HTTP/1.1
accept */*
user-agent claudebot
host www.naslednapece-horice.cz
HTTP Response Headers
X-Powered-By Nette Framework
X-Frame-Options SAMEORIGIN
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
Vary X-Requested-With,Accept-Encoding
Set-Cookie nette-browser=2nt59jsuhl; path=/; httponly
Set-Cookie PHPSESSID=qdpan15p0bum02r5sbt19h0a84; expires=Tue, 02-Apr-2024 02:18:57 GMT; 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

Core

PHP Version 5.4.45-0+deb7u1

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_file/usr/share/php/prepend.php/usr/share/php/prepend.php
browscapno valueno value
default_charsetno valueno value
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionspcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,system,passthru,proc_open,popen,pclose,apache_child_terminate,apache_setenv,proc_close,socket_create,socket_bind,show_source,exec,shell_exec,php_uname,posix_getpwuid,posix_getgrgid,get_current_user,getmyuid,getmygidpcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,system,passthru,proc_open,popen,pclose,apache_child_terminate,apache_setenv,proc_close,socket_create,socket_bind,show_source,exec,shell_exec,php_uname,posix_getpwuid,posix_getgrgid,get_current_user,getmyuid,getmygid
display_errorsOnOff
display_startup_errorsOffOff
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_reporting022519
exit_on_timeoutOffOff
expose_phpOnOn
extension_dir/usr/lib/php5/20100525/usr/lib/php5/20100525
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.:/usr/share/php:/usr/share/pear.:/usr/share/php:/usr/share/pear
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.log/var/log/mail.php.log/var/log/mail.php.log
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time300300
max_input_vars50005000
memory_limit512M512M
open_basedir/home/creative/www.nemocnice-horice.cz/:/tmp:/usr/share/phpno value
output_buffering6553665536
output_handlerno valueno value
post_max_size128M128M
precision1414
realpath_cache_size5M5M
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/local/bin/sendmail-php-logged -t -i/usr/local/bin/sendmail-php-logged -t -i
serialize_precision1717
short_open_tagOnOn
SMTPmail1.hucr.czmail1.hucr.cz
smtp_port2525
sql.safe_modeOffOff
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize128M128M
upload_tmp_dirno valueno value
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
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.26.0
Age 3
Features
AsynchDNS No
Debug Yes
GSS-Negotiate Yes
IDN Yes
IPv6 Yes
Largefile Yes
NTLM Yes
SPNEGO No
SSL Yes
SSPI No
krb4 No
libz Yes
CharConv No
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtmp, rtsp, scp, sftp, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/1.0.1t
ZLib Version 1.2.7
libSSH Version libssh2/1.4.2

date

date/time support enabled
"Olson" Timezone Database Version 0.system
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

dba

DBA support enabled
Supported handlers cdb cdb_make db4 inifile flatfile qdbm

DirectiveLocal ValueMaster Value
dba.default_handlerflatfileflatfile

dom

DOM/XML enabled
DOM/XML API Version 20031129
libxml Version 2.8.0
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: 05041c5f0094cb46d9b516bd624d593b90cc38f9 $
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: ad78b4a085153b8c7f4d6db5dc69df40e969c343 $

DirectiveLocal ValueMaster Value
filter.defaultunsafe_rawunsafe_raw
filter.default_flagsno valueno value

ftp

FTP support enabled

gd

GD Support enabled
GD Version 2.0.36
FreeType Support enabled
FreeType Linkage with freetype
FreeType Version 2.4.9
GIF Read Support enabled
GIF Create Support enabled
JPEG Support enabled
libJPEG Version unknown
PNG Support enabled
libPNG Version 1.2.49
WBMP Support enabled

DirectiveLocal ValueMaster Value
gd.jpeg_ignore_warning00

gettext

GetText Support enabled

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 glibc
iconv library version 2.13

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

imagick

imagick moduleenabled
imagick module version 3.1.0RC1
imagick classes Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator
ImageMagick version ImageMagick 6.7.7-10 2012-08-27 Q16 http://www.imagemagick.org
ImageMagick copyright Copyright (C) 1999-2012 ImageMagick Studio LLC
ImageMagick release date 2012-08-27
ImageMagick number of supported formats: 213
ImageMagick supported formats 3FR, A, AAI, AI, ART, ARW, AVI, AVS, B, BGR, BGRA, BIE, BMP, BMP2, BMP3, BRF, C, CAL, CALS, CANVAS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DJVU, DNG, DOT, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G, G3, GIF, GIF87, GRADIENT, GRAY, GROUP4, HALD, HDR, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, J2C, J2K, JBG, JBIG, JNG, JP2, JPC, JPEG, JPG, JPX, K, K25, KDC, LABEL, M, M2V, M4V, MAC, MAP, MAT, MATTE, MEF, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NRW, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PANGO, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RGB, RGBA, RGBO, RLA, RLE, SCR, SCT, SFW, SGI, SHTML, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VST, WBMP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YCbCr, YCbCrA, YUV

DirectiveLocal ValueMaster Value
imagick.locale_fix00
imagick.progress_monitor00

imap

IMAP c-Client Version 2007f
SSL Support enabled
Kerberos Support enabled

json

json support enabled
json version 1.2.1

libxml

libXML support active
libXML Compiled Version 2.8.0
libXML Loaded Version 20800
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.1

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 arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream

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

memcache

memcache supportenabled
Version 3.0.6
Revision $Revision: 310129 $

DirectiveLocal ValueMaster Value
memcache.allow_failover11
memcache.chunk_size3276832768
memcache.compress_threshold2000020000
memcache.default_port1121111211
memcache.hash_functioncrc32crc32
memcache.hash_strategyconsistentconsistent
memcache.lock_timeout1515
memcache.max_failover_attempts2020
memcache.protocolasciiascii
memcache.redundancy11
memcache.session_redundancy22

memcached

memcached supportenabled
Version 2.0.1
libmemcached version 1.0.8
Session support yes
igbinary support no
json support no

DirectiveLocal ValueMaster Value
memcached.compression_factor1.31.3
memcached.compression_threshold20002000
memcached.compression_typefastlzfastlz
memcached.serializerphpphp
memcached.sess_binary00
memcached.sess_lock_wait150000150000
memcached.sess_locking11
memcached.sess_prefixmemc.sess.key.memc.sess.key.

mhash

MHASH support Enabled
MHASH API Version Emulated Support

mssql

MSSQL Supportenabled
Active Persistent Links 0
Active Links 0
Library version FreeTDS

DirectiveLocal ValueMaster Value
mssql.allow_persistentOnOn
mssql.batchsize00
mssql.charsetno valueno value
mssql.compatability_modeOffOff
mssql.connect_timeout55
mssql.datetimeconvertOnOn
mssql.max_linksUnlimitedUnlimited
mssql.max_persistentUnlimitedUnlimited
mssql.max_procsUnlimitedUnlimited
mssql.min_error_severity1010
mssql.min_message_severity1010
mssql.secure_connectionOffOff
mssql.textlimitServer defaultServer default
mssql.textsizeServer defaultServer default
mssql.timeout6060

mysql

MySQL Supportenabled
Active Persistent Links 0
Active Links 0
Client API version 5.5.24
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib/x86_64-linux-gnu -lmysqlclient_r

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_portno valueno value
mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysql.default_userno valueno value
mysql.max_linksUnlimitedUnlimited
mysql.max_persistentUnlimitedUnlimited
mysql.trace_modeOffOff

mysqli

MysqlI Supportenabled
Client API library version 5.5.24
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
Client API header version 5.5.44
MYSQLI_SOCKET /var/run/mysqld/mysqld.sock

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_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.1t 3 May 2016
OpenSSL Header Version OpenSSL 1.0.1e 11 Feb 2013

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.30 2012-02-04

DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers dblib, mysql, pgsql, sqlite

pdo_dblib

PDO Driver for FreeTDS/Sybase DB-libenabled
Flavour freetds

pdo_mysql

PDO Driver for MySQLenabled
Client API version 5.5.24

DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

pdo_pgsql

PDO Driver for PostgreSQLenabled
PostgreSQL(libpq) Version 9.1.18
Module version 1.0.2
Revision $Id: 8e4cc97fb53f418d98b489c3e9d722e48446e676 $

pdo_sqlite

PDO Driver for SQLite 3.xenabled
SQLite Library 3.7.13

pgsql

PostgreSQL Supportenabled
PostgreSQL(libpq) Version 9.1.18
PostgreSQL(libpq) PostgreSQL 9.1.18 on x86_64-unknown-linux-gnu, compiled by gcc (Debian 4.7.2-5) 4.7.2, 64-bit
Multibyte character support enabled
SSL support enabled
Active Persistent Links 0
Active Links 0

DirectiveLocal ValueMaster Value
pgsql.allow_persistentOnOn
pgsql.auto_reset_persistentOffOff
pgsql.ignore_noticeOffOff
pgsql.log_noticeOffOff
pgsql.max_linksUnlimitedUnlimited
pgsql.max_persistentUnlimitedUnlimited

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.1
Phar API version 1.1.1
SVN revision $Id: ba734629367f9671b25202408d13914fa63d8396 $
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

posix

Revision $Id: 1dfa9997ed76804e53c91e0ce862f3707617b6ed $

Reflection

Reflectionenabled
Version $Id: f6367cdb4e3f392af4a6d441a6641de87c2e50c4 $

session

Session Support enabled
Registered save handlers files user memcache memcached
Registered serializer handlers 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_lifetime12060000
session.cookie_path//
session.cookie_secureOffOff
session.entropy_file/dev/urandom/dev/urandom
session.entropy_length3232
session.gc_divisor10001000
session.gc_maxlifetime12060001440
session.gc_probability00
session.hash_bits_per_character55
session.hash_function00
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/home/creative/www.nemocnice-horice.cz/app/../temp/sessions/var/lib/php5
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_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: 16070fc92ad6f69cebb2d52ad3f02794f833ce39 $
Schema support enabled

snmp

NET-SNMP Support enabled
NET-SNMP Version 5.4.3
PHP SNMP Version 0.1

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
SQLite Library 3.7.13

DirectiveLocal ValueMaster Value
sqlite3.extension_dirno valueno value

standard

Dynamic Library Support enabled
Path to sendmail /usr/local/bin/sendmail-php-logged -t -i

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

sysvmsg

sysvmsg support enabled
Revision $Id: adf1d2d6be849c46eed3c3ee6f1cbebd1448d6e5 $

tidy

Tidy supportenabled
libTidy Release 25 March 2009
Extension Version 2.0 ($Id: 14aff36094bdd63f1d0adee006215e5e553294ea $)

DirectiveLocal ValueMaster Value
tidy.clean_outputno valueno value
tidy.default_configno valueno value

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.8.0

xmlreader

XMLReader enabled

xmlwriter

XMLWriter enabled

zip

Zip enabled
Extension Version $Id: 6c872ebfb022206b0cc2a183c7a388c7b6ad8685 $
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.1.1
Linked Version 1.2.7

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

Additional Modules

Module Name
sysvsem
sysvshm

HTTP request

Headers

accept*/*
user-agentclaudebot
hostwww.naslednapece-horice.cz

$_GET

empty

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Frame-Options: SAMEORIGIN
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
Vary: X-Requested-With
Content-Type: text/html; charset=UTF-8
Set-Cookie: nette-browser=2nt59jsuhl; path=/; httponly
Set-Cookie: PHPSESSID=qdpan15p0bum02r5sbt19h0a84; expires=Tue, 02-Apr-2024 02:18:57 GMT; path=/; HttpOnly