Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given, called in /data/web/virtuals/79066/virtual/www/temp/cache/Nette.Configurator/beb9d14cfda70e964233e1da28b13051.php on line 139 and defined search►
File: .../app/model/Agency.php:19
9: * Manage database table housekeeper 10: * 11: * @author Monsterboy 12: */ 13: class Agency extends Base 14: { 15: protected $tableName = 'agencies'; 16: public $housekeeper; 17: public $database; 18: 19: function __construct(Nette\Database\Context $database,Housekeeper $housekeeper) 20: { 21: $this->database = $database; 22: $this->housekeeper = $housekeeper; 23: }
.../temp/cache/Nette.Configurator/beb9d14cfda70e964233e1da28b13051.php:139 source App\Model\Agency-> __construct (arguments)
129: $service = new App\Model\UserManager($this->getService('database.default.context')); 130: return $service; 131: } 132: 133: 134: /** 135: * @return App\Model\Agency 136: */ 137: public function createServiceAgency() 138: { 139: $service = new App\Model\Agency($this->getService('database.default.context')); 140: return $service; 141: } 142: 143:
$database | Nette\Database\Context #1377 |
---|
inner-code SystemContainer-> createServiceAgency ()
.../vendor/nette/di/src/DI/Container.php:152 source call_user_func_array (arguments)
142: $method = Container::getMethodName($name); 143: if (isset($this->creating[$name])) { 144: throw new Nette\InvalidStateException(sprintf('Circular reference detected for services: %s.', implode(', ', array_keys($this->creating)))); 145: 146: } elseif (!method_exists($this, $method) || $this->getReflection()->getMethod($method)->getName() !== $method) { 147: throw new MissingServiceException("Service '$name' not found."); 148: } 149: 150: $this->creating[$name] = TRUE; 151: try { 152: $service = call_user_func_array(array($this, $method), $args); 153: } catch (\Exception $e) { 154: unset($this->creating[$name]); 155: throw $e; 156: }
$function_name | array (2) |
---|---|
$parameters | array ()
|
.../vendor/nette/di/src/DI/Container.php:102 source Nette\DI\Container-> createService (arguments)
92: 93: /** 94: * Gets the service object by name. 95: * @param string 96: * @return object 97: * @throws MissingServiceException 98: */ 99: public function getService($name) 100: { 101: if (!isset($this->registry[$name])) { 102: $this->registry[$name] = $this->createService($name); 103: } 104: return $this->registry[$name]; 105: } 106:
$name | "agency" (6)
|
---|
.../vendor/nette/di/src/DI/Container.php:294 source Nette\DI\Container-> getService (arguments)
284: public function expand($s) 285: { 286: return Helpers::expand($s, $this->parameters); 287: } 288: 289: 290: /** @deprecated */ 291: public function &__get($name) 292: { 293: $this->error(__METHOD__, 'getService'); 294: $tmp = $this->getService($name); 295: return $tmp; 296: } 297: 298:
$name | "agency" (6)
|
---|
.../app/presenters/AgencyPresenter.php:203 source Nette\DI\Container-> __get (arguments)
193: $userData = $this->getUser()->getIdentity()->getData(); 194: 195: $agencyId = $this->context->agency->editAgency($userData['agency_id'], $values); 196: 197: $this->redirect('Homepage:'); 198: } 199: 200: public function renderHousekeepers() 201: { 202: $data = $userData = $this->getUser()->getIdentity()->getData(); 203: $this->template->results = $this->context->agency->getHousekeepers($data['agency_id']); 204: } 205: } 206:
$name | "agency" (6)
|
---|
inner-code App\Presenters\AgencyPresenter-> renderHousekeepers ()
.../vendor/nette/application/src/Application/UI/PresenterComponent.php:90 source ReflectionMethod-> invokeArgs (arguments)
80: * @param array 81: * @return bool does method exist? 82: */ 83: protected function tryCall($method, array $params) 84: { 85: $rc = $this->getReflection(); 86: if ($rc->hasMethod($method)) { 87: $rm = $rc->getMethod($method); 88: if ($rm->isPublic() && !$rm->isAbstract() && !$rm->isStatic()) { 89: $this->checkRequirements($rm); 90: $rm->invokeArgs($this, $rc->combineArgs($rm, $params)); 91: return TRUE; 92: } 93: } 94: return FALSE;
$object | App\Presenters\AgencyPresenter #bb4a |
---|---|
$args | array ()
|
.../vendor/nette/application/src/Application/UI/Presenter.php:212 source Nette\Application\UI\PresenterComponent-> tryCall (arguments)
202: $this->terminate(); 203: } 204: 205: // SIGNAL HANDLING 206: // calls $this->handle<Signal>() 207: $this->processSignal(); 208: 209: // RENDERING VIEW 210: $this->beforeRender(); 211: // calls $this->render<View>() 212: $this->tryCall($this->formatRenderMethod($this->view), $this->params); 213: $this->afterRender(); 214: 215: // save component tree persistent state 216: $this->saveGlobalState();
$method | "renderhousekeepers" (18)
|
---|---|
$params | array (2) |
.../vendor/nette/application/src/Application/Application.php:149 source Nette\Application\UI\Presenter-> run (arguments)
139: { 140: if (count($this->requests) > self::$maxLoop) { 141: throw new ApplicationException('Too many loops detected in application life cycle.'); 142: } 143: 144: $this->requests[] = $request; 145: $this->onRequest($this, $request); 146: 147: $this->presenter = $this->presenterFactory->createPresenter($request->getPresenterName()); 148: $this->onPresenter($this, $this->presenter); 149: $response = $this->presenter->run($request); 150: 151: if ($response instanceof Responses\ForwardResponse) { 152: $this->processRequest($response->getRequest()); 153:
$request | Nette\Application\Request #4997 |
---|
.../vendor/nette/application/src/Application/Application.php:88 source Nette\Application\Application-> processRequest (arguments)
78: 79: 80: /** 81: * Dispatch a HTTP request to a front controller. 82: * @return void 83: */ 84: public function run() 85: { 86: try { 87: $this->onStartup($this); 88: $this->processRequest($this->createInitialRequest()); 89: $this->onShutdown($this); 90: 91: } catch (\Exception $e) { 92: $this->onError($this, $e);
$request | Nette\Application\Request #4997 |
---|
.../www/index.php:8 source Nette\Application\Application-> run ()
1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: $container = require __DIR__ . '/../app/bootstrap.php'; 7: 8: $container->getService('application')->run(); 9:
$database | Nette\Database\Context #1377 |
---|
array (2)0 => Nette\Application\Request #4997| method private => "GET" (3) | flags private => array (1)1 => Nette\Application\Request #abfd| | secured => FALSE| name private => "Agency" (6) | params private => array (2)| | action => "housekeepers" (12) | | id => NULL| post private => array () | files private => array ()| method private => "FORWARD" (7) | flags private => array () | name private => "Error" (5) | params private => array (3)| | exception => ErrorException #ab9e| post private => array () | files private => array ()| | | message protected => "Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given, called in /data/web/virtuals/79066/virt ... " (248) | | | string private => "exception 'ErrorException' with message 'Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given ... " (2161) | | | code protected => 0 | | | file protected => "/data/web/virtuals/79066/virtual/www/app/model/Agency.php" (57) | | | line protected => 19 | | | trace private => array (13) [ ... ] | | | previous private => NULL | | | severity protected => 4096 | | | context => array (1) [ ... ]| | request => Nette\Application\Request #4997| | | method private => "GET" (3) | | | flags private => array (1) [ ... ] | | | name private => "Agency" (6) | | | params private => array (2) [ ... ] | | | post private => array () | | | files private => array ()| | action => "default" (7)
App\Presenters\ErrorPresenter #40a3authorMsgUser => "user" (4) authorMsgHousekeeper => "housekeeper" (11) invalidLinkMode => 1 onShutdown => NULL request private => Nette\Application\Request #abfd| method private => "FORWARD" (7) | flags private => array () | name private => "Error" (5) | params private => array (3)response private => NULL autoCanonicalize => TRUE absoluteUrls => FALSE globalParams private => array () globalState private => NULL globalStateSinces private => NULL action private => "default" (7) view private => "500" (3) layout private => NULL payload private => stdClass #87e8 signalReceiver private => "" signal private => NULL ajaxMode private => FALSE startupCheck private => TRUE lastCreatedRequest private => NULL lastCreatedRequestFlag private => NULL context private => SystemContainer #21b4| | exception => ErrorException #ab9e| post private => array () | files private => array ()| | | message protected => "Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given, called in /data/web/virtuals/79066/virt ... " (248) | | | string private => "exception 'ErrorException' with message 'Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given ... " (2161) | | | code protected => 0 | | | file protected => "/data/web/virtuals/79066/virtual/www/app/model/Agency.php" (57) | | | line protected => 19 | | | trace private => array (13) [ ... ] | | | previous private => NULL | | | severity protected => 4096 | | | context => array (1) [ ... ]| | request => Nette\Application\Request #4997| | | method private => "GET" (3) | | | flags private => array (1) [ ... ] | | | name private => "Agency" (6) | | | params private => array (2) [ ... ] | | | post private => array () | | | files private => array ()| | action => "default" (7)| meta protected => array (1)httpRequest private => Nette\Http\Request #1a70| | types => array (39)| parameters => array (8)| | | "nette\object" => array (25) [ ... ] | | | "nette\bridges\framework\netteaccessor" => array (1) [ ... ] | | | "nette\caching\storages\ijournal" => array (1) [ ... ] | | | "nette\caching\storages\filejournal" => array (1) [ ... ] | | | "nette\caching\istorage" => array (1) [ ... ] | | | "nette\caching\storages\filestorage" => array (1) [ ... ] | | | "nette\http\requestfactory" => array (1) [ ... ] | | | "nette\http\irequest" => array (1) [ ... ] | | | "nette\http\request" => array (1) [ ... ] | | | "nette\http\iresponse" => array (1) [ ... ] | | | "nette\http\response" => array (1) [ ... ] | | | "nette\http\context" => array (1) [ ... ] | | | "nette\http\session" => array (1) [ ... ] | | | "nette\security\iuserstorage" => array (1) [ ... ] | | | "nette\http\userstorage" => array (1) [ ... ] | | | "nette\security\user" => array (1) [ ... ] | | | "nette\application\application" => array (1) [ ... ] | | | "nette\application\ipresenterfactory" => array (1) [ ... ] | | | "nette\application\presenterfactory" => array (1) [ ... ] | | | "nette\application\irouter" => array (1) [ ... ] | | | "nette\mail\imailer" => array (1) [ ... ] | | | "nette\mail\sendmailmailer" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\ilattefactory" => array (1) [ ... ] | | | "nette\application\ui\itemplatefactory" => array (1) [ ... ] | | | "nette\bridges\applicationlatte\templatefactory" => array (1) [ ... ] | | | "nette\database\connection" => array (1) [ ... ] | | | "nette\database\context" => array (1) [ ... ] | | | "app\model\base" => array (6) [ ... ] | | | "app\model\agency" => array (1) [ ... ] | | | "app\model\datetime" => array (1) [ ... ] | | | "app\model\encodingstring" => array (1) [ ... ] | | | "app\model\housekeeper" => array (1) [ ... ] | | | "app\model\messages" => array (1) [ ... ] | | | "app\model\services" => array (1) [ ... ] | | | "app\model\uploader" => array (1) [ ... ] | | | "nette\security\iauthenticator" => array (1) [ ... ] | | | "app\model\usermanager" => array (1) [ ... ] | | | "app\model\users" => array (1) [ ... ] | | | "nette\di\container" => array (1) [ ... ]| | appDir => "/data/web/virtuals/79066/virtual/www/app" (40) | | wwwDir => "/data/web/virtuals/79066/virtual/www/www" (40) | | debugMode => FALSE | | productionMode => TRUE | | environment => "production" (10) | | consoleMode => FALSE | | container => array (3)| registry private => array (20)| | | class => "SystemContainer" (15) | | | parent => "Nette\DI\Container" (18) | | | accessors => TRUE| | tempDir => "/data/web/virtuals/79066/virtual/www/app/../temp" (48)| | "nette.httpRequestFactory" => Nette\Http\RequestFactory #b8a9| creating private => array ()| | | urlFilters => array (2) [ ... ] | | | binary private => FALSE | | | proxies private => array ()| | httpRequest => Nette\Http\Request #1a70| | | method private => "GET" (3) | | | url private => Nette\Http\UrlScript #870d { ... } | | | query private => array () | | | post private => array () | | | files private => array () | | | cookies private => array (4) [ ... ] | | | headers private => array (9) [ ... ] | | | remoteAddress private => "212.80.67.133" (13) | | | remoteHost private => NULL | | | rawBody private => NULL| | httpResponse => Nette\Http\Response #120d| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | warnOnBuffer => FALSE | | | code private => 500| | session => Nette\Http\Session #a3a4| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #1a70 { ... } | | | response private => Nette\Http\Response #120d { ... }| | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #ed0e| | | file private => "/data/web/virtuals/79066/virtual/www/app/../temp/btfj.dat" (57) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()| | cacheStorage => Nette\Caching\Storages\FileStorage #bcd5| | | dir private => "/data/web/virtuals/79066/virtual/www/temp/cache" (47) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #ed0e { ... } | | | locks private => NULL| | "nette.presenterFactory" => Nette\Application\PresenterFactory #675a| | | caseSensitive => FALSE | | | mapping private => array (2) [ ... ] | | | baseDir private => "/data/web/virtuals/79066/virtual/www/app" (40) | | | cache private => array (2) [ ... ] | | | container private => SystemContainer #21b4 { RECURSION }| | router => Nette\Application\Routers\RouteList #9cb3| | | cachedRoutes private => array (1) [ ... ] | | | module private => "" | | | list private => array (1) [ ... ]| | application => Nette\Application\Application #9aee| | | catchExceptions => TRUE | | | errorPresenter => "Error" (5) | | | onStartup => NULL | | | onShutdown => NULL | | | onRequest => NULL | | | onPresenter => NULL | | | onResponse => NULL | | | onError => NULL | | | requests private => array (2) [ ... ] | | | presenter private => App\Presenters\ErrorPresenter #40a3 { RECURSION } | | | httpRequest private => Nette\Http\Request #1a70 { ... } | | | httpResponse private => Nette\Http\Response #120d { ... } | | | presenterFactory private => Nette\Application\PresenterFactory #675a { ... } | | | router private => Nette\Application\Routers\RouteList #9cb3 { ... }| | container => SystemContainer #21b4 { RECURSION } | | "nette.userStorage" => Nette\Http\UserStorage #7b94| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #a3a4 { ... } | | | sessionSection private => Nette\Http\SessionSection #b87d { ... }| | "database.default" => Nette\Database\Connection #ff85| | | onConnect => NULL | | | onQuery => NULL | | | params private => array (3) [ ... ] | | | options private => array (1) [ ... ] | | | driver private => Nette\Database\Drivers\MySqlDriver #afe0 { ... } | | | preprocessor private => Nette\Database\SqlPreprocessor #cdb5 { ... } | | | pdo private => PDO #cdd3| | "database.default.context" => Nette\Database\Context #1377| | | connection private => Nette\Database\Connection #ff85 { ... } | | | reflection private => Nette\Database\Reflection\DiscoveredReflection #ee6b { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #bcd5 { ... } | | | preprocessor private => NULL| | 29_App_Model_UserManager => App\Model\UserManager #0c90| | | table_name private => "users" (5) | | | column_id private => "user_id" (7) | | | column_name private => "username" (8) | | | column_password_hash private => "password" (8) | | | database private => Nette\Database\Context #1377 { ... }| | user => Nette\Security\User #c624| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => NULL | | | onLoggedOut => NULL | | | storage private => Nette\Http\UserStorage #7b94 { ... } | | | authenticator private => App\Model\UserManager #0c90 { ... } | | | authorizator private => NULL| | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #4d74| | | container private => SystemContainer #21b4 { RECURSION }| | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #c0b4| | | latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #4d74 { ... } | | | httpRequest private => Nette\Http\Request #1a70 { ... } | | | httpResponse private => Nette\Http\Response #120d { ... } | | | user private => Nette\Security\User #c624 { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #bcd5 { ... }| | dateTime => App\Model\DateTime #dd31 | | encodingString => App\Model\EncodingString #7283| | | tableName protected => "klienti" (7)| | housekeeper => App\Model\Housekeeper #6cf5| | | tableName protected => "housekeepers" (12) | | | database => Nette\Database\Context #1377 { ... } | | | dateTime protected => App\Model\DateTime #dd31 | | | encodeString protected => App\Model\EncodingString #7283 { ... } | | | encoding => NULL | | | authorUser => "user" (4) | | | authorHousekeeper => "housekeeper" (11)| method private => "GET" (3) | url private => Nette\Http\UrlScript #870dhttpResponse private => Nette\Http\Response #120d| | scriptPath private => "/" | | scheme private => "http" (4) | | user private => "" | | pass private => "" | | host private => "najdi-hospodyni.cz" (18) | | port private => 80 | | path private => "/agency/housekeepers" (20) | | query private => "" | | fragment private => ""| query private => array () | post private => array () | files private => array () | cookies private => array (4)| | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0" => "" | | "tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel" => "" | | PHPSESSID => "b89dd6adc621b5d7c688ecafc605e2ac" (32) | | "nette-browser" => "ks6iurmoxj" (10)| headers private => array (9)| | cookie => "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0=; tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel=; PHPSESSID=b89dd6adc621b5d7 ... " (192) | | "accept-language" => "cs-CZ,cs;q=0.8,en;q=0.6" (23) | | "accept-encoding" => "gzip, deflate, sdch" (19) | | referer => "http://najdi-hospodyni.cz/housekeeper/messages" (46) | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" (109) | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" (74) | | "cache-control" => "max-age=0" (9) | | connection => "close" (5) | | host => "najdi-hospodyni.cz" (18)| remoteAddress private => "212.80.67.133" (13) | remoteHost private => NULL | rawBody private => NULL| cookieDomain => "" | cookiePath => "/" | cookieSecure => FALSE | cookieHttpOnly => TRUE | warnOnBuffer => FALSE | code private => 500session private => Nette\Http\Session #a3a4| regenerated private => NULL | options private => array (14)presenterFactory private => Nette\Application\PresenterFactory #675a| | gc_maxlifetime => 1209600 | | cookie_lifetime => 1209600 | | referer_check => "" | | use_cookies => 1 | | use_only_cookies => 1 | | use_trans_sid => 0 | | cookie_path => "/" | | cookie_domain => "" | | cookie_secure => FALSE | | cookie_httponly => TRUE | | cache_limiter => NULL | | cache_expire => NULL | | hash_function => NULL | | hash_bits_per_character => NULL| request private => Nette\Http\Request #1a70| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #870d| response private => Nette\Http\Response #120d| | | scriptPath private => "/" | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "najdi-hospodyni.cz" (18) | | | port private => 80 | | | path private => "/agency/housekeepers" (20) | | | query private => "" | | | fragment private => ""| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (4)| | | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0" => "" | | | "tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel" => "" | | | PHPSESSID => "b89dd6adc621b5d7c688ecafc605e2ac" (32) | | | "nette-browser" => "ks6iurmoxj" (10)| | headers private => array (9)| | | cookie => "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0=; tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel=; PHPSESSID=b89dd6adc621b5d7 ... " (192) | | | "accept-language" => "cs-CZ,cs;q=0.8,en;q=0.6" (23) | | | "accept-encoding" => "gzip, deflate, sdch" (19) | | | referer => "http://najdi-hospodyni.cz/housekeeper/messages" (46) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" (109) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" (74) | | | "cache-control" => "max-age=0" (9) | | | connection => "close" (5) | | | host => "najdi-hospodyni.cz" (18)| | remoteAddress private => "212.80.67.133" (13) | | remoteHost private => NULL | | rawBody private => NULL| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | warnOnBuffer => FALSE | | code private => 500| caseSensitive => FALSE | mapping private => array (2)router private => Nette\Application\Routers\RouteList #9cb3| | "*" => array (3)| baseDir private => "/data/web/virtuals/79066/virtual/www/app" (40) | cache private => array (2)| | | 0 => "App\" (4) | | | 1 => "*Module\" (8) | | | 2 => "Presenters\*Presenter" (21)| | Nette => array (3)| | | 0 => "NetteModule\" (12) | | | 1 => "*\" (2) | | | 2 => "*Presenter" (10)| | Agency => array (2)| container private => SystemContainer #21b4| | | 0 => "App\Presenters\AgencyPresenter" (30) | | | 1 => "Agency" (6)| | Error => array (2)| | | 0 => "App\Presenters\ErrorPresenter" (29) | | | 1 => "Error" (5)| | meta protected => array (1)| | | types => array (39) [ ... ]| | parameters => array (8)| | | appDir => "/data/web/virtuals/79066/virtual/www/app" (40) | | | wwwDir => "/data/web/virtuals/79066/virtual/www/www" (40) | | | debugMode => FALSE | | | productionMode => TRUE | | | environment => "production" (10) | | | consoleMode => FALSE | | | container => array (3) [ ... ] | | | tempDir => "/data/web/virtuals/79066/virtual/www/app/../temp" (48)| | registry private => array (20)| | | "nette.httpRequestFactory" => Nette\Http\RequestFactory #b8a9 { ... } | | | httpRequest => Nette\Http\Request #1a70 { ... } | | | httpResponse => Nette\Http\Response #120d { ... } | | | session => Nette\Http\Session #a3a4 { ... } | | | "nette.cacheJournal" => Nette\Caching\Storages\FileJournal #ed0e { ... } | | | cacheStorage => Nette\Caching\Storages\FileStorage #bcd5 { ... } | | | "nette.presenterFactory" => Nette\Application\PresenterFactory #675a { RECURSION } | | | router => Nette\Application\Routers\RouteList #9cb3 { ... } | | | application => Nette\Application\Application #9aee { ... } | | | container => SystemContainer #21b4 { RECURSION } | | | "nette.userStorage" => Nette\Http\UserStorage #7b94 { ... } | | | "database.default" => Nette\Database\Connection #ff85 { ... } | | | "database.default.context" => Nette\Database\Context #1377 { ... } | | | 29_App_Model_UserManager => App\Model\UserManager #0c90 { ... } | | | user => Nette\Security\User #c624 { ... } | | | "nette.latteFactory" => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #4d74 { ... } | | | "nette.templateFactory" => Nette\Bridges\ApplicationLatte\TemplateFactory #c0b4 { ... } | | | dateTime => App\Model\DateTime #dd31 | | | encodingString => App\Model\EncodingString #7283 { ... } | | | housekeeper => App\Model\Housekeeper #6cf5 { ... }| | creating private => array ()| cachedRoutes private => array (1)user private => Nette\Security\User #c624| | "*" => array (1)| module private => "" | list private => array (1)| | | 0 => Nette\Application\Routers\Route #617e { ... }| | 0 => Nette\Application\Routers\Route #617e| | | mask private => "<presenter>/<action>[/<id>]" (27) | | | sequence private => array (11) [ ... ] | | | re private => "#(?:(?P<p0>(?U)[a-z][a-z0-9.-]*)/(?:(?P<p5>(?U)[a-z][a-z0-9-]*)(?:/(?P<p16>(?U)[^/]+))?)?)?/?\z#Aiu" (99) | | | aliases private => array (3) [ ... ] | | | metadata private => array (3) [ ... ] | | | xlat private => array () | | | type private => 3 | | | flags private => 0| guestRole => "guest" (5) | authenticatedRole => "authenticated" (13) | onLoggedIn => NULL | onLoggedOut => NULL | storage private => Nette\Http\UserStorage #7b94templateFactory private => Nette\Bridges\ApplicationLatte\TemplateFactory #c0b4| | namespace private => "" | | sessionHandler private => Nette\Http\Session #a3a4| authenticator private => App\Model\UserManager #0c90| | | regenerated private => NULL | | | options private => array (14) [ ... ] | | | request private => Nette\Http\Request #1a70 { ... } | | | response private => Nette\Http\Response #120d { ... }| | sessionSection private => Nette\Http\SessionSection #b87d| | | session private => Nette\Http\Session #a3a4 { ... } | | | name private => "Nette.Http.UserStorage/" (23) | | | data private => array (9) [ ... ] | | | meta private => array (2) [ ... ] | | | warnOnUndefined => FALSE| | table_name private => "users" (5) | | column_id private => "user_id" (7) | | column_name private => "username" (8) | | column_password_hash private => "password" (8) | | database private => Nette\Database\Context #1377| authorizator private => NULL| | | connection private => Nette\Database\Connection #ff85 { ... } | | | reflection private => Nette\Database\Reflection\DiscoveredReflection #ee6b { ... } | | | cacheStorage private => Nette\Caching\Storages\FileStorage #bcd5 { ... } | | | preprocessor private => NULL| latteFactory private => SystemContainer_Nette_Bridges_ApplicationLatte_ILatteFactoryImpl_nette_latteFactory #4d74template private => Nette\Bridges\ApplicationLatte\Template #526d| | container private => SystemContainer #21b4| httpRequest private => Nette\Http\Request #1a70| | | meta protected => array (1) [ ... ] | | | parameters => array (8) [ ... ] | | | registry private => array (20) [ ... ] | | | creating private => array ()| | method private => "GET" (3) | | url private => Nette\Http\UrlScript #870d| httpResponse private => Nette\Http\Response #120d| | | scriptPath private => "/" | | | scheme private => "http" (4) | | | user private => "" | | | pass private => "" | | | host private => "najdi-hospodyni.cz" (18) | | | port private => 80 | | | path private => "/agency/housekeepers" (20) | | | query private => "" | | | fragment private => ""| | query private => array () | | post private => array () | | files private => array () | | cookies private => array (4)| | | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0" => "" | | | "tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel" => "" | | | PHPSESSID => "b89dd6adc621b5d7c688ecafc605e2ac" (32) | | | "nette-browser" => "ks6iurmoxj" (10)| | headers private => array (9)| | | cookie => "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0=; tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel=; PHPSESSID=b89dd6adc621b5d7 ... " (192) | | | "accept-language" => "cs-CZ,cs;q=0.8,en;q=0.6" (23) | | | "accept-encoding" => "gzip, deflate, sdch" (19) | | | referer => "http://najdi-hospodyni.cz/housekeeper/messages" (46) | | | "user-agent" => "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" (109) | | | accept => "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" (74) | | | "cache-control" => "max-age=0" (9) | | | connection => "close" (5) | | | host => "najdi-hospodyni.cz" (18)| | remoteAddress private => "212.80.67.133" (13) | | remoteHost private => NULL | | rawBody private => NULL| | cookieDomain => "" | | cookiePath => "/" | | cookieSecure => FALSE | | cookieHttpOnly => TRUE | | warnOnBuffer => FALSE | | code private => 500| user private => Nette\Security\User #c624| | guestRole => "guest" (5) | | authenticatedRole => "authenticated" (13) | | onLoggedIn => NULL | | onLoggedOut => NULL | | storage private => Nette\Http\UserStorage #7b94| cacheStorage private => Nette\Caching\Storages\FileStorage #bcd5| | | namespace private => "" | | | sessionHandler private => Nette\Http\Session #a3a4 { ... } | | | sessionSection private => Nette\Http\SessionSection #b87d { ... }| | authenticator private => App\Model\UserManager #0c90| | | table_name private => "users" (5) | | | column_id private => "user_id" (7) | | | column_name private => "username" (8) | | | column_password_hash private => "password" (8) | | | database private => Nette\Database\Context #1377 { ... }| | authorizator private => NULL| | dir private => "/data/web/virtuals/79066/virtual/www/temp/cache" (47) | | useDirs private => TRUE | | journal private => Nette\Caching\Storages\FileJournal #ed0e| | | file private => "/data/web/virtuals/79066/virtual/www/app/../temp/btfj.dat" (57) | | | handle private => NULL | | | lastNode private => 2 | | | processIdentifier private => NULL | | | nodeCache private => array () | | | nodeChanged private => array () | | | toCommit private => array () | | | deletedLinks private => array () | | | dataNodeFreeSpace private => array ()| | locks private => NULL| latte private => Latte\Engine #e24ainvalidSnippets private => array () snippetMode => NULL params protected => array (3)| | onCompile => array (1)| file private => NULL | params private => array (14)| | | 0 => Closure #b227| | parser private => NULL | | compiler private => NULL | | loader private => Nette\Bridges\ApplicationLatte\Loader #7314| | | | file => "/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php" (110) | | | | line => 69 | | | | variables => array (2) [ ... ] | | | | parameters => "$latte" (6)| | | presenter private => App\Presenters\ErrorPresenter #40a3 { RECURSION }| | contentType private => "html" (4) | | tempDirectory private => "/data/web/virtuals/79066/virtual/www/app/../temp/cache/latte" (60) | | autoRefresh private => FALSE | | filters private => array (38)| | | "" => array () | | | bytes => "Latte\Runtime\Filters::bytes" (28) | | | capitalize => "Latte\Runtime\Filters::capitalize" (33) | | | datastream => "Latte\Runtime\Filters::dataStream" (33) | | | date => "Latte\Runtime\Filters::date" (27) | | | escapecss => "Latte\Runtime\Filters::escapeCss" (32) | | | escapehtml => "Latte\Runtime\Filters::escapeHtml" (33) | | | escapehtmlcomment => "Latte\Runtime\Filters::escapeHtmlComment" (40) | | | escapeical => "Latte\Runtime\Filters::escapeICal" (33) | | | escapejs => "Latte\Runtime\Filters::escapeJs" (31) | | | escapeurl => "rawurlencode" (12) | | | escapexml => "Latte\Runtime\Filters::escapeXML" (32) | | | firstupper => "Latte\Runtime\Filters::firstUpper" (33) | | | implode => "implode" (7) | | | indent => "Latte\Runtime\Filters::indent" (29) | | | lower => "Latte\Runtime\Filters::lower" (28) | | | nl2br => "Latte\Runtime\Filters::nl2br" (28) | | | number => "number_format" (13) | | | repeat => "str_repeat" (10) | | | replace => "Latte\Runtime\Filters::replace" (30) | | | replacere => "Latte\Runtime\Filters::replaceRe" (32) | | | safeurl => "Latte\Runtime\Filters::safeUrl" (30) | | | strip => "Latte\Runtime\Filters::strip" (28) | | | striptags => "strip_tags" (10) | | | substr => "Latte\Runtime\Filters::substring" (32) | | | trim => "Latte\Runtime\Filters::trim" (27) | | | truncate => "Latte\Runtime\Filters::truncate" (31) | | | upper => "Latte\Runtime\Filters::upper" (28) | | | url => "rawurlencode" (12) | | | normalize => "Nette\Utils\Strings::normalize" (30) | | | toascii => "Nette\Utils\Strings::toAscii" (28) | | | webalize => "Nette\Utils\Strings::webalize" (29) | | | padleft => "Nette\Utils\Strings::padLeft" (28) | | | padright => "Nette\Utils\Strings::padRight" (29) | | | reverse => "Nette\Utils\Strings::reverse" (28) | | | null => Closure #2de9| | baseTemplateClass private => "Latte\Template" (14)| | | | file => "/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php" (110) | | | | line => 81 | | | | variables => array () | | | | parameters => ""| | | length => Closure #8a8a| | | | file => "/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php" (110) | | | | line => 82 | | | | variables => array () | | | | parameters => "$var" (4)| | | modifydate => Closure #08a9| | | | file => "/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php" (110) | | | | line => 85 | | | | variables => array () | | | | parameters => "$time, $delta, $unit" (20)| | _control => App\Presenters\ErrorPresenter #40a3 { RECURSION } | | control => App\Presenters\ErrorPresenter #40a3 { RECURSION } | | _presenter => App\Presenters\ErrorPresenter #40a3 { RECURSION } | | presenter => App\Presenters\ErrorPresenter #40a3 { RECURSION } | | user => Nette\Security\User #c624| | | guestRole => "guest" (5) | | | authenticatedRole => "authenticated" (13) | | | onLoggedIn => NULL | | | onLoggedOut => NULL | | | storage private => Nette\Http\UserStorage #7b94 { ... } | | | authenticator private => App\Model\UserManager #0c90 { ... } | | | authorizator private => NULL| | netteHttpResponse => Nette\Http\Response #120d| | | cookieDomain => "" | | | cookiePath => "/" | | | cookieSecure => FALSE | | | cookieHttpOnly => TRUE | | | warnOnBuffer => FALSE | | | code private => 500| | netteCacheStorage => Nette\Caching\Storages\FileStorage #bcd5| | | dir private => "/data/web/virtuals/79066/virtual/www/temp/cache" (47) | | | useDirs private => TRUE | | | journal private => Nette\Caching\Storages\FileJournal #ed0e { ... } | | | locks private => NULL| | baseUrl => "http://najdi-hospodyni.cz" (25) | | baseUri => "http://najdi-hospodyni.cz" (25) | | basePath => "" | | flashes => array () | | loggedIn => TRUE | | userId => 13 | | userData => array (34)| | | housekeeper_id => 13 | | | name => NULL | | | surname => NULL | | | email => "test@test.cz" (12) | | | phone => NULL | | | show_phone => NULL | | | street => NULL | | | city => NULL | | | premise => NULL | | | street_number => NULL | | | neighborhood => NULL | | | sublocality_level_1 => NULL | | | area_level_1 => NULL | | | area_level_2 => NULL | | | postcode => NULL | | | country => NULL | | | lat => NULL | | | lng => NULL | | | description => NULL | | | description_service => NULL | | | price_from => NULL | | | price_to => NULL | | | fulltime => NULL | | | parttime => NULL | | | date_birth => NULL | | | experience_year => NULL | | | location_distance => NULL | | | registrated => Nette\Utils\DateTime #178c { ... } | | | updated => NULL | | | last_online => Nette\Utils\DateTime #5fcf { ... } | | | active => NULL | | | role => "manager" (7) | | | facebook_id => NULL | | | agency_id => 4| exception => ErrorException #ab9ecomponents private => array () cloning private => NULL parent private => NULL name private => "Error" (5) monitors private => array () templateFactory private => NULL| | message protected => "Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given, called in /data/web/virtuals/79066/virt ... " (248) | | string private => "exception 'ErrorException' with message 'Argument 2 passed to App\Model\Agency::__construct() must be an instance of App\Model\Housekeeper, none given ... " (2161) | | code protected => 0 | | file protected => "/data/web/virtuals/79066/virtual/www/app/model/Agency.php" (57) | | line protected => 19 | | trace private => array (13)| request => Nette\Application\Request #4997| | | 0 => array (6) [ ... ] | | | 1 => array (6) [ ... ] | | | 2 => array (4) [ ... ] | | | 3 => array (4) [ ... ] | | | 4 => array (6) [ ... ] | | | 5 => array (6) [ ... ] | | | 6 => array (6) [ ... ] | | | 7 => array (4) [ ... ] | | | 8 => array (6) [ ... ] | | | 9 => array (6) [ ... ] | | | 10 => array (6) [ ... ] | | | 11 => array (6) [ ... ] | | | 12 => array (6) [ ... ]| | previous private => NULL | | severity protected => 4096 | | context => array (1)| | | database => Nette\Database\Context #1377 { ... }| | method private => "GET" (3) | | flags private => array (1)| action => "default" (7)| | | secured => FALSE| | name private => "Agency" (6) | | params private => array (2)| | | action => "housekeepers" (12) | | | id => NULL| | post private => array () | | files private => array ()
TMPDIR | "/data/web/virtuals/79066/virtual/tmp" (36)
|
---|---|
PHPRC | "/data/web/php54" (15)
|
PHP_INI_SCAN_DIR | "/data/web/virtuals/79066" (24)
|
PATH | "/sbin:/usr/sbin:/bin:/usr/bin" (29)
|
PWD | "/data/web/virtuals/79066" (24)
|
SHLVL | "0"
|
PHP_FCGI_MAX_REQUESTS | "10000" (5)
|
SCRIPT_NAME | "/www/index.php" (14)
|
REQUEST_URI | "/agency/housekeepers" (20)
|
QUERY_STRING | ""
|
REQUEST_METHOD | "GET" (3)
|
SERVER_PROTOCOL | "HTTP/1.1" (8)
|
GATEWAY_INTERFACE | "CGI/1.1" (7)
|
REDIRECT_URL | "/www/agency/housekeepers" (24)
|
REMOTE_PORT | "62792" (5)
|
SCRIPT_FILENAME | "/data/web/virtuals/79066/virtual/www/www/index.php" (50)
|
SERVER_ADMIN | "hosting@wedos.com" (17)
|
DOCUMENT_ROOT | "/data/web/virtuals/79066/virtual/www" (36)
|
REMOTE_ADDR | "212.80.67.133" (13)
|
SERVER_PORT | "80" (2)
|
SERVER_ADDR | "46.28.105.113" (13)
|
SERVER_NAME | "najdi-hospodyni.cz" (18)
|
SERVER_SOFTWARE | "Apache" (6)
|
SERVER_SIGNATURE | ""
|
HTTP_COOKIE | "tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0=; tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel=; PHPSESSID=b89dd6adc621b5d7 ... " (192)
|
HTTP_ACCEPT_LANGUAGE | "cs-CZ,cs;q=0.8,en;q=0.6" (23)
|
HTTP_ACCEPT_ENCODING | "gzip, deflate, sdch" (19)
|
HTTP_REFERER | "http://najdi-hospodyni.cz/housekeeper/messages" (46)
|
HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" (109)
|
HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8" (74)
|
HTTP_CACHE_CONTROL | "max-age=0" (9)
|
HTTP_CONNECTION | "close" (5)
|
HTTP_HOST | "najdi-hospodyni.cz" (18)
|
REDIRECT_STATUS | "200" (3)
|
REDIRECT_REDIRECT_STATUS | "200" (3)
|
FCGI_ROLE | "RESPONDER" (9)
|
PHP_SELF | "/www/index.php" (14)
|
REQUEST_TIME_FLOAT | 1426026042.0964
|
REQUEST_TIME | 1426026042
|
argv | array ()
|
argc | 0
|
__NF | Nette Session |
---|---|
RF | array (7) |
Nette.Http.UserStorage/ | array (9) |
---|
/data/web/virtuals/79066/virtual/www/www/index.php |
/data/web/virtuals/79066/virtual/www/app/bootstrap.php |
/data/web/virtuals/79066/virtual/www/vendor/autoload.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/autoload_real.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/ClassLoader.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/autoload_namespaces.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/autoload_psr4.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/autoload_classmap.php |
/data/web/virtuals/79066/virtual/www/vendor/composer/autoload_files.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/shortcuts.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/nette/Nette/loader.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/nette/Nette/Loaders/NetteLoader.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/bootstrap/src/Bootstrap/Configurator.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/Object.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/di/src/DI/CompilerExtension.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/Bar.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/BlueScreen.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/Dumper.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/exceptions.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/IMacro.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/Macros/MacroSet.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/Object.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/ArrayHash.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/ArrayList.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/DateTime.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/Image.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/ObjectMixin.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/neon/src/Neon/Exception.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/neon/src/Neon/Entity.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/neon/src/Neon/Neon.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/nette/Nette/shortcuts.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/bootstrap/src/Bridges/Framework/TracyBridge.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/Debugger.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/nette/Nette/Framework.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/DefaultBarPanel.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/IBarPanel.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/FireLogger.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/Helpers.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/Logger.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/robot-loader/src/RobotLoader/RobotLoader.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/caching/src/Caching/Storages/FileStorage.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/caching/src/Caching/IStorage.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/caching/src/Caching/Cache.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/di/src/DI/ContainerFactory.php |
/data/web/virtuals/79066/virtual/www/temp/cache/Nette.Configurator/beb9d14cfda70e964233e1da28b13051.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/di/src/DI/Container.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/ILatteFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/reflection/src/Reflection/ClassType.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/reflection/src/Reflection/Method.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/Session.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/RequestFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/UrlScript.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/Url.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/Strings.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Utils/Callback.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/Request.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/IRequest.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/Response.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/IResponse.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/security/src/Security/Identity.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/security/src/Security/IIdentity.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/safe-stream/src/SafeStream/SafeStream.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/reflection/src/Reflection/AnnotationsParser.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/caching/src/Caching/Storages/FileJournal.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/caching/src/Caching/Storages/IJournal.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/nette/Nette/deprecated/Environment.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/Application.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/PresenterFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/IPresenterFactory.php |
/data/web/virtuals/79066/virtual/www/app/router/RouterFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/Routers/RouteList.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/IRouter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/Routers/Route.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationTracy/RoutingPanel.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/Request.php |
/data/web/virtuals/79066/virtual/www/app/presenters/AgencyPresenter.php |
/data/web/virtuals/79066/virtual/www/app/presenters/BasePresenter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/Presenter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/Control.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/PresenterComponent.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/component-model/src/ComponentModel/Container.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/component-model/src/ComponentModel/Component.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/component-model/src/ComponentModel/IComponent.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/component-model/src/ComponentModel/IContainer.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/ISignalReceiver.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/IStatePersistent.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/IRenderable.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/IPresenter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/di/src/DI/Helpers.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/reflection/src/Reflection/Parameter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/security/src/Security/User.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/security/src/Security/IUserStorage.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/UserStorage.php |
/data/web/virtuals/79066/virtual/www/app/model/UserManager.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/security/src/Security/IAuthenticator.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Context.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Connection.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Reflection/DiscoveredReflection.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/IReflection.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/ITemplateFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/TemplateFactory.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/reflection/src/Reflection/Property.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/PresenterComponentReflection.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/component-model/src/ComponentModel/RecursiveComponentIterator.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/utils/src/Iterators/Filter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/http/src/Http/SessionSection.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/Engine.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/Compiler.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/Template.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/UI/ITemplate.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Bridges/ApplicationLatte/Loader.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/Loaders/FileLoader.php |
/data/web/virtuals/79066/virtual/www/vendor/latte/latte/src/Latte/ILoader.php |
/data/web/virtuals/79066/virtual/www/app/model/Housekeeper.php |
/data/web/virtuals/79066/virtual/www/app/model/Base.php |
/data/web/virtuals/79066/virtual/www/app/model/DateTime.php |
/data/web/virtuals/79066/virtual/www/app/model/EncodingString.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Table/Selection.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Table/IRowContainer.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/IRowContainer.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Table/SqlBuilder.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/Drivers/MySqlDriver.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/ISupplementalDriver.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/ResultSet.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Database/SqlPreprocessor.php |
/data/web/virtuals/79066/virtual/www/app/model/Agency.php |
/data/web/virtuals/79066/virtual/www/app/presenters/ErrorPresenter.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/Responses/ForwardResponse.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/IResponse.php |
/data/web/virtuals/79066/virtual/www/vendor/nette/application/src/Application/exceptions.php |
/data/web/virtuals/79066/virtual/www/vendor/tracy/tracy/src/Tracy/templates/bluescreen.phtml |
/data/web/virtuals/79066/virtual/www/vendor/nette/database/src/Bridges/DatabaseTracy/ConnectionPanel.php |
BCMath support | enabled |
Directive | Local Value | Master Value |
---|---|---|
bcmath.scale | 0 | 0 |
BZip2 Support | Enabled |
Stream Wrapper support | compress.bzip2:// |
Stream Filter support | bzip2.decompress, bzip2.compress |
BZip2 Version | 1.0.5, 10-Dec-2007 |
Calendar support | enabled |
Directive | Local Value | Master Value |
---|---|---|
cgi.check_shebang_line | 1 | 1 |
cgi.discard_path | 0 | 0 |
cgi.fix_pathinfo | 1 | 1 |
cgi.force_redirect | 1 | 1 |
cgi.nph | 0 | 0 |
cgi.redirect_status_env | no value | no value |
cgi.rfc2616_headers | 0 | 0 |
fastcgi.logging | 1 | 1 |
PHP Version | 5.4.37 |
Directive | Local Value | Master Value |
---|---|---|
allow_url_fopen | On | On |
allow_url_include | Off | Off |
always_populate_raw_post_data | Off | Off |
arg_separator.input | & | & |
arg_separator.output | & | & |
asp_tags | Off | Off |
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 | no value | no value |
default_mimetype | text/html | text/html |
disable_classes | APCIterator | APCIterator |
disable_functions | apache_child_terminate,apache_setenv,define_syslog_variables,diskfreespace,disk_free_space,disk_total_space,dl,escapeshellarg,escapeshellcmd,exec,leak,link,openlog,passthru,pfsockopen,popen,posix_getgrnam,posix_getpgid,posix_getpwuid,posix_getpwnam,posix_getrlimit,posix_initgroups,posix_kill,posix_mkfifo,posix_mknod,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,putenv,readlink,register_tick_function,set_time_limit,shell_exec,show_source,symlink,syslog,system,apc_add,apc_bin_dump,apc_bin_dumpfile,apc_bin_load,apc_bin_loadfile,apc_cas,apc_clear_cache,apc_compile_file,apc_dec,apc_define_constants,apc_delete_file,apc_delete,apc_exists,apc_fetch,apc_inc,apc_load_constants,apc_store | apache_child_terminate,apache_setenv,define_syslog_variables,diskfreespace,disk_free_space,disk_total_space,dl,escapeshellarg,escapeshellcmd,exec,leak,link,openlog,passthru,pfsockopen,popen,posix_getgrnam,posix_getpgid,posix_getpwuid,posix_getpwnam,posix_getrlimit,posix_initgroups,posix_kill,posix_mkfifo,posix_mknod,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,putenv,readlink,register_tick_function,set_time_limit,shell_exec,show_source,symlink,syslog,system,apc_add,apc_bin_dump,apc_bin_dumpfile,apc_bin_load,apc_bin_loadfile,apc_cas,apc_clear_cache,apc_compile_file,apc_dec,apc_define_constants,apc_delete_file,apc_delete,apc_exists,apc_fetch,apc_inc,apc_load_constants,apc_store |
display_errors | Off | On |
display_startup_errors | Off | Off |
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 | /data/web/virtuals/79066/virtual/www/log/php_error.log | no value |
error_prepend_string | no value | no value |
error_reporting | 0 | 24567 |
exit_on_timeout | Off | Off |
expose_php | Off | Off |
extension_dir | /usr/local/php/CURRENT-54/extensions/ | /usr/local/php/CURRENT-54/extensions/ |
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 | .:/data/web/virtuals/79066/virtual | .:/data/web/virtuals/79066/virtual |
log_errors | Off | Off |
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 | 90 | 90 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 30 | 30 |
max_input_vars | 10000 | 10000 |
memory_limit | 128M | 128M |
open_basedir | /data/web/virtuals/79066/virtual | /data/web/virtuals/79066/virtual |
output_buffering | 0 | 0 |
output_handler | no value | no value |
post_max_size | 32M | 32M |
precision | 14 | 14 |
realpath_cache_size | 16K | 16K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | On | On |
report_memleaks | On | On |
report_zend_debug | On | On |
request_order | no value | no value |
sendmail_from | no value | no value |
sendmail_path | /data/web/mlimit/sendmail.sh | /data/web/mlimit/sendmail.sh |
serialize_precision | 17 | 17 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sql.safe_mode | Off | Off |
track_errors | Off | Off |
unserialize_callback_func | no value | no value |
upload_max_filesize | 32M | 32M |
upload_tmp_dir | /data/web/virtuals/79066/virtual/tmp | /data/web/virtuals/79066/virtual/tmp |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | no value | no value |
variables_order | EGPCS | EGPCS |
xmlrpc_error_number | 0 | 0 |
xmlrpc_errors | Off | Off |
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.19.7 |
Age | 3 |
Features | |
AsynchDNS | No |
Debug | No |
GSS-Negotiate | Yes |
IDN | Yes |
IPv6 | Yes |
Largefile | Yes |
NTLM | Yes |
SPNEGO | No |
SSL | Yes |
SSPI | No |
krb4 | No |
libz | Yes |
CharConv | No |
Protocols | tftp, ftp, telnet, dict, ldap, ldaps, http, file, https, ftps, scp, sftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | NSS/3.16.2.3 Basic ECC |
ZLib Version | 1.2.3 |
libSSH Version | libssh2/1.4.2 |
date/time support | enabled |
"Olson" Timezone Database Version | 2014.8 |
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.7.6 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
Regex Library | Bundled library enabled |
EXIF Support | enabled |
EXIF Version | 1.4 $Id: 7f95ff43ea7cc9a2c41a912863ed70069c0e34c5 $ |
Supported EXIF Version | 0220 |
Supported filetypes | JPEG,TIFF |
Directive | Local Value | Master Value |
---|---|---|
exif.decode_jis_intel | JIS | JIS |
exif.decode_jis_motorola | JIS | JIS |
exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
exif.encode_jis | no value | no value |
exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
fileinfo support | enabled |
version | 1.0.5 |
Input Validation and Filtering | enabled |
Revision | $Id: ad78b4a085153b8c7f4d6db5dc69df40e969c343 $ |
Directive | Local Value | Master Value |
---|---|---|
filter.default | unsafe_raw | unsafe_raw |
filter.default_flags | no value | no value |
FTP support | enabled |
GD Support | enabled |
GD Version | bundled (2.1.0 compatible) |
FreeType Support | enabled |
FreeType Linkage | with freetype |
FreeType Version | 2.3.11 |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.2.49 |
WBMP Support | enabled |
XBM Support | enabled |
Directive | Local Value | Master Value |
---|---|---|
gd.jpeg_ignore_warning | 0 | 0 |
GetText Support | enabled |
gmp support | enabled |
GMP version | 4.3.1 |
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 support | enabled |
iconv implementation | glibc |
iconv library version | 2.12 |
Directive | Local Value | Master Value |
---|---|---|
iconv.input_encoding | ISO-8859-1 | ISO-8859-1 |
iconv.internal_encoding | ISO-8859-1 | ISO-8859-1 |
iconv.output_encoding | ISO-8859-1 | ISO-8859-1 |
imagick module | enabled |
---|---|
imagick module version | 3.1.2 |
imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
ImageMagick version | ImageMagick 6.5.4-7 2014-02-10 Q16 OpenMP http://www.imagemagick.org |
ImageMagick copyright | Copyright (C) 1999-2009 ImageMagick Studio LLC |
ImageMagick release date | 2014-02-10 |
ImageMagick number of supported formats: | 199 |
ImageMagick supported formats | A, AI, ART, ARW, AVI, AVS, B, BGR, BMP, BMP2, BMP3, BRF, BRG, C, CALS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPS, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G, G3, GBR, GIF, GIF87, GRADIENT, GRAY, GRB, HALD, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, JNG, JP2, JPC, JPEG, JPG, JPX, K, K25, KDC, LABEL, M, M2V, M4V, MAP, MAT, MATTE, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RBG, 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 |
Directive | Local Value | Master Value |
---|---|---|
imagick.locale_fix | 0 | 0 |
imagick.progress_monitor | 0 | 0 |
IMAP c-Client Version | 2007e |
SSL Support | enabled |
Kerberos Support | enabled |
json support | enabled |
json version | 1.2.1 |
libXML support | active |
libXML Compiled Version | 2.7.6 |
libXML Loaded Version | 20706 |
libXML streams | enabled |
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) backtrack check | On |
Multibyte regex (oniguruma) version | 4.7.1 |
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 | pass | pass |
mbstring.http_output | pass | pass |
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 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 |
Directive | Local Value | Master Value |
---|---|---|
mcrypt.algorithms_dir | no value | no value |
mcrypt.modes_dir | no value | no value |
MHASH support | Enabled |
MHASH API Version | Emulated Support |
MySQL Support | enabled |
---|---|
Active Persistent Links | 0 |
Active Links | 0 |
Client API version | 5.6.17 |
MYSQL_MODULE_TYPE | external |
MYSQL_SOCKET | /tmp/mysql.sock |
MYSQL_INCLUDE | -I/usr/local/mysql/CURRENT/include |
MYSQL_LIBS | -L/usr/local/mysql/CURRENT/lib64 -lmysqlclient |
Directive | Local Value | Master Value |
---|---|---|
mysql.allow_local_infile | On | On |
mysql.allow_persistent | On | On |
mysql.connect_timeout | 60 | 60 |
mysql.default_host | no value | no value |
mysql.default_password | no value | no value |
mysql.default_port | no value | no value |
mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
mysql.default_user | no value | no value |
mysql.max_links | Unlimited | Unlimited |
mysql.max_persistent | Unlimited | Unlimited |
mysql.trace_mode | Off | Off |
MysqlI Support | enabled |
---|---|
Client API library version | 5.6.17 |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Client API header version | 5.6.17 |
MYSQLI_SOCKET | /tmp/mysql.sock |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | On | On |
mysqli.allow_persistent | On | On |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | no value | no value |
mysqli.default_user | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
OpenSSL support | enabled |
OpenSSL Library Version | OpenSSL 1.0.1e-fips 11 Feb 2013 |
OpenSSL Header Version | OpenSSL 1.0.1e-fips 11 Feb 2013 |
PCRE (Perl Compatible Regular Expressions) Support | enabled |
PCRE Library Version | 8.32 2012-11-30 |
Directive | Local Value | Master Value |
---|---|---|
pcre.backtrack_limit | 1000000 | 1000000 |
pcre.recursion_limit | 100000 | 100000 |
PDO support | enabled |
---|---|
PDO drivers | mysql, sqlite |
PDO Driver for MySQL | enabled |
---|---|
Client API version | 5.6.17 |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.7.7.1 |
Phar: PHP Archive support | enabled |
---|---|
Phar EXT version | 2.0.1 |
Phar API version | 1.1.1 |
SVN revision | $Id: ec823514107160b7e6fabc519594012657a2db91 $ |
Phar-based phar archives | enabled |
Tar-based phar archives | enabled |
ZIP-based phar archives | enabled |
gzip compression | enabled |
bzip2 compression | enabled |
Native 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 |
Revision | $Id: 1dfa9997ed76804e53c91e0ce862f3707617b6ed $ |
Reflection | enabled |
---|---|
Version | $Id: f6367cdb4e3f392af4a6d441a6641de87c2e50c4 $ |
Session Support | enabled |
Registered save handlers | files user |
Registered serializer handlers | 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 | On | Off |
session.cookie_lifetime | 1209600 | 0 |
session.cookie_path | / | / |
session.cookie_secure | Off | Off |
session.entropy_file | /dev/urandom | /dev/urandom |
session.entropy_length | 32 | 32 |
session.gc_divisor | 100 | 100 |
session.gc_maxlifetime | 1209600 | 1440 |
session.gc_probability | 1 | 1 |
session.hash_bits_per_character | 4 | 4 |
session.hash_function | 0 | 0 |
session.name | PHPSESSID | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /data/web/virtuals/79066/virtual/session | /data/web/virtuals/79066/virtual/session |
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_trans_sid | 0 | 0 |
Simplexml support | enabled |
---|---|
Revision | $Id: 16070fc92ad6f69cebb2d52ad3f02794f833ce39 $ |
Schema support | enabled |
Soap Client | enabled |
Soap Server | enabled |
Directive | Local Value | Master Value |
---|---|---|
soap.wsdl_cache | 1 | 1 |
soap.wsdl_cache_dir | /tmp | /tmp |
soap.wsdl_cache_enabled | 1 | 1 |
soap.wsdl_cache_limit | 5 | 5 |
soap.wsdl_cache_ttl | 86400 | 86400 |
Sockets 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 |
SQLite Library | 3.7.7.1 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
Dynamic Library Support | enabled |
Path to sendmail | /data/web/mlimit/sendmail.sh |
Directive | Local Value | Master Value |
---|---|---|
assert.active | 1 | 1 |
assert.bail | 0 | 0 |
assert.callback | no value | no value |
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,form=,fieldset= | a=href,area=href,frame=src,form=,fieldset= |
user_agent | no value | no value |
sysvmsg support | enabled |
Revision | $Id: adf1d2d6be849c46eed3c3ee6f1cbebd1448d6e5 $ |
Tokenizer Support | enabled |
WDDX Support | enabled |
---|---|
WDDX Session Serializer | enabled |
XCache Version | 3.2.0 |
Modules Built | cacher |
Directive | Local Value | Master Value |
---|---|---|
xcache.coredump_directory | no value | no value |
xcache.disable_on_crash | Off | Off |
xcache.experimental | Off | Off |
xcache.test | Off | Off |
XCache Cacher Module | enabled |
Readonly Protection | disabled |
Page Request Time | 2015-03-10 23:20:42 |
Cache Init Time | 2015-03-10 23:16:56 |
Cache Instance Id | 26396 |
Opcode Cache | enabled, 2,147,483,648 bytes, 8 split(s), with 8192 slots each |
Variable Cache | disabled |
Shared Memory Schemes | mmap |
Directive | Local Value | Master Value |
---|---|---|
xcache.admin.enable_auth | On | On |
xcache.allocator | bestfit | bestfit |
xcache.cacher | On | On |
xcache.count | 8 | 8 |
xcache.gc_interval | 0 | 0 |
xcache.mmap_path | /dev/zero | /dev/zero |
xcache.readonly_protection | Off | Off |
xcache.shm_scheme | mmap | mmap |
xcache.size | 2G | 2G |
xcache.slots | 8K | 8K |
xcache.stat | On | On |
xcache.ttl | 0 | 0 |
xcache.var_allocator | bestfit | bestfit |
xcache.var_count | 1 | 1 |
xcache.var_gc_interval | 120 | 120 |
xcache.var_maxttl | 0 | 0 |
xcache.var_namespace | no value | no value |
xcache.var_namespace_mode | 0 | 0 |
xcache.var_size | 0 | 0 |
xcache.var_slots | 8K | 8K |
xcache.var_ttl | 0 | 0 |
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.7.6 |
XMLReader | enabled |
core library version | xmlrpc-epi v. 0.51 |
php extension version | 0.51 |
author | Dan Libby |
homepage | http://xmlrpc-epi.sourceforge.net |
open sourced by | Epinions.com |
XMLWriter | enabled |
XSL | enabled |
libxslt Version | 1.1.26 |
libxslt compiled against libxml Version | 2.7.6 |
EXSLT | enabled |
libexslt Version | 1.1.26 |
Zip | enabled |
Extension Version | $Id: abc21c7f1559e732dba6db94c69ecf638ae5fa3f $ |
Zip version | 1.11.0 |
Libzip version | 0.10.1 |
ZLib Support | enabled |
---|---|
Stream Wrapper | compress.zlib:// |
Stream Filter | zlib.inflate, zlib.deflate |
Compiled Version | 1.2.3 |
Linked Version | 1.2.3 |
Directive | Local Value | Master Value |
---|---|---|
zlib.output_compression | Off | Off |
zlib.output_compression_level | -1 | -1 |
zlib.output_handler | no value | no value |
Module Name |
---|
ionCube Loader |
sysvsem |
sysvshm |
Cookie | tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0=; tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel=; PHPSESSID=b89dd6adc621b5d7c688ecafc605e2ac; nette-browser=ks6iurmoxj |
---|---|
Accept-Language | cs-CZ,cs;q=0.8,en;q=0.6 |
Accept-Encoding | gzip, deflate, sdch |
Referer | http://najdi-hospodyni.cz/housekeeper/messages |
User-Agent | Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36 |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8 |
Cache-Control | max-age=0 |
Connection | close |
Host | najdi-hospodyni.cz |
empty
empty
tracy-debug-panel-Nette-Bridges-DatabaseTracy-ConnectionPanel-0 | ""
|
---|---|
tracy-debug-panel-Nette-Bridges-SecurityTracy-UserPanel | ""
|
PHPSESSID | "b89dd6adc621b5d7c688ecafc605e2ac" (32)
|
nette-browser | "ks6iurmoxj" (10)
|
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
Set-Cookie: PHPSESSID=b89dd6adc621b5d7c688ecafc605e2ac; expires=Tue, 24-Mar-2015 22:20:42 GMT; path=/; httponly
Set-Cookie: nette-browser=ks6iurmoxj; path=/; httponly
X-Frame-Options: SAMEORIGIN
X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
Vary: X-Requested-With
Vary: X-Requested-With