Nette\Database\ConnectionException #HY000
File: .../nette/database/src/Database/DriverException.php:25
15: { 16: /** @var string */ 17: public $queryString; 18: 19: 20: /** 21: * @return self 22: */ 23: public static function from(\PDOException $src) 24: { 25: $e = new static($src->message, NULL, $src); 26: if (!$src->errorInfo && preg_match('#SQLSTATE\[(.*?)\] \[(.*?)\] (.*)#A', $src->message, $m)) { 27: $m[2] = (int) $m[2]; 28: $e->errorInfo = array_slice($m, 1); 29: $e->code = $m[1];
.../vendor/nette/database/src/Database/Connection.php:71 source Nette\Database\DriverException::from(arguments)
61: public function connect() 62: { 63: if ($this->pdo) { 64: return; 65: } 66: 67: try { 68: $this->pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 69: $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 70: } catch (PDOException $e) { 71: throw ConnectionException::from($e); 72: } 73: 74: $class = empty($this->options['driverClass']) 75: ? 'Nette\Database\Drivers\\' . ucfirst(str_replace('sql', 'Sql', $this->pdo->getAttribute(PDO::ATTR_DRIVER_NAME))) . 'Driver'
$src |
---|
.../vendor/nette/database/src/Database/Connection.php:116 source Nette\Database\Connection->connect()
106: public function getPdo() 107: { 108: $this->connect(); 109: return $this->pdo; 110: } 111: 112: 113: /** @return ISupplementalDriver */ 114: public function getSupplementalDriver() 115: { 116: $this->connect(); 117: return $this->driver; 118: } 119: 120:
.../vendor/nette/database/src/Database/ResultSet.php:56 source Nette\Database\Connection->getSupplementalDriver()
46: private $params; 47: 48: /** @var array */ 49: private $types; 50: 51: 52: public function __construct(Connection $connection, $queryString, array $params) 53: { 54: $time = microtime(TRUE); 55: $this->connection = $connection; 56: $this->supplementalDriver = $connection->getSupplementalDriver(); 57: $this->queryString = $queryString; 58: $this->params = $params; 59: 60: try {
.../sommer/include/classes/DbConnection.php:410 source Nette\Database\ResultSet->__construct(arguments)
400: * @param array $input_parameters Input parameters. 401: * @return bool True on success, false otherwise 402: */ 403: public function execute(array $input_parameters = null) 404: { 405: if (!$input_parameters) { 406: $input_parameters = $this->params; 407: } 408: $start = microtime(true); 409: try { 410: $this->resultSet = new Nette\Database\ResultSet($this->connection, $this->query, $input_parameters); 411: TmPDO::log($this->query, microtime(true) - $start); 412: } catch (PDOException $e) { 413: $this->connection->onQuery($this->connection, $e); 414: TmPDO::log('ERR: ' . $this->query . $e->getMessage(), microtime(true) - $start);
$connection | |
---|---|
$queryString | "
SELECT *
FROM tm_member
WHERE memberId=:memberId
AND internalState != 3
AND internalState != 4" (134)
|
$params |
.../sommer/include/models/LoadedModel.php:93 source NetteDatabaseResultSet->execute()
83: * 84: * @param PDOStatement|string $statement PDO/SQL statement. 85: * @throws LogicException If the statement is not initalized properly 86: */ 87: private function doExecStatement(&$statement) { 88: if (is_string($statement) && $statement != '') { 89: //convert to PDOStatement 90: $statement = $this->conn->pdoQuery($statement); 91: } else { 92: if (is_object($statement)) { 93: $statement->execute(); 94: } else { 95: throw new LogicException("SQL statement of object ".get_class($this)." is not set, either set it in constructor or use setStatement() method."); 96: } 97: }
.../sommer/include/models/LoadedModel.php:133 source LoadedModel->doExecStatement(arguments)
123: /** 124: * Execute an arbitrary SQL statement returning a single row. 125: * 126: * @param string|PDOStatement $statement 127: * @param string $class Class name into which the result should be loaded. 128: * @return mixed Instance of the object class specified in parameter. 129: */ 130: protected function loadItemInto(&$statement, $class) { 131: $oldClass = $this->className; 132: $this->className = $class; 133: $this->doExecStatement($statement); 134: $result = $statement->fetch(); 135: $this->className = $oldClass; 136: $statement->closeCursor(); 137: return $result;
$statement |
---|
.../sommer/include/models/MemberModel.php:587 source LoadedModel->loadItemInto(arguments)
577: 578: $stmt = $this->conn->prepare(" 579: SELECT * 580: FROM " . $this->getTable('member') . " 581: WHERE memberId=:memberId 582: AND internalState != " . self::STATE_DELETED . " 583: AND internalState != " . self::STATE_NON_INTERACTIVE 584: ); 585: 586: $stmt->bindValue(':memberId', $memberId, PDO::PARAM_STR); 587: $user = $this->loadItemInto($stmt, 'CurrentUserObject'); 588: $user->forceValid(true); 589: return $user; 590: } 591:
$statement | |
---|---|
$class | "CurrentUserObject" (17)
|
.../sommer/include/models/MemberModel.php:603 source MemberModel->getUserById(arguments)
593: * Get user by ID 594: * 595: * More convenient alias for getUserById 596: * 597: * @param $id 598: * @return CurrentUserObject 599: */ 600: public static function find($id) 601: { 602: $memberModel = new MemberModel; 603: return $memberModel->getUserById($id); 604: } 605: 606: 607: /**
$memberId | "3"
|
---|
.../sommer/include/classes/Application.php:415 source MemberModel::find(arguments)
405: * 406: */ 407: public static function logIn() { 408: self::startSession(); // double check to start session, otherwise this method won't work 409: 410: $ss = new Session('Application'); 411: $userId = $ss->get('user'); 412: /** @var CurrentUserObject $user */ 413: $user = null; 414: if ($userId && self::verifySession($ss->get('cctkn'))) { 415: $user = MemberModel::find($userId); 416: } 417: if ($user && $user->isLogged()) { 418: // already logged in, fast forward through 419: } else {
$id | "3"
|
---|
.../taskmanager.cz/sommer/include/init.php:67 source Application::logIn()
57: require(PRJ_INCLUDE_PATH.'objects/MemberObject.php'); 58: require(PRJ_INCLUDE_PATH.'objects/CurrentUserObject.php'); 59: require(PRJ_CLASS_PATH.'Permissions.php'); 60: 61: error_reporting(E_ALL); 62: 63: // Initialize autoloader, logging 64: Application::init(); 65: 66: // Discover current user 67: Application::logIn(); 68: 69:
/webserver_legacy/taskmanager.cz/sommer/index.php:17 source require(arguments)
7: */ 8: 9: /** 10: * Local absolute directory to taskmanager installation. 11: */ 12: define('PRJ_ROOT_PATH', __DIR__.'/'); 13: 14: /* Silence require, in case of misconfiguration the script will terminate here 15: and error will be logged only to apache log. 16: */ 17: @require(PRJ_ROOT_PATH.'include/init.php'); 18: 19: // Discover controller and run it 20: Application::run(); 21:
#0 | "/webserver_legacy/taskmanager.cz/sommer/include/init.php" (56)
|
---|
File: .../vendor/nette/database/src/Database/Connection.php:68
58: 59: 60: /** @return void */ 61: public function connect() 62: { 63: if ($this->pdo) { 64: return; 65: } 66: 67: try { 68: $this->pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 69: $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 70: } catch (PDOException $e) { 71: throw ConnectionException::from($e); 72: }
.../vendor/nette/database/src/Database/Connection.php:68 source PDO->__construct(arguments)
58: 59: 60: /** @return void */ 61: public function connect() 62: { 63: if ($this->pdo) { 64: return; 65: } 66: 67: try { 68: $this->pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 69: $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 70: } catch (PDOException $e) { 71: throw ConnectionException::from($e); 72: }
$dsn | "mysql:host=localhost;port=3306;dbname=tm_sommer;charset=utf8" (60)
|
---|---|
$username | "tm_sommer" (9)
|
$passwd | "tm_sommer55" (11)
|
$options |
.../vendor/nette/database/src/Database/Connection.php:116 source Nette\Database\Connection->connect()
106: public function getPdo() 107: { 108: $this->connect(); 109: return $this->pdo; 110: } 111: 112: 113: /** @return ISupplementalDriver */ 114: public function getSupplementalDriver() 115: { 116: $this->connect(); 117: return $this->driver; 118: } 119: 120:
.../vendor/nette/database/src/Database/ResultSet.php:56 source Nette\Database\Connection->getSupplementalDriver()
46: private $params; 47: 48: /** @var array */ 49: private $types; 50: 51: 52: public function __construct(Connection $connection, $queryString, array $params) 53: { 54: $time = microtime(TRUE); 55: $this->connection = $connection; 56: $this->supplementalDriver = $connection->getSupplementalDriver(); 57: $this->queryString = $queryString; 58: $this->params = $params; 59: 60: try {
.../sommer/include/classes/DbConnection.php:410 source Nette\Database\ResultSet->__construct(arguments)
400: * @param array $input_parameters Input parameters. 401: * @return bool True on success, false otherwise 402: */ 403: public function execute(array $input_parameters = null) 404: { 405: if (!$input_parameters) { 406: $input_parameters = $this->params; 407: } 408: $start = microtime(true); 409: try { 410: $this->resultSet = new Nette\Database\ResultSet($this->connection, $this->query, $input_parameters); 411: TmPDO::log($this->query, microtime(true) - $start); 412: } catch (PDOException $e) { 413: $this->connection->onQuery($this->connection, $e); 414: TmPDO::log('ERR: ' . $this->query . $e->getMessage(), microtime(true) - $start);
$connection | |
---|---|
$queryString | "
SELECT *
FROM tm_member
WHERE memberId=:memberId
AND internalState != 3
AND internalState != 4" (134)
|
$params |
.../sommer/include/models/LoadedModel.php:93 source NetteDatabaseResultSet->execute()
83: * 84: * @param PDOStatement|string $statement PDO/SQL statement. 85: * @throws LogicException If the statement is not initalized properly 86: */ 87: private function doExecStatement(&$statement) { 88: if (is_string($statement) && $statement != '') { 89: //convert to PDOStatement 90: $statement = $this->conn->pdoQuery($statement); 91: } else { 92: if (is_object($statement)) { 93: $statement->execute(); 94: } else { 95: throw new LogicException("SQL statement of object ".get_class($this)." is not set, either set it in constructor or use setStatement() method."); 96: } 97: }
.../sommer/include/models/LoadedModel.php:133 source LoadedModel->doExecStatement(arguments)
123: /** 124: * Execute an arbitrary SQL statement returning a single row. 125: * 126: * @param string|PDOStatement $statement 127: * @param string $class Class name into which the result should be loaded. 128: * @return mixed Instance of the object class specified in parameter. 129: */ 130: protected function loadItemInto(&$statement, $class) { 131: $oldClass = $this->className; 132: $this->className = $class; 133: $this->doExecStatement($statement); 134: $result = $statement->fetch(); 135: $this->className = $oldClass; 136: $statement->closeCursor(); 137: return $result;
$statement |
---|
.../sommer/include/models/MemberModel.php:587 source LoadedModel->loadItemInto(arguments)
577: 578: $stmt = $this->conn->prepare(" 579: SELECT * 580: FROM " . $this->getTable('member') . " 581: WHERE memberId=:memberId 582: AND internalState != " . self::STATE_DELETED . " 583: AND internalState != " . self::STATE_NON_INTERACTIVE 584: ); 585: 586: $stmt->bindValue(':memberId', $memberId, PDO::PARAM_STR); 587: $user = $this->loadItemInto($stmt, 'CurrentUserObject'); 588: $user->forceValid(true); 589: return $user; 590: } 591:
$statement | |
---|---|
$class | "CurrentUserObject" (17)
|
.../sommer/include/models/MemberModel.php:603 source MemberModel->getUserById(arguments)
593: * Get user by ID 594: * 595: * More convenient alias for getUserById 596: * 597: * @param $id 598: * @return CurrentUserObject 599: */ 600: public static function find($id) 601: { 602: $memberModel = new MemberModel; 603: return $memberModel->getUserById($id); 604: } 605: 606: 607: /**
$memberId | "3"
|
---|
.../sommer/include/classes/Application.php:415 source MemberModel::find(arguments)
405: * 406: */ 407: public static function logIn() { 408: self::startSession(); // double check to start session, otherwise this method won't work 409: 410: $ss = new Session('Application'); 411: $userId = $ss->get('user'); 412: /** @var CurrentUserObject $user */ 413: $user = null; 414: if ($userId && self::verifySession($ss->get('cctkn'))) { 415: $user = MemberModel::find($userId); 416: } 417: if ($user && $user->isLogged()) { 418: // already logged in, fast forward through 419: } else {
$id | "3"
|
---|
.../taskmanager.cz/sommer/include/init.php:67 source Application::logIn()
57: require(PRJ_INCLUDE_PATH.'objects/MemberObject.php'); 58: require(PRJ_INCLUDE_PATH.'objects/CurrentUserObject.php'); 59: require(PRJ_CLASS_PATH.'Permissions.php'); 60: 61: error_reporting(E_ALL); 62: 63: // Initialize autoloader, logging 64: Application::init(); 65: 66: // Discover current user 67: Application::logIn(); 68: 69:
/webserver_legacy/taskmanager.cz/sommer/index.php:17 source require(arguments)
7: */ 8: 9: /** 10: * Local absolute directory to taskmanager installation. 11: */ 12: define('PRJ_ROOT_PATH', __DIR__.'/'); 13: 14: /* Silence require, in case of misconfiguration the script will terminate here 15: and error will be logged only to apache log. 16: */ 17: @require(PRJ_ROOT_PATH.'include/init.php'); 18: 19: // Discover controller and run it 20: Application::run(); 21:
#0 | "/webserver_legacy/taskmanager.cz/sommer/include/init.php" (56)
|
---|
.../vendor/nette/database/src/Database/Connection.php:68
58: 59: 60: /** @return void */ 61: public function connect() 62: { 63: if ($this->pdo) { 64: return; 65: } 66: 67: try { 68: $this->pdo = new PDO($this->params[0], $this->params[1], $this->params[2], $this->options); 69: $this->pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); 70: } catch (PDOException $e) { 71: throw ConnectionException::from($e); 72: }
UNIQUE_ID | "ZsLrG1mRVjsAABAb6EQAAAAD" (24)
|
---|---|
HTTPS | "on" (2)
|
SSL_TLS_SNI | "taskmanager.cz" (14)
|
HTTP_HOST | "taskmanager.cz" (14)
|
HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0" (80)
|
HTTP_ACCEPT | "application/json, text/javascript, */*; q=0.01" (46)
|
HTTP_ACCEPT_LANGUAGE | "cs,sk;q=0.8,en-US;q=0.5,en;q=0.3" (32)
|
HTTP_ACCEPT_ENCODING | "gzip, deflate, br, zstd" (23)
|
CONTENT_TYPE | "application/x-www-form-urlencoded; charset=UTF-8" (48)
|
HTTP_X_REQUESTED_WITH | "XMLHttpRequest" (14)
|
CONTENT_LENGTH | "1219" (4)
|
HTTP_ORIGIN | "https://taskmanager.cz" (22)
|
HTTP_CONNECTION | "keep-alive" (10)
|
HTTP_REFERER | "https://taskmanager.cz/sommer/index.php?tabId=5&ctrl=Tasks&view=List" (68)
|
HTTP_COOKIE | "TMtmsommer=0bgg4roskm6pjoktmph503rsk6" (37)
|
HTTP_SEC_FETCH_DEST | "empty" (5)
|
HTTP_SEC_FETCH_MODE | "cors" (4)
|
HTTP_SEC_FETCH_SITE | "same-origin" (11)
|
HTTP_SEC_GPC | "1"
|
PATH | "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin" (49)
|
SERVER_SIGNATURE | ""
|
SERVER_SOFTWARE | "Apache/2" (8)
|
SERVER_NAME | "taskmanager.cz" (14)
|
SERVER_ADDR | "89.145.86.59" (12)
|
SERVER_PORT | "443" (3)
|
REMOTE_ADDR | "213.168.176.147" (15)
|
DOCUMENT_ROOT | "/webserver_legacy/taskmanager.cz" (32)
|
REQUEST_SCHEME | "https" (5)
|
CONTEXT_PREFIX | ""
|
CONTEXT_DOCUMENT_ROOT | "/webserver_legacy/taskmanager.cz" (32)
|
SERVER_ADMIN | "info@itpark.cz" (14)
|
SCRIPT_FILENAME | "/webserver_legacy/taskmanager.cz/sommer/index.php" (49)
|
REMOTE_PORT | "59011" (5)
|
GATEWAY_INTERFACE | "CGI/1.1" (7)
|
SERVER_PROTOCOL | "HTTP/1.1" (8)
|
REQUEST_METHOD | "POST" (4)
|
QUERY_STRING | "ctrl=TasksJSON&act=autoReload" (29)
|
REQUEST_URI | "/sommer/index.php?ctrl=TasksJSON&act=autoReload" (47)
|
SCRIPT_NAME | "/sommer/index.php" (17)
|
PHP_SELF | "/sommer/index.php" (17)
|
REQUEST_TIME_FLOAT | 1724050203.774
|
REQUEST_TIME | 1724050203
|
tm |
---|
PRJ_ROOT_PATH | "/webserver_legacy/taskmanager.cz/sommer/" (40)
|
---|---|
LDAP_ESCAPE_FILTER | 1
|
LDAP_ESCAPE_DN | 2
|
TM_VERSION | "4.1" (3)
|
TM_CUSTOMER | ""
|
TM_DB_HOST | "localhost" (9)
|
TM_DB_PORT | "3306" (4)
|
TM_DB_USER | "tm_sommer" (9)
|
TM_DB_PASS | "tm_sommer55" (11)
|
TM_DB_BASE | "tm_sommer" (9)
|
TM_DB_PREFIX | "tm" (2)
|
TM_SOLR_PATH | "/opt/solr" (9)
|
TM_SOLR_URI | "http://localhost:8983/solr" (26)
|
TM_SOLR_PREFIX | "taskmanager_sommer_" (19)
|
TM_SOLR_LANG | "cz" (2)
|
LOGGER | "DebugLogger" (11)
|
DBLOGGER | FALSE
|
TM_DEBUG_ACTIVE | TRUE
|
TM_TRACYDEBUG_ACTIVE | FALSE
|
TM_DB_PERMANENT | TRUE
|
TM_DB_ERROR_PAGE | 1
|
TM_LOGIN_PROVIDERS | "FormLoginProvider, AutoLoginProvider, GoogleLoginProvider, XmlRpcLoginProvider" (78)
|
TM_LOGIN_PROTECTION | TRUE
|
TM_USER_PASS_MODE | 4
|
TM_USER_LOGIN | "username" (8)
|
TM_USER_NAME_MIN | 3
|
TM_USER_NAME_MAX | 15
|
TM_USER_PASS_MIN | 1
|
TM_USER_PASS_MAX | 15
|
TM_MAX_ALLOWED_USERS | 20
|
TM_LOGIN_KEY_USER | "admin" (5)
|
TM_LOGIN_KEY_PRIVATE | "/webserver_legacy/taskmanager.cz/sommer//tests/signedLogin/private.key" (70)
|
TM_LOGIN_KEY_PRIVATE_PASSPHRASE | "veverka" (7)
|
TM_LOGIN_KEY_PUBLIC | "/webserver_legacy/taskmanager.cz/sommer//tests/signedLogin/public.crt" (69)
|
TM_LOGIN_KEY_SHARED_PASS | "drevokocur" (10)
|
TM_LOGIN_KEY_HELPDESK | "http://localhost/" (17)
|
PRJ_INCLUDE_PATH | "/webserver_legacy/taskmanager.cz/sommer/include/" (48)
|
PRJ_CLASS_PATH | "/webserver_legacy/taskmanager.cz/sommer/include/classes/" (56)
|
TM_FILE_TEMP_PATH | "/webserver_legacy/taskmanager.cz/sommer/temp/" (45)
|
TM_FILE_TEMP_URL | "temp/" (5)
|
TM_FILE_UPLOAD_PATH | "/webserver_legacy/taskmanager.cz/sommer/files/" (46)
|
TM_FILE_LOG_PATH | "/webserver_legacy/taskmanager.cz/logs/" (38)
|
TM_SESSION_SAVE_PATH | "/webserver_legacy/taskmanager.cz/sommer/session/" (48)
|
QUICK_PRIORITY_CHANGE | "select" (6)
|
PLG_EMAIL_FROM | "taskmanager@taskmanager.cz" (26)
|
PLG_EMAIL_FROM_NAME | "TaskManager Management System" (29)
|
PLG_EMAIL_BCC | FALSE
|
PLG_BATCH_NOTIFICATIONS | FALSE
|
PLG_BATCH_NOTIFICATIONS_GROUPING | TRUE
|
PLG_EMAIL_TO | "taskmanager@taskmanager.cz" (26)
|
PLG_EMAIL_TRIGGERING_USER | FALSE
|
PLG_EMAIL_SEND_TO_OTHER_PROJECT_MEMBERS_TOO | FALSE
|
PLG_EMAIL_BY_POSITION | FALSE
|
PLG_EMAIL_POSITIONS | "3,4,5" (5)
|
PLG_EMAIL_SWIFT | "smtp" (4)
|
PLG_EMAIL_SENDMAIL | "/usr/sbin/sendmail -bs" (22)
|
PLG_EMAIL_SERVER | "localhost" (9)
|
PLG_EMAIL_SERVER_ENC | NULL
|
PLG_EMAIL_SERVER_PORT | 25
|
PLG_EMAIL_SERVER_AUTH | FALSE
|
PLG_EMAIL_SERVER_USER | ""
|
PLG_EMAIL_SERVER_PASS | ""
|
PLG_EMAIL_SERVER_TIMEOUT | 5
|
PLG_EMAIL_UPON_NEW_TASK | TRUE
|
PLG_EMAIL_UPON_EDIT_TASK | TRUE
|
PLG_EMAIL_NOTIFICATION_UPON_NEW_WORKLOG | TRUE
|
PLG_EMAIL_NOTIFICATION_UPON_DELETED_WORKLOG | TRUE
|
PLG_EMAIL_NOTIFICATION_UPON_CHANGE_WORKLOG | TRUE
|
PLG_EMAIL_NOTIFICATION_UPON_PAUSE_CONTINUE_WORKLOG | FALSE
|
PLG_EMAIL_ENABLED | TRUE
|
POP3_HOSTNAME | "taskmanager.cz" (14)
|
POP3_PORT | "110" (3)
|
POP3_TLS | 0
|
POP3_USER | "sommer@taskmanager.cz" (21)
|
POP3_PASSWORD | "somm123er" (9)
|
POP3_REALM | ""
|
POP3_WORKSTATION | ""
|
POP3_APOP | 0
|
POP3_AUTHENTICATION_MECHANISM | "USER" (4)
|
POP3_DEBUG | 0
|
POP3_HTML_DEBUG | 0
|
POP3_JOIN_CONTINUATION_HEADER_LINES | 1
|
TBM_DEFAULT_CONTEXT | 1
|
TBM_USER_DEFAULT_COUNTRY | "CZ" (2)
|
TM_WORKING_HOURS_NUM | 5
|
TM_CALENDAR_ENABLED | 1
|
TM_MODE_HELPDESK | FALSE
|
TM_SHOW_GRAPHS_TAB | TRUE
|
TM_SHOW_PRINT_TAB | TRUE
|
TM_SHOW_ALLTASKS_TAB | TRUE
|
MODULE_CALENDAR_ENABLED | TRUE
|
USER_CALENDAR_ENABLED | FALSE
|
TM_STATS_CUSTOM_ATTR_RATE1_ID | 2
|
TM_STATS_CUSTOM_ATTR_RATE2_ID | 3
|
TM_STATS_CUSTOM_TASK_ATTR_RATE_ID | 4
|
TM_STATS_CUSTOM_TASK_SUBATTR_RATE1_ID | 7
|
TM_STATS_CUSTOM_TASK_SUBATTR_RATE2_ID | 8
|
TM_ATTACHMENT_FOLDER | "/webserver_legacy/taskmanager.cz/sommer/files/" (46)
|
TM_ATTACHMENT_EXCLUSION | "disallow" (8)
|
TM_ATTACHMENT_LIST | "aspx,tmp,lnk" (12)
|
TM_ATTACHMENT_NOTIFY | TRUE
|
TM_ATTACHMENT_EXTENSION | ".tm" (3)
|
TM_NEW_TASK_USER_PRESELECTED | TRUE
|
TM_PRIORITY_LEVELS | 5
|
TM_DEFAULT_TASK_PRIO | 2
|
TM_DESCRIPTION_MOUSEOVER_MAXLENGTH | 200
|
TM_DESCRIPTION_ENABLE | TRUE
|
TM_DEFAULT_COUNTRY | "CZ" (2)
|
TM_SPENT_TIME_FORMAT | "automatic" (9)
|
TM_SMS_USER | ""
|
TM_SMS_PASSWORD | ""
|
TM_SMS_HTTP_API | ""
|
TM_SUNNYPORTAL_REPORTS | FALSE
|
TM_SUNNYPORTAL_EMAIL_ADDR | "service@sunnyportal.com" (23)
|
TM_SUNNYPORTAL_CUSTOM_ATTR_MAPPING_PROJNAME_ID | "37" (2)
|
TM_SUNNYPORTAL_REPORTS_CUSTOM_SUBATTR_DATE_ID | "14" (2)
|
TM_SUNNYPORTAL_REPORTS_CUSTOM_SUBATTR_REPORTTYPE_ID | "13" (2)
|
TM_SUNNYPORTAL_REPORTS_CUSTOM_SUBATTR_REPORTTYPE_DAILY_ID | "5"
|
TM_SUNNYPORTAL_REPORTS_CUSTOM_SUBATTR_REPORTTYPE_MONTHLY_ID | "6"
|
TM_SUNNYPORTAL_REPORTS_CUSTOM_SUBATTR_PRODVALUE_ID | "15" (2)
|
TM_AUDIT_IMPORT | FALSE
|
TM_AUDIT_CUSTOM_SUBATTR_YEAR_ID | 17
|
TM_AUDIT_CUSTOM_SUBATTR_MONTH_ID | 18
|
TM_AUDIT_CUSTOM_SUBATTR_VALUE_ID | 19
|
TM_FVE_REPORT_IMPORT | FALSE
|
TM_SHOW_TASK_REPORT | FALSE
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_FVE_NAME_ID | 29
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_NUMBER_SUFFIX_ID | 20
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_OWNER_ID | 21
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_CONTACT_PERSON_ID | 22
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE_ID | 25
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE2_ID | 57
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE3_ID | 58
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE4_ID | 59
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE5_ID | 60
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WORK_DATE6_ID | 61
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_REPORT_TEXT_ID | 26
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_REPORTED_TIME_ID | 28
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_NUMBER_OF_KM_ID | 23
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_WARRANTY_ID | 24
|
TM_ONETASK_REPORT_CUST_ATTR_REPORT_SPARE_PARTS_ID | 27
|
TM_MONTLY_REPORT_TASK_GROUP_IDS | "4,5" (3)
|
TM_DEFAULT_SORT_ORDER | "ASC" (3)
|
TM_DEFAULT_SORT_COLUMN | "item_priority" (13)
|
TM_CHANGELOG_LINK | 0
|
TM_HELPDESK_LINK | 0
|
TM_ROADMAP_LINK | 0
|
TM_DEFAULT_LANGUAGE | "cs" (2)
|
TM_DEFAULT_SKIN_FOLDER | "sommer" (6)
|
TM_TASKLIST_ROW_HEIGHT | 21
|
TM_TASKLIST_BUTTON_WIDTH | 21
|
TM_SKIN_TEMPLATE_SUBSTITUTIONS | ""
|
TM_DEFAULT_CONTEXT_LONG | FALSE
|
TM_DEFAULT_VISIBILITY | 1
|
TM_THREADED_COMMENTS | TRUE
|
TM_DEFAULT_COMMENT_ORDER | "DESC" (4)
|
TM_DEFAULT_HISTORY_ORDER | "DESC" (4)
|
TM_WLOG_ENABLED | TRUE
|
TM_DEFAULT_WLOG_ORDER | "ASC" (3)
|
TM_SUBTASKS_ENABLED | TRUE
|
MOVE_SUBTASKS_ON_PARENT_TASK_MOVE | TRUE
|
TM_DATE_US_FORMAT | FALSE
|
TM_CONFIRM_STATUS_CLOSE | TRUE
|
TM_MOVE_TASK_TO_FINISHED_GROUP_ON_100PERCENT | TRUE
|
TM_FINISH_TASK_WITH_SUBTASKS | TRUE
|
TM_RELOAD_INTERVAL | 1
|
TM_OPEN_TASK_SYNC_INTERVAL | 40
|
TM_OPEN_TASK_SYNC_TIMEOUT | 90
|
TM_SHOW_EDITED_TASKS_IN_TASKLIST | TRUE
|
TM_SHOW_TIME_IN_THE_UPPER_LEFT_CORNER | TRUE
|
TM_USER_LIST_MODE | "plain" (5)
|
TM_FILTER_USERS_TO_FOLLOW_TASK_AS_USERS_TO_ASSIGN_TASK | FALSE
|
TM_PROJECT_LIST_MODE | "plain" (5)
|
TM_PROJECT_LIST_PARENT | FALSE
|
TM_SHOW_TASK_WALK | FALSE
|
TM_VALID_PERIODS_FOR_CUSTOM_PROPS | FALSE
|
TM_WELCOME_FILTERS | "item_memberId,89,item_projectId,item_authorId" (45)
|
TM_LOGOUT_LANDING_PAGE | ""
|
TM_DEFAULT_NOTIFICATION | 0
|
TM_TASKEDIT_USER_MANDATORY | FALSE
|
TM_TASKEDIT_DEADLINE_MANDATORY | FALSE
|
TM_DEFAULT_CONTROLLER | "TasksController" (15)
|
TM_OPTIMIZE_TASKLIST_COLUMNS | TRUE
|
TM_DEFAULT_SUBTASKS_EXPANDED | FALSE
|
TM_WORKLOG_COMPLETE_TASKS | TRUE
|
TM_FORCE_WORKLOG_ON_FINISH | FALSE
|
TM_INHERIT_PROJECT_SUBTASK_TEMPLATES | TRUE
|
TM_SHOW_ALL_TASKS_FIRST | FALSE
|
TM_MENU_TEMPLATE | "menu.tpl" (8)
|
TM_TASK_COPY_BUTTON | "both" (4)
|
TM_TASK_COPY_TEMPLATE_BUTTON | FALSE
|
TM_TASK_OPEN_TEMPLATE_BUTTON | FALSE
|
TM_PROJECT_COPY_BUTTON | FALSE
|
TM_MAX_TOP_FILTERS | 3
|
TM_MAX_TOP_FILTERS_DURATION | 168
|
TM_SQL_DATE_FORMAT | "Y-m-d" (5)
|
TM_SQL_DATETIME_FORMAT | "Y-m-d H:i:s" (11)
|
TM_DEFAULT_USER_TZ | "Europe/Prague" (13)
|
TM_DATE_FORMAT | "d.m.Y" (5)
|
TM_TIME_FORMAT | "H:i" (3)
|
TM_DATETIME_FORMAT | "d.m.Y H:i:s" (11)
|
USED_DATE_FORMAT | "EUR" (3)
|
TM_DATE_EUR | "%d.%m.%Y" (8)
|
TM_DATE_SHT | "%d %b %y" (8)
|
TM_DATE_SHX | "%a %d %b %y" (11)
|
TM_DATE_LNG | "%d %B %Y" (8)
|
TM_DATE_LNX | "%A %d %B %Y" (11)
|
TM_DATETIME_EUR | "%d.%m.%Y %H:%M" (14)
|
TM_DATETIME_USA | "%m/%d/%y %I:%M%p" (16)
|
TM_DATETIME_SHT | "%d %b %y %H:%M" (14)
|
TM_DATETIME_SHX | "%a %d %b %y %H:%M" (17)
|
TM_DATETIME_LNG | "%d %B %Y, %H:%M" (15)
|
TM_DATETIME_LNX | "%A %d %B %Y, %H:%M" (18)
|
TM_TIME_EUR | "%H:%M" (5)
|
TM_TIME_USA | "%I:%M%p" (7)
|
TM_TIME_SHT | "%H:%M" (5)
|
TM_TIME_SHX | "%H:%M" (5)
|
TM_TIME_LNG | "%H:%M" (5)
|
TM_TIME_LNX | "%H:%M" (5)
|
Auth_OpenID_RAND_SOURCE | "/dev/urandom" (12)
|
LDAP_HOST | "77.78.104.57" (12)
|
LDAP_PORT | 389
|
LDAP_VERSION | 3
|
LDAP_USE_SSL | FALSE
|
LDAP_USER_BASE_DN | "ou=users,dc=int,dc=taskmanager,dc=com" (37)
|
LDAP_DEBUG_MODE_IS_ENABLED | FALSE
|
LDAP_USER_DEFAULT_ROLE | 2
|
LDAP_SERVICE_BIND_DN | "cn=Task_manager_service,ou=Service Accounts,ou=Flat Glass Czech HQ,ou=Czech Republic,ou=IT-Users,dc=glaverbel,dc=com" (116)
|
LDAP_SERVICE_BIND_PASSWORD | "<merova999>" (11)
|
HELPDESK_PREFIX | "hd_" (3)
|
TM_IS_ACTIVE_TEXT | "<p>TaskManager byl deaktivován, prosím kontaktujte nás pro opětovnou aktivaci nebo zakoupení komerčního řešeni.</p><p>Roman Stanec, IT Park, s.r.o., < ... " (240)
|
FACEBOOK_APP_ID | ""
|
FACEBOOK_APP_SECRET | ""
|
CALDAV_SERVER_PROTOCOL | "https" (5)
|
CALDAV_SERVER_DOMAIN | "gw.nosreti.cz" (13)
|
CALDAV_SERVER_SCRIPT_NAME | "caldav.php" (10)
|
CALDAV_DEBUG_MODE_IS_ENABLED | TRUE
|
GOOGLE_CLIENT_ID | "825882622534-irbte0ujc49ohn8h0p5g2g7879p579mf.apps.googleusercontent.com" (72)
|
GOOGLE_CLIENT_SECRET | "pRQ0ZerhwM32cYw9hDn7iKN2" (24)
|
GOOGLE_REDIRECT_URI | "https://taskmanager.cz/google.php" (33)
|
GOOGLE_MAPS_API_KEY | "AIzaSyDrtoC1lPFEDH4xAaOKHDSsjdXZp8UYrek" (39)
|
GOOGLE_REDIRECT_CALENDAR_URI | "https://taskmanager.cz/sommer/index.php?ctrl=Google&act=joinCalendar" (68)
|
GOOGLE_REDIRECT_OAUTH_URI | "https://taskmanager.cz/sommer/index.php?ctrl=Google&view=manageGCalendar&act=auth" (81)
|
TM_SUPPLIERS_ENABLED | FALSE
|
TM_SHOW_WORD_EXPORT | FALSE
|
TM_FABBRO_DEMAND_ITEMS_ID | 1
|
TM_FABBRO_DEMAND_DEMANDED_COUNT_ID | 2
|
TM_FABBRO_DEMAND_DEMANDED_COUNT_UNIT_ID | 25
|
TM_FABBRO_DEMAND_TRANSPORT_TO_ID | 4
|
TM_FABBRO_DEMAND_SUPPLIER_STREET_ID | 16
|
TM_FABBRO_DEMAND_SUPPLIER_TOWN_ID | 17
|
TM_FABBRO_DEMAND_SUPPLIER_ZIP_ID | 18
|
TM_FABBRO_DEMAND_SUPPLIER_COUNTRY_ID | 22
|
TM_PEI_HIDE_IN_GENERAL_TAB | "1,7" (3)
|
TM_PEI_MAP_COORDS | "144" (3)
|
TM_PEI_PROGRESS_GROUPS | "2,7,3" (5)
|
TM_PEI_CF_GROUPS | "1,2,7,3,5,6,12,31" (17)
|
TM_PEI_GALLERY_GROUPS | "1,2,7,3,5,6,12,31" (17)
|
TM_PEI_CASHFLOW_PROP1 | 135
|
TM_PEI_CASHFLOW_PROP2 | 136
|
TM_PEI_CASHFLOW_PROP3 | 80
|
TM_PEI_CASHFLOW_PROP4 | 81
|
TM_PEI_PROJECT_SOMETHING | 137
|
TM_PEI_FAKE_PROJECT_STATUS | 328
|
TM_PEI_FAKE_PROJECT_STATUS_ACTIVE | "313, 314" (8)
|
TM_PEI_COUNTDOWN_IN_GENERAL_TAB | "29,30,31" (8)
|
TM_PEI_INVOICES_SUM | FALSE
|
TM_PEI_INVOICES_CUSTOM_ID | 82
|
TM_PEI_COUNTRY_CUSTOM_ID | 9
|
TM_PEI_GPS_CUSTOM_ID | 4
|
TM_MARKETUP_WEB_ATTR_ORIGIN_CUSTOM_ID | 5
|
TM_MARKETUP_CUSTOM_USER_ATTR_SAZBA1_ID | 4
|
TM_MARKETUP_CUSTOM_USER_ATTR_SAZBA2_ID | 9
|
TM_MARKETUP_CUSTOM_TASK_ATTR_SAZBA_ID | 56
|
TM_MARKETUP_CUSTOM_TASK_ATTR_SAZBA1_VALUE_ID | 25
|
TM_MARKETUP_CUSTOM_TASK_ATTR_SAZBA2_VALUE_ID | 26
|
TM_MARKETUP_PROJECT_NO_CUSTOM_ID | 8
|
TM_MANDATORY_GROUPING | ""
|
TM_GROUPED_PROJECT_CUSTOM_PROP_1 | 0
|
TM_GROUPED_PROJECT_CUSTOM_PROP_2 | 0
|
TM_SHOW_HISTORY_ACTION | FALSE
|
TM_EFCA_SHOW_CASH_FLOW_ACTION | FALSE
|
TM_SHOW_INACTIVE_USERS | TRUE
|
TM_COLORED_SELECTIONS | FALSE
|
TM_ONLY_AUTHOR_CAN_FINISH_CHECKED_BY_DEFAULT | FALSE
|
TV_PUBLIC | 0
|
TV_INTERNAL | 1
|
TV_PRIVATE | 2
|
OT_TASK | 1
|
OT_PROJECT | 2
|
OT_USER | 3
|
OT_FOLLOWER | 4
|
OT_GROUP | 5
|
OT_SUPPLIER | 7
|
OT_FILE | 8
|
OT_COMMENT | 9
|
OT_WORKLOG | 10
|
OT_REPEATER | 11
|
OT_EVENT | 12
|
OT_SLA | 13
|
OT_CUSTOM_PROPERTY | 14
|
OT_AUTOMATIC_REPORT | 14
|
OT_PROJECT_STATE | 15
|
G_CONTROLLER | "ctrl" (4)
|
G_VIEW | "view" (4)
|
G_ACTION | "act" (3)
|
TM_DATE_SQL | "%Y-%m-%d" (8)
|
TM_DATETIME_SQL | "%Y-%m-%d %H:%M:%S" (17)
|
TM_AUTOLOGIN_DURATION_DAYS | 30
|
TM_SESSION_DURATION | 0
|
TM_SMS_BASE_URL | "http://api.clickatell.com/http/sendmsg" (38)
|
TM_GATEWAY_IP | "196.5.254.33" (12)
|
TM_JS_MSG_INFO_TIME | 3000
|
TM_JS_MSG_ERR_TIME | 4000
|
TM_JS_TAB_TTL | 60000
|
TM_TASKLIST_PAGE_SIZE | 45
|
TM_TASKLIST_PAGE_SIZE_PRELOAD | 80
|
TM_RECENT_TASKS | 15
|
PRJ_WWW_URL | "https://taskmanager.cz/sommer/" (30)
|
TM_CHARSET | "UTF-8" (5)
|
TM_MAX_THUMBNAIL_HEIGHT | 300
|
TM_MAX_THUMBNAIL_WIDTH | 150
|
Apache Version | Apache/2 |
Apache API Version | 20120211 |
Server Administrator | info@itpark.cz |
Hostname:Port | taskmanager.cz:0 |
User/Group | apache(995)/1002 |
Max Requests | Per Child: 10000 - Keep Alive: on - Max Per Connection: 100 |
Timeouts | Connection: 60 - Keep-Alive: 2 |
Virtual Server | Yes |
Server Root | /etc/httpd |
Loaded Modules | core mod_authn_file mod_authn_dbm mod_authn_anon mod_authn_dbd mod_authn_socache mod_authn_core mod_authz_host mod_authz_groupfile mod_authz_user mod_authz_dbm mod_authz_owner mod_authz_dbd mod_authz_core mod_access_compat mod_auth_basic mod_auth_form mod_auth_digest mod_allowmethods mod_file_cache mod_cache mod_cache_disk mod_cache_socache mod_socache_shmcb mod_socache_dbm mod_socache_memcache mod_so mod_macro mod_dbd mod_dumpio mod_buffer mod_ratelimit mod_reqtimeout mod_ext_filter mod_request mod_include mod_filter mod_substitute mod_sed mod_deflate http_core mod_mime mod_log_config mod_log_debug mod_logio mod_env mod_expires mod_headers mod_unique_id mod_setenvif mod_version mod_remoteip mod_proxy mod_proxy_connect mod_proxy_ftp mod_proxy_http mod_proxy_fcgi mod_proxy_scgi mod_proxy_wstunnel mod_proxy_ajp mod_proxy_balancer mod_proxy_express mod_session mod_session_cookie mod_session_dbd mod_slotmem_shm mod_ssl mod_lbmethod_byrequests mod_lbmethod_bytraffic mod_lbmethod_bybusyness mod_lbmethod_heartbeat mod_unixd mod_dav mod_status mod_autoindex mod_info mod_suexec mod_cgi mod_dav_fs mod_dav_lock mod_vhost_alias mod_negotiation mod_dir mod_actions mod_speling mod_userdir mod_alias mod_rewrite mod_systemd prefork mod_php5 |
Directive | Local Value | Master Value |
---|---|---|
engine | 1 | 1 |
last_modified | 0 | 0 |
xbithack | 0 | 0 |
Variable | Value |
---|---|
UNIQUE_ID | ZsLrG1mRVjsAABAb6EQAAAAD |
HTTPS | on |
SSL_TLS_SNI | taskmanager.cz |
HTTP_HOST | taskmanager.cz |
HTTP_USER_AGENT | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0 |
HTTP_ACCEPT | application/json, text/javascript, */*; q=0.01 |
HTTP_ACCEPT_LANGUAGE | cs,sk;q=0.8,en-US;q=0.5,en;q=0.3 |
HTTP_ACCEPT_ENCODING | gzip, deflate, br, zstd |
CONTENT_TYPE | application/x-www-form-urlencoded; charset=UTF-8 |
HTTP_X_REQUESTED_WITH | XMLHttpRequest |
CONTENT_LENGTH | 1219 |
HTTP_ORIGIN | https://taskmanager.cz |
HTTP_CONNECTION | keep-alive |
HTTP_REFERER | https://taskmanager.cz/sommer/index.php?tabId=5&ctrl=Tasks&view=List |
HTTP_COOKIE | TMtmsommer=0bgg4roskm6pjoktmph503rsk6 |
HTTP_SEC_FETCH_DEST | empty |
HTTP_SEC_FETCH_MODE | cors |
HTTP_SEC_FETCH_SITE | same-origin |
HTTP_SEC_GPC | 1 |
PATH | /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin |
SERVER_SIGNATURE | no value |
SERVER_SOFTWARE | Apache/2 |
SERVER_NAME | taskmanager.cz |
SERVER_ADDR | 89.145.86.59 |
SERVER_PORT | 443 |
REMOTE_ADDR | 213.168.176.147 |
DOCUMENT_ROOT | /webserver_legacy/taskmanager.cz |
REQUEST_SCHEME | https |
CONTEXT_PREFIX | no value |
CONTEXT_DOCUMENT_ROOT | /webserver_legacy/taskmanager.cz |
SERVER_ADMIN | info@itpark.cz |
SCRIPT_FILENAME | /webserver_legacy/taskmanager.cz/sommer/index.php |
REMOTE_PORT | 59011 |
GATEWAY_INTERFACE | CGI/1.1 |
SERVER_PROTOCOL | HTTP/1.1 |
REQUEST_METHOD | POST |
QUERY_STRING | ctrl=TasksJSON&act=autoReload |
REQUEST_URI | /sommer/index.php?ctrl=TasksJSON&act=autoReload |
SCRIPT_NAME | /sommer/index.php |
HTTP Request Headers | |
---|---|
HTTP Request | POST /sommer/index.php?ctrl=TasksJSON&act=autoReload HTTP/1.1 |
Host | taskmanager.cz |
User-Agent | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0 |
Accept | application/json, text/javascript, */*; q=0.01 |
Accept-Language | cs,sk;q=0.8,en-US;q=0.5,en;q=0.3 |
Accept-Encoding | gzip, deflate, br, zstd |
Content-Type | application/x-www-form-urlencoded; charset=UTF-8 |
X-Requested-With | XMLHttpRequest |
Content-Length | 1219 |
Origin | https://taskmanager.cz |
Connection | keep-alive |
Referer | https://taskmanager.cz/sommer/index.php?tabId=5&ctrl=Tasks&view=List |
Cookie | TMtmsommer=0bgg4roskm6pjoktmph503rsk6 |
Sec-Fetch-Dest | empty |
Sec-Fetch-Mode | cors |
Sec-Fetch-Site | same-origin |
Sec-GPC | 1 |
HTTP Response Headers | |
X-Powered-By | PHP/5.5.32 |
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 |
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.6, 6-Sept-2010 |
Calendar support | enabled |
PHP Version | 5.5.32 |
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 | no value | no value |
disable_functions | no value | no value |
display_errors | Off | Off |
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 | no value | no value |
error_prepend_string | no value | no value |
error_reporting | 0 | 4177 |
exit_on_timeout | Off | Off |
expose_php | On | On |
extension_dir | /usr/local/lib/php/extensions/no-debug-non-zts-20121212 | /usr/local/lib/php/extensions/no-debug-non-zts-20121212 |
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 | .:/usr/local/lib/php | .:/usr/local/lib/php |
log_errors | Off | On |
log_errors_max_len | 1024 | 1024 |
mail.add_x_header | On | On |
mail.force_extra_parameters | no value | no value |
mail.log | no value | no value |
max_execution_time | 240 | 240 |
max_file_uploads | 20 | 20 |
max_input_nesting_level | 64 | 64 |
max_input_time | 240 | 240 |
max_input_vars | 1000 | 1000 |
memory_limit | 728M | 728M |
open_basedir | no value | no value |
output_buffering | 4096 | 4096 |
output_handler | no value | no value |
post_max_size | 64M | 64M |
precision | 14 | 14 |
realpath_cache_size | 16K | 16K |
realpath_cache_ttl | 120 | 120 |
register_argc_argv | Off | Off |
report_memleaks | On | On |
report_zend_debug | On | On |
request_order | GP | GP |
sendmail_from | taskmanager@itpark.cz | taskmanager@itpark.cz |
sendmail_path | /usr/sbin/sendmail.postfix -t -i | /usr/sbin/sendmail.postfix -t -i |
serialize_precision | 17 | 17 |
short_open_tag | On | On |
SMTP | localhost | localhost |
smtp_port | 25 | 25 |
sql.safe_mode | Off | Off |
sys_temp_dir | no value | no value |
track_errors | Off | Off |
unserialize_callback_func | no value | no value |
upload_max_filesize | 64M | 64M |
upload_tmp_dir | no value | no value |
user_dir | no value | no value |
user_ini.cache_ttl | 300 | 300 |
user_ini.filename | .user.ini | .user.ini |
variables_order | GPCS | GPCS |
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.29.0 |
Age | 3 |
Features | |
AsynchDNS | Yes |
CharConv | No |
Debug | No |
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 | No |
Protocols | dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
Host | x86_64-redhat-linux-gnu |
SSL Version | NSS/3.90 |
ZLib Version | 1.2.7 |
libSSH Version | libssh2/1.8.0 |
date/time support | enabled |
"Olson" Timezone Database Version | 2015.5 |
Timezone Database | internal |
Default timezone | Europe/Prague |
Directive | Local Value | Master Value |
---|---|---|
date.default_latitude | 31.7667 | 31.7667 |
date.default_longitude | 35.2333 | 35.2333 |
date.sunrise_zenith | 90.583333 | 90.583333 |
date.sunset_zenith | 90.583333 | 90.583333 |
date.timezone | Europe/Prague | Europe/Prague |
DOM/XML | enabled |
DOM/XML API Version | 20031129 |
libxml Version | 2.9.3 |
HTML Support | enabled |
XPath Support | enabled |
XPointer Support | enabled |
Schema Support | enabled |
RelaxNG Support | enabled |
Regex Library | Bundled library enabled |
fileinfo support | enabled |
version | 1.0.5 |
Input Validation and Filtering | enabled |
Revision | $Id: fbeb8bbbf6cc97f568996dac46e13e48e2907326 $ |
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.6.2 |
GIF Read Support | enabled |
GIF Create Support | enabled |
JPEG Support | enabled |
libJPEG Version | 6b |
PNG Support | enabled |
libPNG Version | 1.6.21 |
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 | 6.0.0 |
hash support | enabled |
Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost 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.17 |
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 |
Internationalization support | enabled |
---|---|
version | 1.1.0 |
ICU version | 4.8.1.1 |
ICU Data version | 4.8.1 |
Directive | Local Value | Master Value |
---|---|---|
intl.default_locale | no value | no value |
intl.error_level | 0 | 0 |
intl.use_exceptions | 0 | 0 |
json support | enabled |
json version | 1.2.1 |
LDAP Support | enabled |
RCS Version | $Id: 4db15e5bb92af06390fd31ab784837ab21a3d2ce $ |
Total Links | 0/unlimited |
API Version | 3001 |
Vendor Name | OpenLDAP |
Vendor Version | 20440 |
Directive | Local Value | Master Value |
---|---|---|
ldap.max_links | Unlimited | Unlimited |
libXML support | active |
libXML Compiled Version | 2.9.3 |
libXML Loaded Version | 20903 |
libXML streams | enabled |
Multibyte Support | enabled |
Multibyte string engine | libmbfl |
HTTP input encoding translation | disabled |
libmbfl version | 1.3.2 |
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 | 5.9.2 |
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 |
memcache support | enabled |
---|---|
Active persistent connections | 0 |
Version | 2.2.4 |
Revision | $Revision: 1.104 $ |
Directive | Local Value | Master Value |
---|---|---|
memcache.allow_failover | 1 | 1 |
memcache.chunk_size | 8192 | 8192 |
memcache.default_port | 11211 | 11211 |
memcache.hash_function | crc32 | crc32 |
memcache.hash_strategy | standard | standard |
memcache.max_failover_attempts | 20 | 20 |
MHASH support | Enabled |
MHASH API Version | Emulated Support |
MySQL Support | enabled |
---|---|
Active Persistent Links | 0 |
Active Links | 0 |
Client API version | mysqlnd 5.0.11-dev - 20120503 - $Id: 15d5c781cfcad91193dceae1d2cdd127674ddb3e $ |
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 | /var/lib/mysql/mysql.sock | /var/lib/mysql/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 | mysqlnd 5.0.11-dev - 20120503 - $Id: 15d5c781cfcad91193dceae1d2cdd127674ddb3e $ |
Active Persistent Links | 0 |
Inactive Persistent Links | 0 |
Active Links | 0 |
Directive | Local Value | Master Value |
---|---|---|
mysqli.allow_local_infile | On | On |
mysqli.allow_persistent | On | On |
mysqli.default_host | no value | no value |
mysqli.default_port | 3306 | 3306 |
mysqli.default_pw | no value | no value |
mysqli.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
mysqli.default_user | no value | no value |
mysqli.max_links | Unlimited | Unlimited |
mysqli.max_persistent | Unlimited | Unlimited |
mysqli.reconnect | Off | Off |
mysqlnd | enabled |
---|---|
Version | mysqlnd 5.0.11-dev - 20120503 - $Id: 15d5c781cfcad91193dceae1d2cdd127674ddb3e $ |
Compression | supported |
core SSL | supported |
extended SSL | supported |
Command buffer size | 4096 |
Read buffer size | 32768 |
Read timeout | 31536000 |
Collecting statistics | Yes |
Collecting memory statistics | No |
Tracing | n/a |
Loaded plugins | mysqlnd,debug_trace,auth_plugin_mysql_native_password,auth_plugin_mysql_clear_password,auth_plugin_sha256_password |
API Extensions | pdo_mysql,mysqli,mysql |
mysqlnd statistics | |
---|---|
bytes_sent | 270835 |
bytes_received | 1917546 |
packets_sent | 4732 |
packets_received | 27060 |
protocol_overhead_in | 108240 |
protocol_overhead_out | 18928 |
bytes_received_ok_packet | 0 |
bytes_received_eof_packet | 0 |
bytes_received_rset_header_packet | 20376 |
bytes_received_rset_field_meta_packet | 0 |
bytes_received_rset_row_packet | 11946 |
bytes_received_prepare_response_packet | 973258 |
bytes_received_change_user_packet | 897616 |
packets_sent_command | 2336 |
packets_received_ok | 0 |
packets_received_eof | 0 |
packets_received_rset_header | 2264 |
packets_received_rset_field_meta | 0 |
packets_received_rset_row | 2306 |
packets_received_prepare_response | 15178 |
packets_received_change_user | 7252 |
result_set_queries | 2264 |
non_result_set_queries | 42 |
no_index_used | 1754 |
bad_index_used | 0 |
slow_queries | 0 |
buffered_sets | 2264 |
unbuffered_sets | 0 |
ps_buffered_sets | 0 |
ps_unbuffered_sets | 0 |
flushed_normal_sets | 0 |
flushed_ps_sets | 0 |
ps_prepared_never_executed | 0 |
ps_prepared_once_executed | 0 |
rows_fetched_from_server_normal | 4988 |
rows_fetched_from_server_ps | 0 |
rows_buffered_from_client_normal | 4988 |
rows_buffered_from_client_ps | 0 |
rows_fetched_from_client_normal_buffered | 4988 |
rows_fetched_from_client_normal_unbuffered | 0 |
rows_fetched_from_client_ps_buffered | 0 |
rows_fetched_from_client_ps_unbuffered | 0 |
rows_fetched_from_client_ps_cursor | 0 |
rows_affected_normal | 0 |
rows_affected_ps | 0 |
rows_skipped_normal | 4988 |
rows_skipped_ps | 0 |
copy_on_write_saved | 24838 |
copy_on_write_performed | 0 |
command_buffer_too_small | 0 |
connect_success | 30 |
connect_failure | 1 |
connection_reused | 0 |
reconnect | 0 |
pconnect_success | 4 |
active_connections | 18446744073709551584 |
active_persistent_connections | 18446744073709551610 |
explicit_close | 29 |
implicit_close | 0 |
disconnect_close | 0 |
in_middle_of_command_close | 0 |
explicit_free_result | 2264 |
implicit_free_result | 0 |
explicit_stmt_close | 0 |
implicit_stmt_close | 0 |
mem_emalloc_count | 0 |
mem_emalloc_amount | 0 |
mem_ecalloc_count | 0 |
mem_ecalloc_amount | 0 |
mem_erealloc_count | 0 |
mem_erealloc_amount | 0 |
mem_efree_count | 0 |
mem_efree_amount | 0 |
mem_malloc_count | 0 |
mem_malloc_amount | 0 |
mem_calloc_count | 0 |
mem_calloc_amount | 0 |
mem_realloc_count | 0 |
mem_realloc_amount | 0 |
mem_free_count | 0 |
mem_free_amount | 0 |
mem_estrndup_count | 0 |
mem_strndup_count | 0 |
mem_estndup_count | 0 |
mem_strdup_count | 0 |
proto_text_fetched_null | 0 |
proto_text_fetched_bit | 0 |
proto_text_fetched_tinyint | 16 |
proto_text_fetched_short | 4 |
proto_text_fetched_int24 | 0 |
proto_text_fetched_int | 12482 |
proto_text_fetched_bigint | 0 |
proto_text_fetched_decimal | 0 |
proto_text_fetched_float | 0 |
proto_text_fetched_double | 0 |
proto_text_fetched_date | 286 |
proto_text_fetched_year | 0 |
proto_text_fetched_time | 0 |
proto_text_fetched_datetime | 20 |
proto_text_fetched_timestamp | 0 |
proto_text_fetched_string | 6932 |
proto_text_fetched_blob | 5062 |
proto_text_fetched_enum | 0 |
proto_text_fetched_set | 0 |
proto_text_fetched_geometry | 0 |
proto_text_fetched_other | 0 |
proto_binary_fetched_null | 0 |
proto_binary_fetched_bit | 0 |
proto_binary_fetched_tinyint | 0 |
proto_binary_fetched_short | 0 |
proto_binary_fetched_int24 | 0 |
proto_binary_fetched_int | 0 |
proto_binary_fetched_bigint | 0 |
proto_binary_fetched_decimal | 0 |
proto_binary_fetched_float | 0 |
proto_binary_fetched_double | 0 |
proto_binary_fetched_date | 0 |
proto_binary_fetched_year | 0 |
proto_binary_fetched_time | 0 |
proto_binary_fetched_datetime | 0 |
proto_binary_fetched_timestamp | 0 |
proto_binary_fetched_string | 0 |
proto_binary_fetched_blob | 0 |
proto_binary_fetched_enum | 0 |
proto_binary_fetched_set | 0 |
proto_binary_fetched_geometry | 0 |
proto_binary_fetched_other | 0 |
init_command_executed_count | 30 |
init_command_failed_count | 0 |
com_quit | 26 |
com_init_db | 0 |
com_query | 2306 |
com_field_list | 0 |
com_create_db | 0 |
com_drop_db | 0 |
com_refresh | 0 |
com_shutdown | 0 |
com_statistics | 0 |
com_process_info | 0 |
com_connect | 0 |
com_process_kill | 0 |
com_debug | 0 |
com_ping | 4 |
com_time | 0 |
com_delayed_insert | 0 |
com_change_user | 0 |
com_binlog_dump | 0 |
com_table_dump | 0 |
com_connect_out | 0 |
com_register_slave | 0 |
com_stmt_prepare | 0 |
com_stmt_execute | 0 |
com_stmt_send_long_data | 0 |
com_stmt_close | 0 |
com_stmt_reset | 0 |
com_stmt_set_option | 0 |
com_stmt_fetch | 0 |
com_deamon | 0 |
bytes_received_real_data_normal | 842774 |
bytes_received_real_data_ps | 0 |
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.20 2011-10-21 |
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 | mysqlnd 5.0.11-dev - 20120503 - $Id: 15d5c781cfcad91193dceae1d2cdd127674ddb3e $ |
Directive | Local Value | Master Value |
---|---|---|
pdo_mysql.default_socket | /var/lib/mysql/mysql.sock | /var/lib/mysql/mysql.sock |
PDO Driver for SQLite 3.x | enabled |
---|---|
SQLite Library | 3.8.10.2 |
Phar: PHP Archive support | enabled |
---|---|
Phar EXT version | 2.0.2 |
Phar API version | 1.1.1 |
SVN revision | $Id: 4b9a493926fec4e6d913722b7a94602c7850c27e $ |
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: 5d20de77687b7d961b15450873fa23b9e64a136a $ |
Reflection | enabled |
---|---|
Version | $Id: dc76d2fe0f3e9c327c1d4ca617d94e26c7fae98d $ |
Session Support | enabled |
Registered save handlers | files user memcache |
Registered serializer handlers | php_serialize php php_binary |
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 | 0 | 0 |
session.cookie_path | / | / |
session.cookie_secure | Off | Off |
session.entropy_file | /dev/urandom | /dev/urandom |
session.entropy_length | 32 | 32 |
session.gc_divisor | 1000 | 1000 |
session.gc_maxlifetime | 1440 | 1440 |
session.gc_probability | 1 | 1 |
session.hash_bits_per_character | 5 | 5 |
session.hash_function | 0 | 0 |
session.name | TMtmsommer | PHPSESSID |
session.referer_check | no value | no value |
session.save_handler | files | files |
session.save_path | /webserver_legacy/taskmanager.cz/sommer/session/ | no value |
session.serialize_handler | php | php |
session.upload_progress.cleanup | On | On |
session.upload_progress.enabled | On | On |
session.upload_progress.freq | 1% | 1% |
session.upload_progress.min_freq | 1 | 1 |
session.upload_progress.name | PHP_SESSION_UPLOAD_PROGRESS | PHP_SESSION_UPLOAD_PROGRESS |
session.upload_progress.prefix | upload_progress_ | upload_progress_ |
session.use_cookies | On | On |
session.use_only_cookies | On | On |
session.use_strict_mode | Off | Off |
session.use_trans_sid | 0 | 0 |
Simplexml support | enabled |
---|---|
Revision | $Id: 6b8e23a01a85046737ef7d31346da5164505c179 $ |
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 | 50 | 50 |
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-dev |
SQLite Library | 3.8.10.2 |
Directive | Local Value | Master Value |
---|---|---|
sqlite3.extension_dir | no value | no value |
Dynamic Library Support | enabled |
Path to sendmail | /usr/sbin/sendmail.postfix -t -i |
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 | 240 | 240 |
from | taskmanager@itpark.cz | taskmanager@itpark.cz |
url_rewriter.tags | a=href,area=href,frame=src,input=src,form=fakeentry | a=href,area=href,frame=src,input=src,form=fakeentry |
user_agent | no value | no value |
This server is protected with the Suhosin Extension 0.9.38 Copyright (c) 2006-2007 Hardened-PHP Project Copyright (c) 2007-2015 SektionEins GmbH |
Directive | Local Value | Master Value |
---|---|---|
suhosin.apc_bug_workaround | Off | Off |
suhosin.cookie.checkraddr | 0 | 0 |
suhosin.cookie.cryptdocroot | On | On |
suhosin.cookie.cryptkey | [ protected ] | [ protected ] |
suhosin.cookie.cryptlist | no value | no value |
suhosin.cookie.cryptraddr | 0 | 0 |
suhosin.cookie.cryptua | On | On |
suhosin.cookie.disallow_nul | 1 | 1 |
suhosin.cookie.disallow_ws | 1 | 1 |
suhosin.cookie.encrypt | Off | Off |
suhosin.cookie.max_array_depth | 50 | 50 |
suhosin.cookie.max_array_index_length | 64 | 64 |
suhosin.cookie.max_name_length | 64 | 64 |
suhosin.cookie.max_totalname_length | 256 | 256 |
suhosin.cookie.max_value_length | 10000 | 10000 |
suhosin.cookie.max_vars | 100 | 100 |
suhosin.cookie.plainlist | no value | no value |
suhosin.coredump | Off | Off |
suhosin.disable.display_errors | Off | Off |
suhosin.executor.allow_symlink | Off | Off |
suhosin.executor.disable_emodifier | Off | Off |
suhosin.executor.disable_eval | Off | Off |
suhosin.executor.eval.blacklist | no value | no value |
suhosin.executor.eval.whitelist | no value | no value |
suhosin.executor.func.blacklist | no value | no value |
suhosin.executor.func.whitelist | no value | no value |
suhosin.executor.include.allow_writable_files | On | On |
suhosin.executor.include.blacklist | no value | no value |
suhosin.executor.include.max_traversal | 0 | 0 |
suhosin.executor.include.whitelist | phar | phar |
suhosin.executor.max_depth | 750 | 750 |
suhosin.filter.action | no value | no value |
suhosin.get.disallow_nul | 1 | 1 |
suhosin.get.disallow_ws | 0 | 0 |
suhosin.get.max_array_depth | 50 | 50 |
suhosin.get.max_array_index_length | 256 | 256 |
suhosin.get.max_name_length | 64 | 64 |
suhosin.get.max_totalname_length | 8192 | 8192 |
suhosin.get.max_value_length | 10000 | 10000 |
suhosin.get.max_vars | 1000 | 1000 |
suhosin.log.file | 0 | 0 |
suhosin.log.file.name | no value | no value |
suhosin.log.file.time | On | On |
suhosin.log.phpscript | 0 | 0 |
suhosin.log.phpscript.is_safe | Off | Off |
suhosin.log.phpscript.name | no value | no value |
suhosin.log.sapi | 0 | 0 |
suhosin.log.script | 0 | 0 |
suhosin.log.script.name | no value | no value |
suhosin.log.stdout | 0 | 0 |
suhosin.log.syslog | no value | no value |
suhosin.log.syslog.facility | no value | no value |
suhosin.log.syslog.priority | no value | no value |
suhosin.log.use-x-forwarded-for | Off | Off |
suhosin.mail.protect | 0 | 0 |
suhosin.memory_limit | 0 | 0 |
suhosin.mt_srand.ignore | On | On |
suhosin.multiheader | Off | Off |
suhosin.perdir | 0 | 0 |
suhosin.post.disallow_nul | 1 | 1 |
suhosin.post.disallow_ws | 0 | 0 |
suhosin.post.max_array_depth | 50 | 50 |
suhosin.post.max_array_index_length | 64 | 64 |
suhosin.post.max_name_length | 64 | 64 |
suhosin.post.max_totalname_length | 256 | 256 |
suhosin.post.max_value_length | 1000000 | 1000000 |
suhosin.post.max_vars | 1000 | 1000 |
suhosin.protectkey | On | On |
suhosin.rand.reseed_every_request | Off | Off |
suhosin.rand.seedingkey | [ protected ] | [ protected ] |
suhosin.request.array_index_blacklist | '"+<>;() | '"+<>;() |
suhosin.request.array_index_whitelist | no value | no value |
suhosin.request.disallow_nul | 1 | 1 |
suhosin.request.disallow_ws | 0 | 0 |
suhosin.request.max_array_depth | 50 | 50 |
suhosin.request.max_array_index_length | 64 | 64 |
suhosin.request.max_totalname_length | 256 | 256 |
suhosin.request.max_value_length | 1000000 | 1000000 |
suhosin.request.max_varname_length | 64 | 64 |
suhosin.request.max_vars | 1000 | 1000 |
suhosin.server.encode | On | On |
suhosin.server.strip | On | On |
suhosin.session.checkraddr | 0 | 0 |
suhosin.session.cryptdocroot | On | On |
suhosin.session.cryptkey | [ protected ] | [ protected ] |
suhosin.session.cryptraddr | 0 | 0 |
suhosin.session.cryptua | Off | Off |
suhosin.session.encrypt | Off | Off |
suhosin.session.max_id_length | 128 | 128 |
suhosin.simulation | Off | Off |
suhosin.sql.bailout_on_error | Off | Off |
suhosin.sql.comment | 0 | 0 |
suhosin.sql.multiselect | 0 | 0 |
suhosin.sql.opencomment | 0 | 0 |
suhosin.sql.union | 0 | 0 |
suhosin.sql.user_match | no value | no value |
suhosin.sql.user_postfix | no value | no value |
suhosin.sql.user_prefix | no value | no value |
suhosin.srand.ignore | On | On |
suhosin.stealth | On | On |
suhosin.upload.disallow_binary | 0 | 0 |
suhosin.upload.disallow_elf | 1 | 1 |
suhosin.upload.max_newlines | 100 | 100 |
suhosin.upload.max_uploads | 25 | 25 |
suhosin.upload.remove_binary | 0 | 0 |
suhosin.upload.verification_script | no value | no value |
Tokenizer Support | enabled |
XML Support | active |
XML Namespace Support | active |
libxml2 Version | 2.9.3 |
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.28 |
libxslt compiled against libxml Version | 2.9.3 |
EXSLT | enabled |
libexslt Version | 1.1.28 |
Zip | enabled |
Extension Version | $Id: 99c293c6d7426a83c60d234956aa10f0b56218fb $ |
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.7 |
Linked Version | 1.2.7 |
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 |
---|
Host | taskmanager.cz |
---|---|
User-Agent | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0 |
Accept | application/json, text/javascript, */*; q=0.01 |
Accept-Language | cs,sk;q=0.8,en-US;q=0.5,en;q=0.3 |
Accept-Encoding | gzip, deflate, br, zstd |
Content-Type | application/x-www-form-urlencoded; charset=UTF-8 |
X-Requested-With | XMLHttpRequest |
Content-Length | 1219 |
Origin | https://taskmanager.cz |
Connection | keep-alive |
Referer | https://taskmanager.cz/sommer/index.php?tabId=5&ctrl=Tasks&view=List |
Cookie | TMtmsommer=0bgg4roskm6pjoktmph503rsk6 |
Sec-Fetch-Dest | empty |
Sec-Fetch-Mode | cors |
Sec-Fetch-Site | same-origin |
Sec-GPC | 1 |
ctrl | "TasksJSON" (9)
|
---|---|
act | "autoReload" (10)
|
time | "Mon, 19 Aug 2024 06:14:51 GMT" (29)
|
---|---|
viewport |
TMtmsommer | "0bgg4roskm6pjoktmph503rsk6" (26)
|
---|
X-Powered-By: PHP/5.5.32
Content-type: text/html; charset=UTF-8
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