Warning

fopen(/www/obecbzenov.sk/www/zverejnovanie/temp/btfj.dat): failed to open stream: Permission denied search►

Source file

File: /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Caching/FileJournal.php   Line: 132

125:                    fclose($init);
126:                    if ($writen !== self::INT32_SIZE 2) {
127:                        throw new InvalidStateException("Cannot write journal header.");
128:                    }
129:                }
130:            }
131:    
132:            $this->handle = fopen($this->file, 'r+b');
133:    
134:            if (!$this->handle) {
135:                throw new InvalidStateException("Cannot open journal file '$this->file'.");
136:            }
137:    
138:            if (!flock($this->handleLOCK_SH)) {
139:                throw new InvalidStateException('Cannot acquite shared lock on journal.');

Call stack

  1. Caching/FileJournal.php (132) source   fopen (arguments )

    $filename Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "/www/obecbzenov.sk/www/zverejnovanie/temp/btfj.dat" (50)
    
    $mode Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "r+b" (3)
    
    125:                    fclose($init);
    126:                    if ($writen !== self::INT32_SIZE 2) {
    127:                        throw new InvalidStateException("Cannot write journal header.");
    128:                    }
    129:                }
    130:            }
    131:    
    132:            $this->handle = fopen($this->file, 'r+b');
    133:    
    134:            if (!$this->handle) {
    135:                throw new InvalidStateException("Cannot open journal file '$this->file'.");
    136:            }
    137:    
    138:            if (!flock($this->handleLOCK_SH)) {
    139:                throw new InvalidStateException('Cannot acquite shared lock on journal.');
    
  2. Environment/Configurator.php (325) source   NFileJournal-> __construct (arguments )

    $dir Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "/www/obecbzenov.sk/www/zverejnovanie/temp" (41)
    
    318:    
    319:    
    320:        /**
    321:         * @return ICacheJournal
    322:         */
    323:        public static function createCacheJournal()
    324:        {
    325:            return new NFileJournal(NEnvironment::getVariable('tempDir'));
    326:        }
    327:    
    328:    
    329:    
    330:        /**
    331:         * @return IMailer
    332:         */
    
  3. Utils/Callback.php (97) source   NConfigurator:: createCacheJournal (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
     90:         */
     91:        public function invoke()
     92:        {
     93:            if (!is_callable($this->cb)) {
     94:                throw new InvalidStateException("Callback '$this' is not callable.");
     95:            }
     96:            $args func_get_args();
     97:            return call_user_func_array($this->cb, $args);
     98:        }
     99:    
    100:    
    101:    
    102:        /**
    103:         * Invokes callback with an array of parameters.
    104:         * @param  array
    
  4. Utils/Context.php (136) source   NCallback-> invoke (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
    129:                    }
    130:    
    131:                } else { // factory callback
    132:                    $factory callback($factory);
    133:                    if (!$factory->isCallable()) {
    134:                        throw new InvalidStateException("Cannot instantiate service '$name', handler '$factory' is not callable.");
    135:                    }
    136:                    $service = $factory->invoke($options);
    137:                    if (!is_object($service)) {
    138:                        throw new NAmbiguousServiceException("Cannot instantiate service '$name', value returned by '$factory' is not object.");
    139:                    }
    140:                }
    141:    
    142:                if ($singleton) {
    143:                    $this->registry[$lower] = $service;
    
  5. Environment/Environment.php (324) source   NContext-> getService (arguments )

    $name Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "Nette\Caching\ICacheJournal" (27)
    
    $options Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
    317:         * Gets the service object of the specified type.
    318:         * @param  string service name
    319:         * @param  array  options in case service is not singleton
    320:         * @return object
    321:         */
    322:        public static function getService($name, array $options NULL)
    323:        {
    324:            return self::getContext()->getService($name, $options);
    325:        }
    326:    
    327:    
    328:    
    329:        /**
    330:         * Adds new NEnvironment::get<Service>() method.
    331:         * @param  string  service name
    
  6. Environment/Configurator.php (315) source   NEnvironment:: getService (arguments )

    $name Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "Nette\Caching\ICacheJournal" (27)
    
    308:         * @return ICacheStorage
    309:         */
    310:        public static function createCacheStorage()
    311:        {
    312:            $dir NEnvironment::getVariable('tempDir') . '/cache';
    313:            umask(0000);
    314:            @mkdir($dir0777); // @ - directory may exists
    315:            return new NFileStorage($dir, NEnvironment::getService('Nette\\Caching\\ICacheJournal'));
    316:        }
    317:    
    318:    
    319:    
    320:        /**
    321:         * @return ICacheJournal
    322:         */
    
  7. Utils/Callback.php (97) source   NConfigurator:: createCacheStorage (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
     90:         */
     91:        public function invoke()
     92:        {
     93:            if (!is_callable($this->cb)) {
     94:                throw new InvalidStateException("Callback '$this' is not callable.");
     95:            }
     96:            $args func_get_args();
     97:            return call_user_func_array($this->cb, $args);
     98:        }
     99:    
    100:    
    101:    
    102:        /**
    103:         * Invokes callback with an array of parameters.
    104:         * @param  array
    
  8. Utils/Context.php (136) source   NCallback-> invoke (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
    129:                    }
    130:    
    131:                } else { // factory callback
    132:                    $factory callback($factory);
    133:                    if (!$factory->isCallable()) {
    134:                        throw new InvalidStateException("Cannot instantiate service '$name', handler '$factory' is not callable.");
    135:                    }
    136:                    $service = $factory->invoke($options);
    137:                    if (!is_object($service)) {
    138:                        throw new NAmbiguousServiceException("Cannot instantiate service '$name', value returned by '$factory' is not object.");
    139:                    }
    140:                }
    141:    
    142:                if ($singleton) {
    143:                    $this->registry[$lower] = $service;
    
  9. Environment/Environment.php (324) source   NContext-> getService (arguments )

    $name Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "Nette\Caching\ICacheStorage" (27)
    
    $options Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    NULL
    
    317:         * Gets the service object of the specified type.
    318:         * @param  string service name
    319:         * @param  array  options in case service is not singleton
    320:         * @return object
    321:         */
    322:        public static function getService($name, array $options NULL)
    323:        {
    324:            return self::getContext()->getService($name, $options);
    325:        }
    326:    
    327:    
    328:    
    329:        /**
    330:         * Adds new NEnvironment::get<Service>() method.
    331:         * @param  string  service name
    
  10. Environment/Configurator.php (351) source   NEnvironment:: getService (arguments )

    $name Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "Nette\Caching\ICacheStorage" (27)
    
    344:        /**
    345:         * @return NRobotLoader
    346:         */
    347:        public static function createRobotLoader(array $options NULL)
    348:        {
    349:            $loader = new NRobotLoader;
    350:            $loader->autoRebuild = isset($options['autoRebuild']) ? $options['autoRebuild'] : !NEnvironment::isProduction();
    351:            $loader->setCacheStorage(NEnvironment::getService('Nette\\Caching\\ICacheStorage'));
    352:            if (isset($options['directory'])) {
    353:                $loader->addDirectory($options['directory']);
    354:            } else {
    355:                foreach (array('appDir''libsDir') as $var) {
    356:                    if ($dir NEnvironment::getVariable($varNULL)) {
    357:                        $loader->addDirectory($dir);
    358:                    }
    
  11. Utils/Callback.php (97) source   NConfigurator:: createRobotLoader (arguments )

    $options Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    {
       {
          "0" => "/www/obecbzenov.sk/www/zverejnovanie/app" (40)
          "1" => "/www/obecbzenov.sk/www/zverejnovanie/libs" (41)
       }
    }
    
     90:         */
     91:        public function invoke()
     92:        {
     93:            if (!is_callable($this->cb)) {
     94:                throw new InvalidStateException("Callback '$this' is not callable.");
     95:            }
     96:            $args func_get_args();
     97:            return call_user_func_array($this->cb, $args);
     98:        }
     99:    
    100:    
    101:    
    102:        /**
    103:         * Invokes callback with an array of parameters.
    104:         * @param  array
    
  12. Utils/Context.php (136) source   NCallback-> invoke (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    {
       {
          "0" => "/www/obecbzenov.sk/www/zverejnovanie/app" (40)
          "1" => "/www/obecbzenov.sk/www/zverejnovanie/libs" (41)
       }
    }
    
    129:                    }
    130:    
    131:                } else { // factory callback
    132:                    $factory callback($factory);
    133:                    if (!$factory->isCallable()) {
    134:                        throw new InvalidStateException("Cannot instantiate service '$name', handler '$factory' is not callable.");
    135:                    }
    136:                    $service = $factory->invoke($options);
    137:                    if (!is_object($service)) {
    138:                        throw new NAmbiguousServiceException("Cannot instantiate service '$name', value returned by '$factory' is not object.");
    139:                    }
    140:                }
    141:    
    142:                if ($singleton) {
    143:                    $this->registry[$lower] = $service;
    
  13. Environment/Configurator.php (241) source   NContext-> getService (arguments )

    $name Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "Nette\Loaders\RobotLoader" (25)
    
    234:                foreach($config->mode as $mode => $state) {
    235:                    NEnvironment::setMode($mode$state);
    236:                }
    237:            }
    238:    
    239:            // auto-start services
    240:            foreach ($runServices as $name) {
    241:                $context->getService($name);
    242:            }
    243:    
    244:            return $config;
    245:        }
    246:    
    247:    
    248:    
    
  14. Environment/Environment.php (461) source   NConfigurator-> loadConfig (arguments )

    $file Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "/www/obecbzenov.sk/www/zverejnovanie/app/config.ini" (51)
    
    454:        /**
    455:         * Loads global configuration from file and process it.
    456:         * @param  string|NConfig  file name or NConfig object
    457:         * @return ArrayObject
    458:         */
    459:        public static function loadConfig($file NULL)
    460:        {
    461:            return self::$config = self::getConfigurator()->loadConfig($file);
    462:        }
    463:    
    464:    
    465:    
    466:        /**
    467:         * Returns the global configuration.
    468:         * @param  string key
    
  15. app/bootstrap.php (37) source   NEnvironment:: loadConfig ()

    30:    */
    31:    
    32:    /** zapne Nette\NDebug pro lepsiu vizualizaciu a zpracovanie chyb */
    33:    NDebug::$strictMode TRUE;
    34:    NDebug::enable($mode);
    35:    
    36:    /** nacitanie konfiguracie z config.ini */
    37:    NEnvironment::loadConfig();
    38:    
    39:    /** nastavenie session */
    40:    $session NEnvironment::getSession();
    41:    $session->setSavePath(NEnvironment::getVariable('sessionDir'));
    42:    $session->start();
    43:    
    44:    /** pripojenie k db */
    
  16. zverejnovanie/index.php (29) source   require (arguments )

    #0 Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
    "/www/obecbzenov.sk/www/zverejnovanie/app/bootstrap.php" (54)
    
    22:    // absolute filesystem path to the libraries
    23:    define('LIBS_DIR'WWW_DIR '/libs');
    24:    
    25:    // absolute filesystem path to the temporary files
    26:    define('TEMP_DIR'WWW_DIR '/temp');
    27:    
    28:    // load bootstrap file
    29:    require APP_DIR . '/bootstrap.php';
    

Variables

$dir Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/temp" (41)

Environment

Constants

SITE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"zverejnovanie" (13)
WWW_DIR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie" (36)
APP_DIR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/app" (40)
LIBS_DIR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/libs" (41)
TEMP_DIR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/temp" (41)
NETTE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
TRUE
NETTE_DIR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/libs/Nette" (47)
NETTE_VERSION_ID Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
20000
NETTE_PACKAGE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"PHP 5.2 prefixed" (16)

Included files (32)

/www/obecbzenov.sk/www/zverejnovanie/index.php
/www/obecbzenov.sk/www/zverejnovanie/app/bootstrap.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/loader.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/shortcuts.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/exceptions.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/Object.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Loaders/LimitedScope.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Loaders/AutoLoader.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Loaders/NetteLoader.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Environment/Environment.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/Debug.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugPanel.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/IDebugPanel.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Environment/Configurator.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/Framework.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Config/Config.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Config/ConfigAdapterIni.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Config/IConfigAdapter.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/ArrayTools.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/Iterators/GenericRecursiveIterator.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/Context.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/FreezableObject.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/IFreezable.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/IContext.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Utils/Callback.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Loaders/RobotLoader.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Caching/FileStorage.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Caching/ICacheStorage.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Caching/FileJournal.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Caching/ICacheJournal.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php
/www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/templates/bluescreen.phtml

$_SERVER

USER Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"www-data" (8)
HOME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/var/www" (8)
SCRIPT_NAME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/zverejnovanie/index.php" (24)
REQUEST_URI Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/zverejnovanie/zmluvy/251/?do=info" (34)
QUERY_STRING Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"do=info" (7)
REQUEST_METHOD Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"GET" (3)
SERVER_PROTOCOL Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"HTTP/1.1" (8)
GATEWAY_INTERFACE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"CGI/1.1" (7)
REDIRECT_QUERY_STRING Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"do=info" (7)
REDIRECT_URL Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/zverejnovanie/zmluvy/251/" (26)
REMOTE_PORT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"55210" (5)
SCRIPT_FILENAME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www/zverejnovanie/index.php" (46)
SERVER_ADMIN Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"sysadmin@webex.sk" (17)
CONTEXT_DOCUMENT_ROOT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www" (22)
CONTEXT_PREFIX Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
""
REQUEST_SCHEME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"http" (4)
DOCUMENT_ROOT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/www/obecbzenov.sk/www" (22)
REMOTE_ADDR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"44.197.251.102" (14)
SERVER_PORT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"80" (2)
SERVER_ADDR Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"46.28.107.132" (13)
SERVER_NAME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"obecbzenov.sk" (13)
SERVER_SOFTWARE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"Apache" (6)
SERVER_SIGNATURE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
""
PATH Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
HTTP_HOST Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"obecbzenov.sk" (13)
HTTP_USER_AGENT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"claudebot" (9)
HTTP_ACCEPT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"*/*" (3)
proxy-nokeepalive Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"1"
PHP_ADMIN_VALUE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"open_basedir=/www/obecbzenov.sk:/tmp" (36)
REDIRECT_STATUS Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"200" (3)
REDIRECT_PHP_ADMIN_VALUE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"open_basedir=/www/obecbzenov.sk:/tmp" (36)
FCGI_ROLE Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"RESPONDER" (9)
PHP_SELF Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"/zverejnovanie/index.php" (24)
REQUEST_TIME_FLOAT Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
1710847650.9236
REQUEST_TIME Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
1710847650

HTTP request

Headers

Hostobecbzenov.sk
User-Agentclaudebot
Accept*/*

$_GET

do Deprecated: Function create_function() is deprecated in /www/obecbzenov.sk/www/zverejnovanie/libs/Nette/Debug/DebugHelpers.php on line 372
"info" (4)

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Powered-By: Nette Framework
Content-type: text/html; charset=UTF-8