PDOException #2002

SQLSTATE[HY000] [2002] Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) search►

Source file

File: .../libs/Nette/Database/Connection.php   Line: 53

43:     /** @var Nette\Caching\Cache */ 44:     private $cache; 45: 46:     /** @var array of function(Statement $result, $params); Occurs after query is executed */ 47:     public $onQuery; 48: 49: 50: 51:     public function __construct($dsn$username NULL$password NULL, array $options NULL$driverClass NULL) 52:     { 53:         parent::__construct($this->dsn = $dsn, $username, $password, $options); 54:         $this->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION); 55:         $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Nette\Database\Statement', array($this))); 56: 57:         $driverClass $driverClass ?: 'Nette\Database\Drivers\\' ucfirst(str_replace('sql''Sql'$this->getAttribute(PDO::ATTR_DRIVER_NAME))) . 'Driver';

Call stack

  1. .../libs/Nette/Database/Connection.php:53 source   PDO-> __construct (arguments )

    $dsn
    "mysql:host=localhost;dbname=designuj_cz_touchware" (49)
    
    $username
    "designuj.cz" (11)
    
    $passwd
    "honzoDesignuj0" (14)
    
    $options
    NULL
    
    43:     /** @var Nette\Caching\Cache */ 44:     private $cache; 45: 46:     /** @var array of function(Statement $result, $params); Occurs after query is executed */ 47:     public $onQuery; 48: 49: 50: 51:     public function __construct($dsn$username NULL$password NULL, array $options NULL$driverClass NULL) 52:     { 53:         parent::__construct($this->dsn = $dsn, $username, $password, $options); 54:         $this->setAttribute(PDO::ATTR_ERRMODEPDO::ERRMODE_EXCEPTION); 55:         $this->setAttribute(PDO::ATTR_STATEMENT_CLASS, array('Nette\Database\Statement', array($this))); 56: 57:         $driverClass $driverClass ?: 'Nette\Database\Drivers\\' ucfirst(str_replace('sql''Sql'$this->getAttribute(PDO::ATTR_DRIVER_NAME))) . 'Driver';
  2. .../temp/cache/_Nette.Configurator/_-5d3d7df3a1ef4e265397a2ebe43b2aa5.php:178 source   Nette\Database\Connection-> __construct (arguments )

    $dsn
    "mysql:host=localhost;dbname=designuj_cz_touchware" (49)
    
    $username
    "designuj.cz" (11)
    
    $password
    "honzoDesignuj0" (14)
    
    168:     { 169:         return $this; 170:     } 171: 172: 173:     /** 174:      * @return Nette\Database\Connection 175:      */ 176:     protected function createServiceDatabase() 177:     { 178:         $service = new Nette\Database\Connection('mysql:host=localhost;dbname=designuj_cz_touchware', 'designuj.cz', 'honzoDesignuj0'); 179:         return $service; 180:     } 181: 182:
  3. .../libs/Nette/DI/Container.php:155 source   SystemContainer-> createServiceDatabase ()

    145:             } else { 146:                 $this->creating[$name] = TRUE; 147:                 try { 148:                     $service $factory($this); 149:                 } catch (\Exception $e) {} 150:             } 151: 152:         } elseif (method_exists($this$factory Container::getMethodName($name)) && $this->getReflection()->getMethod($factory)->getName() === $factory) { 153:             $this->creating[$name] = TRUE; 154:             try { 155:                 $service = $this->$factory(); 156:             } catch (\Exception $e) {} 157: 158:         } else { 159:             throw new MissingServiceException("Service '$name' not found.");
  4. .../libs/Nette/DI/Container.php:222 source   Nette\DI\Container-> getService (arguments )

    $name
    "database" (8)
    
    212:     public function getByType($class$need TRUE) 213:     { 214:         $lower ltrim(strtolower($class), '\\'); 215:         if (!isset($this->classes[$lower])) { 216:             if ($need) { 217:                 throw new MissingServiceException("Service of type $class not found."); 218:             } 219:         } elseif ($this->classes[$lower] === FALSE) { 220:             throw new MissingServiceException("Multiple services of type $class found."); 221:         } else { 222:             return $this->getService($this->classes[$lower]); 223:         } 224:     } 225: 226:
  5. .../libs/Nette/DI/Helpers.php:123 source   Nette\DI\Container-> getByType (arguments )

    $class
    "Nette\Database\Connection" (25)
    
    $need
    FALSE
    
    113:                 $res[$num] = $arguments[$num]; 114:                 unset($arguments[$num]); 115:                 $optCount 0; 116: 117:             } elseif (array_key_exists($parameter->getName(), $arguments)) { 118:                 $res[$num] = $arguments[$parameter->getName()]; 119:                 unset($arguments[$parameter->getName()]); 120:                 $optCount 0; 121: 122:             } elseif ($class $parameter->getClassName()) { // has object type hint 123:                 $res[$num] = $container->getByType($class, FALSE); 124:                 if ($res[$num] === NULL) { 125:                     if ($parameter->allowsNull()) { 126:                         $optCount++; 127:                     } else {
  6. .../libs/Nette/DI/Container.php:264 source   Nette\DI\Helpers:: autowireArguments (arguments )

    $method
    {
       name => "__construct" (11)
       class => "BasePresenter" (13)
    }
    
    $arguments
    array(0) 
    
    $container
    {
       {
          "nette\object" => FALSE
          "nette\caching\storages\ijournal" => "nette.cacheJournal" (18)
          "nette\caching\storages\filejournal" => "nette.cacheJournal" (18)
          "nette\caching\istorage" => "cacheStorage" (12)
          "nette\caching\storages\filestorage" => "cacheStorage" (12)
          "nette\http\requestfactory" => "nette.httpRequestFactory" (24)
          "nette\http\irequest" => "httpRequest" (11)
          "nette\http\request" => "httpRequest" (11)
          "nette\http\iresponse" => "httpResponse" (12)
          "nette\http\response" => "httpResponse" (12)
          "nette\http\context" => "nette.httpContext" (17)
          "nette\http\session" => "session" (7)
          "nette\security\iuserstorage" => "nette.userStorage" (17)
          "nette\http\userstorage" => "nette.userStorage" (17)
          "nette\security\user" => "user" (4)
          "nette\application\application" => "application" (11)
          "nette\application\ipresenterfactory" => "nette.presenterFactory" (22)
          "nette\application\presenterfactory" => "nette.presenterFactory" (22)
          "nette\arraylist" => "router" (6)
          traversable => "router" (6)
          iteratoraggregate => "router" (6)
          countable => "router" (6)
          arrayaccess => "router" (6)
          "nette\application\irouter" => "router" (6)
          "nette\application\routers\routelist" => "router" (6)
          "nette\mail\imailer" => "nette.mailer" (12)
          "nette\mail\sendmailmailer" => "nette.mailer" (12)
          "nette\di\nestedaccessor" => "nette.database" (14)
          "markette\gopay\api\gopaysoap" => "gopay.driver" (12)
          "markette\gopay\service" => "gopay.service" (13)
          "sec\security\facebookauthenticator" => "facebookAuthenticator" (21)
          basefacebook => "facebook" (8)
          facebook => "facebook" (8)
          "nette\security\iauthenticator" => "authenticator" (13)
          "sec\security\authenticator" => "authenticator" (13)
          "nette\security\permission" => "authorizator" (12)
          "nette\security\iauthorizator" => "authorizator" (12)
          "sec\security\acl" => "authorizator" (12)
          pdo => "database" (8)
          "nette\database\connection" => "database" (8)
          "nette\freezableobject" => "container" (9)
          "nette\ifreezable" => "container" (9)
          "nette\di\icontainer" => "container" (9)
          "nette\di\container" => "container" (9)
       }
       meta => array(0) 
       {
          appDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app" (62)
          wwwDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/www" (62)
          debugMode => TRUE
          productionMode => FALSE
          environment => "production" (10)
          consoleMode => FALSE
          {
             class => "SystemContainer" (15)
             parent => "Nette\DI\Container" (18)
          }
          tempDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app/../temp" (70)
          authAction => "Auth:login" (10)
          {
             salt => "zb1g7IHt1I" (10)
          }
          {
             driver => "mysql" (5)
             host => "localhost" (9)
             dbname => "designuj_cz_touchware" (21)
             user => "designuj.cz" (11)
             password => "honzoDesignuj0" (14)
             profiler => TRUE
          }
          {
             appId => ""
             secret => ""
          }
       }
       {
          appDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app" (62)
          wwwDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/www" (62)
          debugMode => TRUE
          productionMode => FALSE
          environment => "production" (10)
          consoleMode => FALSE
          {
             class => "SystemContainer" (15)
             parent => "Nette\DI\Container" (18)
          }
          tempDir => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app/../temp" (70)
          authAction => "Auth:login" (10)
          {
             salt => "zb1g7IHt1I" (10)
          }
          {
             driver => "mysql" (5)
             host => "localhost" (9)
             dbname => "designuj_cz_touchware" (21)
             user => "designuj.cz" (11)
             password => "honzoDesignuj0" (14)
             profiler => TRUE
          }
          {
             appId => ""
             secret => ""
          }
       }
       {
          {
             urlFilters => array(2) { ... }
             encoding private => "UTF-8" (5)
          }
          {
             method private => "GET" (3)
             url private => Nette\Http\UrlScript(10) { ... }
             query private => array(0) 
             post private => array(0) 
             files private => array(0) 
             cookies private => array(0) 
             headers private => array(4) { ... }
             remoteAddress private => "3.89.116.152" (12)
             remoteHost private => NULL
          }
          {
             cookieDomain => ""
             cookiePath => "/"
             cookieSecure => FALSE
             cookieHttpOnly => TRUE
             code private => 200
          }
          {
             regenerated private => NULL
             options private => array(14) { ... }
             request private => Nette\Http\Request(9) { ... }
             response private => Nette\Http\Response(5) { ... }
          }
          {
             cachedRoutes private => NULL
             module private => ""
             list private => array(2) [ ... ]
          }
          {
             caseSensitive => FALSE
             baseDir private => "/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app" (62)
             cache private => array(1) { ... }
             container private => SystemContainer(8) { *RECURSION* }
          }
          {
             catchExceptions => FALSE
             errorPresenter => NULL
             onStartup => NULL
             onShutdown => NULL
             onRequest => NULL
             onResponse => NULL
             onError => NULL
             allowedMethods => NULL
             requests private => array(1) [ ... ]
             presenter private => NULL
             httpRequest private => Nette\Http\Request(9) { ... }
             httpResponse private => Nette\Http\Response(5) { ... }
             presenterFactory private => Nette\Application\PresenterFactory(4) { ... }
             router private => Nette\Application\Routers\RouteList(3) { ... }
          }
       }
       factories private => array(0) 
       creating private => array(0) 
       frozen private => FALSE
    }
    
    254:      * @return object 255:      * @throws Nette\InvalidArgumentException 256:      */ 257:     public function createInstance($class, array $args = array()) 258:     { 259:         $rc Nette\Reflection\ClassType::from($class); 260:         if (!$rc->isInstantiable()) { 261:             throw new ServiceCreationException("Class $class is not instantiable."); 262: 263:         } elseif ($constructor $rc->getConstructor()) { 264:             return $rc->newInstanceArgs(Helpers::autowireArguments($constructor, $args, $this)); 265: 266:         } elseif ($args) { 267:             throw new ServiceCreationException("Unable to pass arguments, class $class has no constructor."); 268:         }
  7. .../libs/Nette/Application/PresenterFactory.php:57 source   Nette\DI\Container-> createInstance (arguments )

    $class
    "FrontModule\DefaultPresenter" (28)
    
    47: 48: 49: 50:     /** 51:      * Create new presenter instance. 52:      * @param  string  presenter name 53:      * @return IPresenter 54:      */ 55:     public function createPresenter($name) 56:     { 57:         $presenter = $this->container->createInstance($this->getPresenterClass($name)); 58:         if (method_exists($presenter'setContext')) { 59:             $this->container->callMethod(array($presenter'setContext')); 60:         } 61:         foreach (array_reverse(get_class_methods($presenter)) as $method) {
  8. .../libs/Nette/Application/Application.php:121 source   Nette\Application\PresenterFactory-> createPresenter (arguments )

    $name
    "Front:Default" (13)
    
    111:                         throw new BadRequestException('Invalid request. Presenter is not achievable.'); 112:                     } 113:                 } 114: 115:                 $this->requests[] = $request; 116:                 $this->onRequest($this$request); 117: 118:                 // Instantiate presenter 119:                 $presenterName $request->getPresenterName(); 120:                 try { 121:                     $this->presenter = $this->presenterFactory->createPresenter($presenterName); 122:                 } catch (InvalidPresenterException $e) { 123:                     throw new BadRequestException($e->getMessage(), 404$e); 124:                 } 125:
  9. .../www/index.php:18 source   Nette\Application\Application-> run ()

    8: if (!function_exists('set_magic_quotes_runtime')) { 9:     function set_magic_quotes_runtime($new_setting) { 10:         return true; 11:     } 12: } 13: 14: // let bootstrap create Dependency Injection container 15: $container = require __DIR__ '/../app/bootstrap.php'; 16: 17: // run application 18: $container->application->run(); 19:

Nette Application

Requests

[
   {
      method private => "GET" (3)
      {
         secured => FALSE
      }
      name private => "Front:Default" (13)
      {
         lang => "cs" (2)
         action => "default" (7)
         id => NULL
      }
      post private => array(0) 
      files private => array(0) 
      frozen private => FALSE
   }
]

Presenter

NULL

Environment

$_SERVER

HTTP_ACCEPT
"*/*" (3)
HTTP_USER_AGENT
"claudebot" (9)
HTTP_REFERER
"http://dev.designuj.cz/touchware/www" (36)
HTTP_HOST
"dev.designuj.cz" (15)
PATH
"/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" (60)
SERVER_SIGNATURE
""
SERVER_SOFTWARE
"Apache" (6)
SERVER_NAME
"dev.designuj.cz" (15)
SERVER_ADDR
"62.109.130.142" (14)
SERVER_PORT
"80" (2)
REMOTE_ADDR
"3.89.116.152" (12)
DOCUMENT_ROOT
"/srv/web/designuj.cz/domains/dev.designuj.cz/www" (48)
SERVER_ADMIN
"designuj.cz@web2.hellhill.cz" (28)
SCRIPT_FILENAME
"/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/www/index.php" (72)
REMOTE_PORT
"40090" (5)
GATEWAY_INTERFACE
"CGI/1.1" (7)
SERVER_PROTOCOL
"HTTP/1.1" (8)
REQUEST_METHOD
"GET" (3)
QUERY_STRING
""
REQUEST_URI
"/touchware/www/" (15)
SCRIPT_NAME
"/touchware/www/index.php" (24)
PHP_SELF
"/touchware/www/index.php" (24)
REQUEST_TIME_FLOAT
1711651290.2390000820159912109375
REQUEST_TIME
1711651290

$_SESSION

empty

Constants

NETTE
TRUE
NETTE_DIR
"/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette" (69)
NETTE_VERSION_ID
20008
NETTE_PACKAGE
"5.3" (3)

Included files (72)

/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/www/index.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app/bootstrap.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/autoload.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/loader.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/exceptions.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/Object.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Utils/LimitedScope.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Loaders/AutoLoader.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Loaders/NetteLoader.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/Helpers.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/shortcuts.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Utils/Html.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/Debugger.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/Logger.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/FireLogger.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/BlueScreen.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/Bar.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/DefaultBarPanel.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/IBarPanel.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Utils/SafeStream.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Config/Configurator.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Loaders/RobotLoader.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Caching/Storages/FileStorage.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Caching/IStorage.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Caching/Cache.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/Callback.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/Framework.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Caching/Storages/PhpFileStorage.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/temp/cache/_Nette.Configurator/_-5d3d7df3a1ef4e265397a2ebe43b2aa5.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/DI/Container.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/FreezableObject.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/IFreezable.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/DI/IContainer.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Reflection/ClassType.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Reflection/Method.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/Session.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/RequestFactory.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/UrlScript.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/Url.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/ObjectMixin.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Utils/Strings.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/Request.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/IRequest.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/Response.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Http/IResponse.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/Environment.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/Routers/RouteList.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/common/ArrayList.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/IRouter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/Routers/Route.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/Application.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/PresenterFactory.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/IPresenterFactory.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/Diagnostics/RoutingPanel.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/Request.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app/FrontModule/presenters/DefaultPresenter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/app/presenters/BasePresenter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/Presenter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/Control.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/PresenterComponent.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/ComponentModel/Container.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/ComponentModel/Component.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/ComponentModel/IComponent.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/ComponentModel/IContainer.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/ISignalReceiver.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/IStatePersistent.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/UI/IRenderable.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Application/IPresenter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/DI/Helpers.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Reflection/Parameter.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Database/Connection.php
/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/libs/Nette/Diagnostics/templates/bluescreen.phtml

Configuration options


Configuration

apache2handler

Apache Version Apache
Apache API Version 20051115
Server Administrator designuj.cz@web2.hellhill.cz
Hostname:Port www.dev.designuj.cz:0
User/Group www-data(33)/33
Max Requests Per Child: 10000 - Keep Alive: on - Max Per Connection: 100
Timeouts Connection: 300 - Keep-Alive: 10
Virtual Server Yes
Server Root /etc/apache2
Loaded Modules core mod_log_config mod_logio mod_version itk http_core mod_so mod_actions mod_alias mod_auth_basic mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_cgi mod_deflate mod_dir mod_env mod_headers mod_mime mod_negotiation mod_php5 mod_reqtimeout mod_rewrite mod_setenvif mod_ssl mod_status mod_vhost_alias
DirectiveLocal ValueMaster Value
engine11
last_modified00
xbithack00

Apache Environment

VariableValue
HTTP_ACCEPT */*
HTTP_USER_AGENT claudebot
HTTP_REFERER http://dev.designuj.cz/touchware/www
HTTP_HOST dev.designuj.cz
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE no value
SERVER_SOFTWARE Apache
SERVER_NAME dev.designuj.cz
SERVER_ADDR 62.109.130.142
SERVER_PORT 80
REMOTE_ADDR 3.89.116.152
DOCUMENT_ROOT /srv/web/designuj.cz/domains/dev.designuj.cz/www
SERVER_ADMIN designuj.cz@web2.hellhill.cz
SCRIPT_FILENAME /srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/www/index.php
REMOTE_PORT 40090
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING no value
REQUEST_URI /touchware/www/
SCRIPT_NAME /touchware/www/index.php

HTTP Headers Information

HTTP Request Headers
HTTP Request GET /touchware/www/ HTTP/1.1
accept */*
user-agent claudebot
referer http://dev.designuj.cz/touchware/www
host dev.designuj.cz
HTTP Response Headers
X-Powered-By Nette Framework
X-Frame-Options SAMEORIGIN
Vary Accept-Encoding
Connection close
Transfer-Encoding chunked
Content-Type text/html; charset=utf-8

bcmath

BCMath support enabled
DirectiveLocal ValueMaster Value
bcmath.scale00

bz2

BZip2 Support Enabled
Stream Wrapper support compress.bzip2://
Stream Filter support bzip2.decompress, bzip2.compress
BZip2 Version 1.0.6, 6-Sept-2010

calendar

Calendar support enabled

Core

PHP Version 5.6.1-1~dotdeb.1
DirectiveLocal ValueMaster Value
allow_url_fopenOnOn
allow_url_includeOffOff
always_populate_raw_post_data00
arg_separator.input&&
arg_separator.output&&
asp_tagsOffOff
auto_append_fileno valueno value
auto_globals_jitOnOn
auto_prepend_fileno valueno value
browscapno valueno value
default_charsetUTF-8UTF-8
default_mimetypetext/htmltext/html
disable_classesno valueno value
disable_functionsno valueno value
display_errorsOnOff
display_startup_errorsOffOff
doc_rootno valueno value
docref_extno valueno value
docref_rootno valueno value
enable_dlOffOff
enable_post_data_readingOnOn
error_append_stringno valueno value
error_log/srv/web/designuj.cz/domains/dev.designuj.cz/www/touchware/log/php_error.logno value
error_prepend_stringno valueno value
error_reporting024575
exit_on_timeoutOffOff
expose_phpOffOff
extension_dir/usr/lib/php5/20131226-zts/usr/lib/php5/20131226-zts
file_uploadsOnOn
highlight.comment#998; font-style: italic#FF8000
highlight.default#000#0000BB
highlight.html#06B#000000
highlight.keyword#D24; font-weight: bold#007700
highlight.string#080#DD0000
html_errorsOffOff
ignore_repeated_errorsOffOff
ignore_repeated_sourceOffOff
ignore_user_abortOffOff
implicit_flushOffOff
include_path.:/usr/share/php:/usr/share/pear.:/usr/share/php:/usr/share/pear
input_encodingno valueno value
internal_encodingno valueno value
log_errorsOffOn
log_errors_max_len10241024
mail.add_x_headerOnOn
mail.force_extra_parametersno valueno value
mail.logno valueno value
max_execution_time3030
max_file_uploads2020
max_input_nesting_level6464
max_input_time6060
max_input_vars10001000
memory_limit32M32M
open_basedir/usr/local/lib/php/:/tmp/:/srv/web/designuj.cz/domains/dev.designuj.cz/no value
output_buffering40964096
output_encodingno valueno value
output_handlerno valueno value
post_max_size64M64M
precision1414
realpath_cache_size16K16K
realpath_cache_ttl120120
register_argc_argvOffOff
report_memleaksOnOn
report_zend_debugOnOn
request_orderGPGP
sendmail_fromno valueno value
sendmail_path/usr/sbin/sendmail -t -i /usr/sbin/sendmail -t -i 
serialize_precision100100
short_open_tagOnOn
SMTPlocalhostlocalhost
smtp_port2525
sql.safe_modeOffOff
sys_temp_dirno valueno value
track_errorsOffOff
unserialize_callback_funcno valueno value
upload_max_filesize64M64M
upload_tmp_dir/tmp/phpfileup/tmp/phpfileup
user_dirno valueno value
user_ini.cache_ttl300300
user_ini.filename.user.ini.user.ini
variables_orderGPCSGPCS
xmlrpc_error_number00
xmlrpc_errorsOffOff
zend.detect_unicodeOnOn
zend.enable_gcOnOn
zend.multibyteOffOff
zend.script_encodingno valueno value

ctype

ctype functions enabled

curl

cURL support enabled
cURL Information 7.26.0
Age 3
Features
AsynchDNS No
CharConv No
Debug Yes
GSS-Negotiate Yes
IDN Yes
IPv6 Yes
krb4 No
Largefile Yes
libz Yes
NTLM Yes
NTLMWB Yes
SPNEGO No
SSL Yes
SSPI No
TLS-SRP Yes
Protocols dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, pop3, pop3s, rtmp, rtsp, scp, sftp, smtp, smtps, telnet, tftp
Host x86_64-pc-linux-gnu
SSL Version OpenSSL/1.0.1t
ZLib Version 1.2.7
libSSH Version libssh2/1.4.2

date

date/time support enabled
"Olson" Timezone Database Version 2014.7
Timezone Database internal
Default timezone Europe/Prague
DirectiveLocal ValueMaster Value
date.default_latitude31.766731.7667
date.default_longitude35.233335.2333
date.sunrise_zenith90.58333390.583333
date.sunset_zenith90.58333390.583333
date.timezoneno valueno value

dba

DBA support enabled
Supported handlers cdb cdb_make db4 inifile flatfile qdbm
DirectiveLocal ValueMaster Value
dba.default_handlerflatfileflatfile

dom

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

ereg

Regex Library Bundled library enabled

exif

EXIF Support enabled
EXIF Version 1.4 $Id: 0b28f1c2604848245c00549a8c8055a1c0d22a49 $
Supported EXIF Version 0220
Supported filetypes JPEG,TIFF
DirectiveLocal ValueMaster Value
exif.decode_jis_intelJISJIS
exif.decode_jis_motorolaJISJIS
exif.decode_unicode_intelUCS-2LEUCS-2LE
exif.decode_unicode_motorolaUCS-2BEUCS-2BE
exif.encode_jisno valueno value
exif.encode_unicodeISO-8859-15ISO-8859-15

fileinfo

fileinfo support enabled
version 1.0.5
libmagic 517

filter

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

ftp

FTP support enabled

gd

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

gettext

GetText Support enabled

hash

hash support enabled
Hashing Engines md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost gost-crypto adler32 crc32 crc32b fnv132 fnv1a32 fnv164 fnv1a64 joaat haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5

iconv

iconv support enabled
iconv implementation glibc
iconv library version 2.13
DirectiveLocal ValueMaster Value
iconv.input_encodingno valueno value
iconv.internal_encodingUTF-8no value
iconv.output_encodingno valueno value

imagick

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

json

json support enabled
json version 1.2.1

libxml

libXML support active
libXML Compiled Version 2.8.0
libXML Loaded Version 20800
libXML streams enabled

mbstring

Multibyte Support enabled
Multibyte string engine libmbfl
HTTP input encoding translation disabled
libmbfl version 1.3.2
mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1.
Multibyte (japanese) regex support enabled
Multibyte regex (oniguruma) version 5.9.1
DirectiveLocal ValueMaster Value
mbstring.detect_orderno valueno value
mbstring.encoding_translationOffOff
mbstring.func_overload00
mbstring.http_inputno valueno value
mbstring.http_outputno valueno value
mbstring.http_output_conv_mimetypes^(text/|application/xhtml\+xml)^(text/|application/xhtml\+xml)
mbstring.internal_encodingno valueno value
mbstring.languageneutralneutral
mbstring.strict_detectionOffOff
mbstring.substitute_characternoneno value

mcrypt

mcrypt supportenabled
mcrypt_filter supportenabled
Version 2.5.8
Api No 20021217
Supported ciphers cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes
Supported modes cbc cfb ctr ecb ncfb nofb ofb stream
DirectiveLocal ValueMaster Value
mcrypt.algorithms_dirno valueno value
mcrypt.modes_dirno valueno value

mhash

MHASH support Enabled
MHASH API Version Emulated Support

mysql

MySQL Supportenabled
Active Persistent Links 0
Active Links 0
Client API version 5.5.38
MYSQL_MODULE_TYPE external
MYSQL_SOCKET /var/run/mysqld/mysqld.sock
MYSQL_INCLUDE -I/usr/include/mysql
MYSQL_LIBS -L/usr/lib/x86_64-linux-gnu -lmysqlclient_r
DirectiveLocal ValueMaster Value
mysql.allow_local_infileOnOn
mysql.allow_persistentOnOn
mysql.connect_timeout6060
mysql.default_hostno valueno value
mysql.default_passwordno valueno value
mysql.default_portno valueno value
mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysql.default_userno valueno value
mysql.max_linksUnlimitedUnlimited
mysql.max_persistentUnlimitedUnlimited
mysql.trace_modeOffOff

mysqli

MysqlI Supportenabled
Client API library version 5.5.38
Active Persistent Links 0
Inactive Persistent Links 0
Active Links 0
Client API header version 5.5.38
MYSQLI_SOCKET /var/run/mysqld/mysqld.sock
DirectiveLocal ValueMaster Value
mysqli.allow_local_infileOnOn
mysqli.allow_persistentOnOn
mysqli.default_hostno valueno value
mysqli.default_port33063306
mysqli.default_pwno valueno value
mysqli.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock
mysqli.default_userno valueno value
mysqli.max_linksUnlimitedUnlimited
mysqli.max_persistentUnlimitedUnlimited
mysqli.reconnectOffOff
mysqli.rollback_on_cached_plinkOffOff

openssl

OpenSSL support enabled
OpenSSL Library Version OpenSSL 1.0.1t 3 May 2016
OpenSSL Header Version OpenSSL 1.0.1e 11 Feb 2013
DirectiveLocal ValueMaster Value
openssl.cafileno valueno value
openssl.capathno valueno value

pcre

PCRE (Perl Compatible Regular Expressions) Support enabled
PCRE Library Version 8.34 2013-12-15
DirectiveLocal ValueMaster Value
pcre.backtrack_limit10000001000000
pcre.recursion_limit100000100000

PDO

PDO supportenabled
PDO drivers mysql

pdo_mysql

PDO Driver for MySQLenabled
Client API version 5.5.38
DirectiveLocal ValueMaster Value
pdo_mysql.default_socket/var/run/mysqld/mysqld.sock/var/run/mysqld/mysqld.sock

Phar

Phar: PHP Archive supportenabled
Phar EXT version 2.0.2
Phar API version 1.1.1
SVN revision $Id: 5bfb2788811b381e88c27d2b12c2091f93cded5c $
Phar-based phar archives enabled
Tar-based phar archives enabled
ZIP-based phar archives enabled
gzip compression enabled
bzip2 compression enabled
OpenSSL support enabled
Phar based on pear/PHP_Archive, original concept by Davey Shafik.
Phar fully realized by Gregory Beaver and Marcus Boerger.
Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle.
DirectiveLocal ValueMaster Value
phar.cache_listno valueno value
phar.readonlyOnOn
phar.require_hashOnOn

posix

Revision $Id: 1dfa9997ed76804e53c91e0ce862f3707617b6ed $

Reflection

Reflectionenabled
Version $Id: 8e5fcadef43ea0f77c7886557613923e30b979dd $

session

Session Support enabled
Registered save handlers files user
Registered serializer handlers php_serialize php php_binary wddx
DirectiveLocal ValueMaster Value
session.auto_startOffOff
session.cache_expire180180
session.cache_limiternocachenocache
session.cookie_domainno valueno value
session.cookie_httponlyOffOff
session.cookie_lifetime00
session.cookie_path//
session.cookie_secureOffOff
session.entropy_file/dev/urandom/dev/urandom
session.entropy_length00
session.gc_divisor10001000
session.gc_maxlifetime14401440
session.gc_probability00
session.hash_bits_per_character55
session.hash_function00
session.namePHPSESSIDPHPSESSID
session.referer_checkno valueno value
session.save_handlerfilesfiles
session.save_path/tmp/phptd/tmp/phptd
session.serialize_handlerphpphp
session.upload_progress.cleanupOnOn
session.upload_progress.enabledOnOn
session.upload_progress.freq1%1%
session.upload_progress.min_freq11
session.upload_progress.namePHP_SESSION_UPLOAD_PROGRESSPHP_SESSION_UPLOAD_PROGRESS
session.upload_progress.prefixupload_progress_upload_progress_
session.use_cookiesOnOn
session.use_only_cookiesOnOn
session.use_strict_modeOffOff
session.use_trans_sid00

shmop

shmop support enabled

SimpleXML

Simplexml supportenabled
Revision $Id: a915862ec47f9589309acc4996ca8f6179788746 $
Schema support enabled

soap

Soap Client enabled
Soap Server enabled
DirectiveLocal ValueMaster Value
soap.wsdl_cache11
soap.wsdl_cache_dir/tmp/tmp
soap.wsdl_cache_enabled11
soap.wsdl_cache_limit55
soap.wsdl_cache_ttl8640086400

sockets

Sockets Support enabled

SPL

SPL supportenabled
Interfaces Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject
Classes AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, CallbackFilterIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveCallbackFilterIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException

standard

Dynamic Library Support enabled
Path to sendmail /usr/sbin/sendmail -t -i
DirectiveLocal ValueMaster Value
assert.active11
assert.bail00
assert.callbackno valueno value
assert.quiet_eval00
assert.warning11
auto_detect_line_endings00
default_socket_timeout6060
fromno valueno value
url_rewriter.tagsa=href,area=href,frame=src,input=src,form=fakeentrya=href,area=href,frame=src,input=src,form=fakeentry
user_agentno valueno value

sysvmsg

sysvmsg support enabled
Revision $Id: adf1d2d6be849c46eed3c3ee6f1cbebd1448d6e5 $

tokenizer

Tokenizer Support enabled

wddx

WDDX Supportenabled
WDDX Session Serializer enabled

xml

XML Support active
XML Namespace Support active
libxml2 Version 2.8.0

xmlreader

XMLReader enabled

xmlrpc

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

XMLWriter enabled

Zend OPcache

Opcode Caching Up and Running
Optimization Enabled
Startup OK
Shared memory model mmap
Cache hits 111118255
Cache misses 7646
Used memory 67089608
Free memory 19256
Wasted memory 0
Cached scripts 2311
Cached keys 3050
Max keys 3907
OOM restarts 0
Hash keys restarts 0
Manual restarts 0
DirectiveLocal ValueMaster Value
opcache.blacklist_filenameno valueno value
opcache.consistency_checks00
opcache.dups_fixOffOff
opcache.enableOnOn
opcache.enable_cliOffOff
opcache.enable_file_overrideOffOff
opcache.error_logno valueno value
opcache.fast_shutdown00
opcache.file_update_protection22
opcache.force_restart_timeout180180
opcache.inherited_hackOnOn
opcache.interned_strings_buffer44
opcache.load_comments11
opcache.log_verbosity_level11
opcache.max_accelerated_files20002000
opcache.max_file_size00
opcache.max_wasted_percentage55
opcache.memory_consumption6464
opcache.optimization_level0xFFFFFFFF0xFFFFFFFF
opcache.preferred_memory_modelno valueno value
opcache.protect_memory00
opcache.restrict_apino valueno value
opcache.revalidate_freq22
opcache.revalidate_pathOffOff
opcache.save_comments11
opcache.use_cwdOnOn
opcache.validate_timestampsOnOn

zip

Zip enabled
Extension Version $Id: a9db166c839b24cbebccad95120bd535e720038f $
Zip version 1.12.4
Libzip version 0.11.2

zlib

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

Additional Modules

Module Name
sysvsem
sysvshm

HTTP request

Headers

accept*/*
user-agentclaudebot
refererhttp://dev.designuj.cz/touchware/www
hostdev.designuj.cz

$_GET

empty

$_POST

empty

$_COOKIE

empty

HTTP response

Headers

X-Powered-By: Nette Framework
Content-Type: text/html; charset=utf-8
X-Frame-Options: SAMEORIGIN