Cannot send header after HTTP headers have been sent (output started at /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/Debugger.php:616). search►
File: .../libs/Nette/Http/Response.php Line: 93
83: /** 84: * Sends a HTTP header and replaces a previous one. 85: * @param string header name 86: * @param string header value 87: * @return self 88: * @throws Nette\InvalidStateException if HTTP headers have been sent 89: */ 90: public function setHeader($name, $value) 91: { 92: if (headers_sent($file, $line)) { 93: throw new Nette\InvalidStateException("Cannot send header after HTTP headers have been sent" . ($file ? " (output started at $file:$line)." : ".")); 94: } 95: 96: if ($value === NULL && function_exists('header_remove')) { 97: header_remove($name);
.../libs/Nette/Http/Response.php:134 source ► Nette\Http\Response-> setHeader (arguments ►)
| $name | "Content-Type" (12)
|
|---|---|
| $value | "application/json" (16)
|
124: 125: /** 126: * Sends a Content-type HTTP header. 127: * @param string mime-type 128: * @param string charset 129: * @return self 130: * @throws Nette\InvalidStateException if HTTP headers have been sent 131: */ 132: public function setContentType($type, $charset = NULL) 133: { 134: $this->setHeader('Content-Type', $type . ($charset ? '; charset=' . $charset : '')); 135: return $this; 136: } 137: 138:
.../libs/Nette/Application/Responses/JsonResponse.php:73 source ► Nette\Http\Response-> setContentType (arguments ►)
| $type | "application/json" (16)
|
|---|
63: return $this->contentType; 64: } 65: 66: 67: /** 68: * Sends response to output. 69: * @return void 70: */ 71: public function send(Nette\Http\IRequest $httpRequest, Nette\Http\IResponse $httpResponse) 72: { 73: $httpResponse->setContentType($this->contentType); 74: $httpResponse->setExpiration(FALSE); 75: echo Nette\Utils\Json::encode($this->payload); 76: } 77:
.../libs/Nette/Application/Application.php:139 source ► Nette\Application\Responses\JsonResponse-> send (arguments ►)
| $httpRequest | Nette\Http\Request(9) ► |
|---|---|
| $httpResponse | Nette\Http\Response(5) ▼ |
129: if ($response) { 130: $this->onResponse($this, $response); 131: } 132: 133: // Send response 134: if ($response instanceof Responses\ForwardResponse) { 135: $request = $response->getRequest(); 136: continue; 137: 138: } elseif ($response instanceof IResponse) { 139: $response->send($this->httpRequest, $this->httpResponse); 140: } 141: break; 142: 143: } catch (\Exception $e) {
.../www/index.php:10 source ► Nette\Application\Application-> run ()
1: <?php 2: 3: // Uncomment this line if you must temporarily take down your site for maintenance. 4: // require '.maintenance.php'; 5: 6: // Let bootstrap create Dependency Injection container. 7: $container = require __DIR__ . '/../app/bootstrap.php'; 8: 9: // Run application. 10: $container->application->run(); 11:
array(1) ▼ [
0 => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => FALSE
}
name private => "User:MyLections" (15)
params private => array(5) ▼ {
action => "dayView" (7)
id => NULL
day => "2014-6-20" (9)
do => "dayView-ChooseLection" (21)
"dayView-l_id" => "43" (2)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
]
UserModule\MyLectionsPresenter(38) ► {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) ▼ {
connection private => Nette\Database\Connection(6) { *RECURSION* }
}
preprocessor private => Nette\Database\SqlPreprocessor(6) ▼ {
connection private => Nette\Database\Connection(6) { *RECURSION* }
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
params private => array(1) [ ... ]
remaining private => array(0)
counter private => 1
arrayMode private => "assoc" (5)
}
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) ▼ {
cache protected => Nette\Caching\Cache(4) { ... }
cacheStorage protected => Nette\Caching\Storages\FileStorage(4) { ... }
connection protected => Nette\Database\Connection(6) { *RECURSION* }
structure protected => array(3) { ... }
loadedStructure protected => array(3) { ... }
}
cache private => Nette\Caching\Cache(4) ▼ {
storage private => Nette\Caching\Storages\FileStorage(4) { ... }
namespace private => "Nette.Database.6d96dc602f1bc0028ce64ee07b3e59fe\x00" (48)
key private => NULL
data private => NULL
}
onQuery => array(1) ▼ [
0 => array(2) [ ... ]
]
}
lectionsRepository protected => LectionsRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
usersRepository protected => UsersRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
userInfoRepository protected => UserInfoRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
pricesRepository protected => PricesRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
reservationsRepository protected => ReservationsRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
paymentRepository protected => PaymentsRepository(1) ▼ {
connection protected => Nette\Database\Connection(6) ▼ {
dsn private => "mysql:host=wm49.wedos.net;dbname=d29551_spining" (47)
driver private => Nette\Database\Drivers\MySqlDriver(1) { ... }
preprocessor private => Nette\Database\SqlPreprocessor(6) { ... }
databaseReflection private => Nette\Database\Reflection\DiscoveredReflection(5) { ... }
cache private => Nette\Caching\Cache(4) { ... }
onQuery => array(1) [ ... ]
}
}
userData => array(8) ► {
u_id => 1
u_type => "1"
login => "kreed" (5)
email => "marty.sedlar@gmail.com" (22)
last_login => Nette\DateTime(3) ▼ {
date => "2014-06-10 19:25:38" (19)
timezone_type => 3
timezone => "Europe/Prague" (13)
}
reg_date => Nette\DateTime(3) ▼ {
date => "2014-02-19 12:00:14" (19)
timezone_type => 3
timezone => "Europe/Prague" (13)
}
act => "1"
pincode => 2568
}
user => Nette\Security\Identity(4) ▼ {
id private => 1
roles private => array(8) ► {
u_id => 1
u_type => "1"
login => "kreed" (5)
email => "marty.sedlar@gmail.com" (22)
last_login => Nette\DateTime(3) { ... }
reg_date => Nette\DateTime(3) { ... }
act => "1"
pincode => 2568
}
data private => array(0)
frozen private => FALSE
}
invalidLinkMode => 2
onShutdown => NULL
request private => Nette\Application\Request(7) ► {
method private => "GET" (3)
flags private => array(1) ▼ {
secured => FALSE
}
name private => "User:MyLections" (15)
params private => array(5) ▼ {
action => "dayView" (7)
id => NULL
day => "2014-6-20" (9)
do => "dayView-ChooseLection" (21)
"dayView-l_id" => "43" (2)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
response private => Nette\Application\Responses\JsonResponse(2) ▼ {
payload private => stdClass(2) ▼ {
state => array(0)
snippets => array(1) { ... }
}
contentType private => "application/json" (16)
}
autoCanonicalize => TRUE
absoluteUrls => FALSE
globalParams private => array(0)
globalState private => array(0)
globalStateSinces private => array(0)
action private => "dayView" (7)
view private => "dayView" (7)
layout private => NULL
payload private => stdClass(2) ▼ {
state => array(0)
snippets => array(1) ▼ {
"snippet-dayView-reservationsTable" => "
<h3>Lekce spinning student</h3>
<div id="lection-detail">
<span id="lection-detail-time"><label>Čas:</label> 20. 06. 2014 19:00 - 19:45</s ... " (2846)
}
}
signalReceiver private => "dayView" (7)
signal private => NULL
ajaxMode private => TRUE
startupCheck private => TRUE
lastCreatedRequest private => Nette\Application\Request(7) ► {
method private => "FORWARD" (7)
flags private => array(0)
name private => "User:MyLections" (15)
params private => array(3) ▼ {
day => "2014-6-20" (9)
action => "dayView" (7)
do => "dayView-reservationButton-reservation-submit" (44)
}
post private => array(0)
files private => array(0)
frozen private => FALSE
}
lastCreatedRequestFlag private => array(1) ▼ {
current => FALSE
}
context private => SystemContainer(8) ► {
classes => array(41) ► {
"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\application\irouter" => "router" (6)
"nette\mail\imailer" => "nette.mailer" (12)
"nette\mail\sendmailmailer" => "nette.mailer" (12)
"nette\di\nestedaccessor" => "nette.database" (14)
pdo => "nette.database.default" (22)
"nette\database\connection" => "nette.database.default" (22)
repository => FALSE
supportrepository => "supportRepository" (17)
pricesrepository => "pricesRepository" (16)
emailrepository => "emailRepository" (15)
reservationsrepository => "reservationsRepository" (22)
creditrepository => "creditRepository" (16)
lectionsrepository => "lectionsRepository" (18)
paymentsrepository => "paymetsRepository" (17)
"nette\security\iauthenticator" => "authenticator" (13)
myautenticator => "authenticator" (13)
routerfactory => "routerFactory" (13)
usersrepository => "usersRepository" (15)
userinforepository => "userInfoRepository" (18)
"nette\freezableobject" => "container" (9)
"nette\ifreezable" => "container" (9)
"nette\di\icontainer" => "container" (9)
"nette\di\container" => "container" (9)
}
meta => array(0)
parameters => array(8) ► {
appDir => "/data/web/virtuals/29551/virtual/www/spining/app" (48)
wwwDir => "/data/web/virtuals/29551/virtual/www/spining/www" (48)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/data/web/virtuals/29551/virtual/www/spining/app/../temp" (56)
}
params => array(8) ► {
appDir => "/data/web/virtuals/29551/virtual/www/spining/app" (48)
wwwDir => "/data/web/virtuals/29551/virtual/www/spining/www" (48)
debugMode => TRUE
productionMode => FALSE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/data/web/virtuals/29551/virtual/www/spining/app/../temp" (56)
}
registry private => array(22) ► {
"nette.httpRequestFactory" => Nette\Http\RequestFactory(2) { ... }
httpRequest => Nette\Http\Request(9) { ... }
httpResponse => Nette\Http\Response(5) { ... }
session => Nette\Http\Session(4) { ... }
"nette.presenterFactory" => Nette\Application\PresenterFactory(4) { ... }
routerFactory => RouterFactory(0)
router => Nette\Application\Routers\RouteList(3) { ... }
application => Nette\Application\Application(14) { ... }
container => SystemContainer(8) { *RECURSION* }
"nette.cacheJournal" => Nette\Caching\Storages\FileJournal(9) { ... }
cacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
"nette.database.defaultConnectionPanel" => Nette\Database\Diagnostics\ConnectionPanel(5) { ... }
"nette.database.default" => Nette\Database\Connection(6) { ... }
usersRepository => UsersRepository(1) { ... }
userInfoRepository => UserInfoRepository(1) { ... }
paymetsRepository => PaymentsRepository(1) { ... }
lectionsRepository => LectionsRepository(1) { ... }
pricesRepository => PricesRepository(1) { ... }
reservationsRepository => ReservationsRepository(1) { ... }
"nette.templateCacheStorage" => Nette\Caching\Storages\PhpFileStorage(5) { ... }
"nette.userStorage" => Nette\Http\UserStorage(3) { ... }
user => Nette\Security\User(8) { ... }
}
factories private => array(0)
creating private => array(0)
frozen private => FALSE
}
template private => Nette\Templating\FileTemplate(8) ► {
file private => "/data/web/virtuals/29551/virtual/www/spining/app/UserModule/templates/MyLections/dayView.latte" (94)
onPrepareFilters => array(1) ▼ [
0 => Nette\Callback(1) { ... }
]
source private => NULL
params private => array(17) ► {
_control => UserModule\MyLectionsPresenter(38) { *RECURSION* }
control => UserModule\MyLectionsPresenter(38) { *RECURSION* }
_presenter => UserModule\MyLectionsPresenter(38) { *RECURSION* }
presenter => UserModule\MyLectionsPresenter(38) { *RECURSION* }
user => Nette\Security\User(8) { ... }
netteHttpResponse => Nette\Http\Response(5) { ... }
netteCacheStorage => Nette\Caching\Storages\FileStorage(4) { ... }
baseUrl => "http://spinning.sbrothersweb.eu" (31)
baseUri => "http://spinning.sbrothersweb.eu" (31)
basePath => ""
flashes => array(0)
DayMoveLeft => "2014-06-19" (10)
DayMoveRight => "2014-06-21" (10)
L_id => "43" (2)
template => Nette\Templating\FileTemplate(8) { *RECURSION* }
_g => stdClass(0)
_extended => TRUE
}
filters private => array(0)
helpers private => array(0)
helperLoaders private => array(1) ▼ [
0 => Nette\Callback(1) { ... }
]
cacheStorage private => Nette\Caching\Storages\PhpFileStorage(5) ▼ {
hint => "/LectionReservation/LectionReservation.latte" (44)
dir private => "/data/web/virtuals/29551/virtual/www/spining/temp/cache" (55)
useDirs private => TRUE
journal private => Nette\Caching\Storages\FileJournal(9) { ... }
locks private => NULL
}
}
invalidSnippets private => array(0)
snippetMode => TRUE
params protected => array(4) ▼ {
action => "dayView" (7)
id => NULL
day => "2014-6-20" (9)
do => "dayView-ChooseLection" (21)
}
components private => array(4) ▼ {
dayView => komponent\DayView(36) ► {
day private => "pátek 20. června 2014" (23)
dayLink private => "2014-6-20" (9)
date private => "2014-6-20" (9)
template private => Nette\Templating\FileTemplate(8) { ... }
DayBegin private => 1403244000
DayEnd private => 1403294400
TimeStep private => 60
eventsArray private => array(1) [ ... ]
eventCouonter private => 1
noData private => NULL
showType private => "sign" (4)
usersArray private => array(0)
Hours private => 14
HourWidth private => 7.0
OneMinute private => 0.11904761904762
popupWidth private => 400
popupHeight private => "auto" (4)
user_id private => 1
presenter private => UserModule\MyLectionsPresenter(38) { *RECURSION* }
userInfoRepository private => UserInfoRepository(1) { ... }
usersRepository private => UsersRepository(1) { ... }
pricesRepository private => PricesRepository(1) { ... }
reservationsRepository private => ReservationsRepository(1) { ... }
lectionsRepository private => LectionsRepository(1) { ... }
paymentsRepository private => PaymentsRepository(1) { ... }
l_id private => "43" (2)
lectors private => array(6) { ... }
template private => NULL
invalidSnippets private => array(0)
snippetMode => FALSE
params protected => array(1) { ... }
components private => array(4) { ... }
cloning private => NULL
parent private => UserModule\MyLectionsPresenter(38) { *RECURSION* }
name private => "dayView" (7)
monitors private => array(1) { ... }
}
horizontalMenu => komponent\HorizontalMenu(12) ► {
template private => NULL
menuItems private => array(5) { ... }
actualPosition private => "MyLections" (10)
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(0)
components private => array(0)
cloning private => NULL
parent private => UserModule\MyLectionsPresenter(38) { *RECURSION* }
name private => "horizontalMenu" (14)
monitors private => array(1) { ... }
}
leftMenu => komponent\LeftMenu(14) ► {
template private => NULL
menuItems private => array(2) { ... }
label private => "Nabídka" (8)
basePath private => NULL
actualPosition private => "dayView" (7)
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(0)
components private => array(0)
cloning private => NULL
parent private => UserModule\MyLectionsPresenter(38) { *RECURSION* }
name private => "leftMenu" (8)
monitors private => array(1) { ... }
}
loginBaner => komponent\LoginIcon(15) ► {
template protected => NULL
userData protected => stdClass(8) { ... }
userInfoData protected => Nette\Database\Table\ActiveRow(4) { ... }
login protected => NULL
presenter protected => UserModule\MyLectionsPresenter(38) { *RECURSION* }
Logged protected => TRUE
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(0)
components private => array(0)
cloning private => NULL
parent private => UserModule\MyLectionsPresenter(38) { *RECURSION* }
name private => "loginBaner" (10)
monitors private => array(1) { ... }
}
}
cloning private => NULL
parent private => NULL
name private => "User:MyLections" (15)
monitors private => array(0)
}
| TMPDIR | "/data/web/virtuals/29551/virtual/tmp" (36)
|
|---|---|
| PHPRC | "/data/web/php53" (15)
|
| PHP_INI_SCAN_DIR | "/data/web/virtuals/29551" (24)
|
| PATH | "/sbin:/usr/sbin:/bin:/usr/bin" (29)
|
| PWD | "/data/web/virtuals/29551" (24)
|
| SHLVL | "0"
|
| PHP_FCGI_MAX_REQUESTS | "10000" (5)
|
| FCGI_ROLE | "RESPONDER" (9)
|
| REDIRECT_REDIRECT_STATUS | "200" (3)
|
| REDIRECT_STATUS | "200" (3)
|
| HTTP_HOST | "spinning.sbrothersweb.eu" (24)
|
| HTTP_CONNECTION | "close" (5)
|
| HTTP_ACCEPT | "*/*" (3)
|
| HTTP_X_REQUESTED_WITH | "XMLHttpRequest" (14)
|
| HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 6.2; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36" (109)
|
| HTTP_REFERER | "http://spinning.sbrothersweb.eu/user/my-lections/day-view?day=2014-6-20&_fid=vnt4" (81)
|
| HTTP_ACCEPT_ENCODING | "gzip,deflate,sdch" (17)
|
| HTTP_ACCEPT_LANGUAGE | "cs-CZ,cs;q=0.8" (14)
|
| HTTP_COOKIE | "nette-debug-panel-Nette-Application-Diagnostics-RoutingPanel=; nette-debug-panel-Nette-Security-Diagnostics-UserPanel=; nette-debug-bar=-318:-28; PHPS ... " (277)
|
| SERVER_SIGNATURE | ""
|
| SERVER_SOFTWARE | "Apache" (6)
|
| SERVER_NAME | "spinning.sbrothersweb.eu" (24)
|
| SERVER_ADDR | "46.28.105.73" (12)
|
| SERVER_PORT | "80" (2)
|
| REMOTE_ADDR | "213.192.26.150" (14)
|
| DOCUMENT_ROOT | "/data/web/virtuals/29551/virtual/www" (36)
|
| SERVER_ADMIN | "hosting@wedos.com" (17)
|
| SCRIPT_FILENAME | "/data/web/virtuals/29551/virtual/www/spining/www/index.php" (58)
|
| REMOTE_PORT | "55079" (5)
|
| REDIRECT_QUERY_STRING | "day=2014-6-20&do=dayView-ChooseLection&dayView-l_id=43" (54)
|
| REDIRECT_URL | "/spining/www/user/my-lections/day-view" (38)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| REQUEST_METHOD | "GET" (3)
|
| QUERY_STRING | "day=2014-6-20&do=dayView-ChooseLection&dayView-l_id=43" (54)
|
| REQUEST_URI | "/user/my-lections/day-view?day=2014-6-20&do=dayView-ChooseLection&dayView-l_id=43" (81)
|
| SCRIPT_NAME | "/spining/www/index.php" (22)
|
| PHP_SELF | "/spining/www/index.php" (22)
|
| REQUEST_TIME | 1402427173
|
| argv | array(1) ▼ |
| argc | 1
|
| __NF | Nette Session |
|---|
| Nette.Http.UserStorage/ | array(6) ▼ |
|---|
| NETTE | TRUE
|
|---|---|
| NETTE_DIR | "/data/web/virtuals/29551/virtual/www/spining/libs/Nette" (55)
|
| NETTE_VERSION_ID | 20012
|
| NETTE_PACKAGE | "5.3" (3)
|
| /data/web/virtuals/29551/virtual/www/spining/www/index.php |
| /data/web/virtuals/29551/virtual/www/spining/www/../app/bootstrap.php |
| /data/web/virtuals/29551/virtual/www/spining/app/bootstrap.php |
| /data/web/virtuals/29551/virtual/www/spining/app/../libs/autoload.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/autoload.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/loader.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/exceptions.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/Object.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Utils/LimitedScope.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Loaders/AutoLoader.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Loaders/NetteLoader.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/Helpers.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/shortcuts.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Utils/Html.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/Debugger.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/Logger.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/FireLogger.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/BlueScreen.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/Bar.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/DefaultBarPanel.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/IBarPanel.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Utils/SafeStream.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Config/Configurator.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Loaders/RobotLoader.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Storages/FileStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/IStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Cache.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/Callback.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/Framework.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Storages/PhpFileStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.Configurator/_-74d1be73ddcb898048e1e428c5958f12.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/DI/Container.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/FreezableObject.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/IFreezable.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/DI/IContainer.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Reflection/ClassType.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Reflection/Method.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/Session.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/RequestFactory.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/UrlScript.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/Url.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/ObjectMixin.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Utils/Strings.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/Request.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/IRequest.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/Response.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/IResponse.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/DateTime.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Security/Identity.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Security/IIdentity.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Reflection/AnnotationsParser.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Storages/DevNullStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/Environment.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Container.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/ComponentModel/Container.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/ComponentModel/Component.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/ComponentModel/IComponent.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/ComponentModel/IContainer.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Application.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/PresenterFactory.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/IPresenterFactory.php |
| /data/web/virtuals/29551/virtual/www/spining/app/router/RouterFactory.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Routers/RouteList.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/ArrayList.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/IRouter.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Routers/Route.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Diagnostics/RoutingPanel.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Request.php |
| /data/web/virtuals/29551/virtual/www/spining/app/UserModule/MyLections/MyLectionsPresenter.php |
| /data/web/virtuals/29551/virtual/www/spining/app/UserModule/BasePresenter.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/Presenter.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/Control.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/PresenterComponent.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/ISignalReceiver.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/IStatePersistent.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/IRenderable.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/IPresenter.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/DI/Helpers.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Reflection/Parameter.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/UsersRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/Repository.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Connection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Statement.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Drivers/MySqlDriver.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/ISupplementalDriver.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Row.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/common/ArrayHash.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/SqlPreprocessor.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Storages/FileJournal.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Caching/Storages/IJournal.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Reflection/DiscoveredReflection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/IReflection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Diagnostics/ConnectionPanel.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/UserInfoRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/PaymentsRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/LectionsRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/PricesRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/app/model/ReservationsRepository.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/PresenterComponentReflection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Reflection/Property.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Templating/FileTemplate.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Templating/Template.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Templating/ITemplate.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Templating/IFileTemplate.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Security/User.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Security/IUserStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/UserStorage.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Security/Diagnostics/UserPanel.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/DayView/DayView.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Table/Selection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Table/SqlBuilder.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Helpers.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Database/Table/ActiveRow.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Http/SessionSection.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/ComponentModel/RecursiveComponentIterator.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/LectionReservation/LectionReservation.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/TablesGenerator/TablesGenerator.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/LectionDetail/LectionDetail.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/Form.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Form.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/SelectBox.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/BaseControl.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/IControl.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Rules.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/RadioList.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Rule.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/HiddenField.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/SubmitButton.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Controls/Button.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/ISubmitterControl.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/UI/Link.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Iterators/InstanceFilter.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/HorizontalMenu/HorizontalMenu.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/LeftMenu/LeftMenu.php |
| /data/web/virtuals/29551/virtual/www/spining/app/komponent/LoginIcon/LoginIcon.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Responses/TextResponse.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/IResponse.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/exceptions.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_MyLections.dayView.latte-d64568b3c4618bb8b6e284d50b6e4ecb.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Latte/Macros/CoreMacros.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Latte/Macros/MacroSet.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Latte/IMacro.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_templates._layout.latte-336b2fbb09ae3ccea56d6f3c93b085e5.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Latte/Macros/UIMacros.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_DayView.DayView.latte-fb28af1fbfdfc04f62f6fa3c044e1892.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_LectionDetail.LectionDetail.latte-638ad3b84e3086da3624353b1299bfd8.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Templating/Helpers.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_TablesGenerator.TablesGenerator.latte-2e4cf1aef81565764385327f3f3ce7f4.php |
| /data/web/virtuals/29551/virtual/www/spining/temp/cache/_Nette.FileTemplate/_LectionReservation.LectionReservation.latte-ef436ff54422f52c7cfedb9391fa5b1e.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Utils/Json.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/Rendering/DefaultFormRenderer.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Forms/IFormRenderer.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Application/Responses/JsonResponse.php |
| /data/web/virtuals/29551/virtual/www/spining/libs/Nette/Diagnostics/templates/bluescreen.phtml |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bzip2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.5, 10-Dec-2007 |
| Calendar support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| cgi.check_shebang_line | 1 | 1 |
| cgi.discard_path | 0 | 0 |
| cgi.fix_pathinfo | 1 | 1 |
| cgi.force_redirect | 1 | 1 |
| cgi.nph | 0 | 0 |
| cgi.redirect_status_env | no value | no value |
| cgi.rfc2616_headers | 0 | 0 |
| fastcgi.logging | 1 | 1 |
| PHP Version | 5.3.22 |
| Directive | Local Value | Master Value |
|---|---|---|
| allow_call_time_pass_reference | On | On |
| 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 |
| define_syslog_variables | Off | Off |
| disable_classes | no value | no value |
| disable_functions | apache_child_terminate,apache_setenv,define_syslog_variables,diskfreespace,disk_free_space,disk_total_space,dl,escapeshellarg,escapeshellcmd,exec,leak,link,openlog,passthru,pfsockopen,popen,posix_getgrnam,posix_getpgid,posix_getpwuid,posix_getpwnam,posix_getrlimit,posix_initgroups,posix_kill,posix_mkfifo,posix_mknod,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,putenv,readlink,register_tick_function,set_time_limit,shell_exec,show_source,symlink,syslog,system | apache_child_terminate,apache_setenv,define_syslog_variables,diskfreespace,disk_free_space,disk_total_space,dl,escapeshellarg,escapeshellcmd,exec,leak,link,openlog,passthru,pfsockopen,popen,posix_getgrnam,posix_getpgid,posix_getpwuid,posix_getpwnam,posix_getrlimit,posix_initgroups,posix_kill,posix_mkfifo,posix_mknod,posix_setpgid,posix_setsid,posix_setuid,posix_uname,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,putenv,readlink,register_tick_function,set_time_limit,shell_exec,show_source,symlink,syslog,system |
| display_errors | On | On |
| display_startup_errors | Off | Off |
| doc_root | no value | no value |
| docref_ext | no value | no value |
| docref_root | no value | no value |
| enable_dl | Off | Off |
| error_append_string | no value | no value |
| error_log | /data/web/virtuals/29551/virtual/www/spining/log/php_error.log | no value |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 22519 |
| exit_on_timeout | Off | Off |
| expose_php | Off | Off |
| extension_dir | /usr/local/php/CURRENT/extensions/ | /usr/local/php/CURRENT/extensions/ |
| file_uploads | On | On |
| highlight.bg | #FFFFFF | #FFFFFF |
| highlight.comment | #998; font-style: italic | #FF8000 |
| highlight.default | #000 | #0000BB |
| highlight.html | #06B | #000000 |
| highlight.keyword | #D24; font-weight: bold | #007700 |
| highlight.string | #080 | #DD0000 |
| html_errors | Off | On |
| ignore_repeated_errors | Off | Off |
| ignore_repeated_source | Off | Off |
| ignore_user_abort | Off | Off |
| implicit_flush | Off | Off |
| include_path | .:/data/web/virtuals/29551/virtual | .:/data/web/virtuals/29551/virtual |
| log_errors | Off | Off |
| log_errors_max_len | 1024 | 1024 |
| magic_quotes_gpc | Off | Off |
| magic_quotes_runtime | Off | Off |
| magic_quotes_sybase | Off | Off |
| mail.add_x_header | On | On |
| mail.force_extra_parameters | no value | no value |
| mail.log | no value | no value |
| max_execution_time | 90 | 90 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 30 | 30 |
| max_input_vars | 10000 | 10000 |
| memory_limit | 128M | 128M |
| open_basedir | /data/web/virtuals/29551/virtual | /data/web/virtuals/29551/virtual |
| output_buffering | 0 | 0 |
| output_handler | no value | no value |
| post_max_size | 32M | 32M |
| precision | 14 | 14 |
| realpath_cache_size | 16K | 16K |
| realpath_cache_ttl | 120 | 120 |
| register_argc_argv | On | On |
| register_globals | Off | Off |
| register_long_arrays | On | On |
| report_memleaks | On | On |
| report_zend_debug | On | On |
| request_order | no value | no value |
| safe_mode | Off | Off |
| safe_mode_exec_dir | /usr/local/php/bin | /usr/local/php/bin |
| safe_mode_gid | Off | Off |
| safe_mode_include_dir | no value | no value |
| sendmail_from | no value | no value |
| sendmail_path | /data/web/mlimit/sendmail.sh | /data/web/mlimit/sendmail.sh |
| serialize_precision | 17 | 17 |
| short_open_tag | On | On |
| SMTP | localhost | localhost |
| smtp_port | 25 | 25 |
| sql.safe_mode | Off | Off |
| track_errors | Off | Off |
| unserialize_callback_func | no value | no value |
| upload_max_filesize | 32M | 32M |
| upload_tmp_dir | /data/web/virtuals/29551/virtual/tmp | /data/web/virtuals/29551/virtual/tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | no value | no value |
| variables_order | EGPCS | EGPCS |
| xmlrpc_error_number | 0 | 0 |
| xmlrpc_errors | Off | Off |
| y2k_compliance | On | On |
| zend.enable_gc | On | On |
| ctype functions | enabled |
| cURL support | enabled |
| cURL Information | 7.19.7 |
| Age | 3 |
| Features | |
| AsynchDNS | No |
| Debug | No |
| GSS-Negotiate | Yes |
| IDN | Yes |
| IPv6 | Yes |
| Largefile | Yes |
| NTLM | Yes |
| SPNEGO | No |
| SSL | Yes |
| SSPI | No |
| krb4 | No |
| libz | Yes |
| CharConv | No |
| Protocols | tftp, ftp, telnet, dict, ldap, ldaps, http, file, https, ftps, scp, sftp |
| Host | x86_64-redhat-linux-gnu |
| SSL Version | NSS/3.14.0.0 |
| ZLib Version | 1.2.3 |
| libSSH Version | libssh2/1.4.2 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 2012.10 |
| Timezone Database | internal |
| Default timezone | Europe/Prague |
| Directive | Local Value | Master Value |
|---|---|---|
| date.default_latitude | 31.7667 | 31.7667 |
| date.default_longitude | 35.2333 | 35.2333 |
| date.sunrise_zenith | 90.583333 | 90.583333 |
| date.sunset_zenith | 90.583333 | 90.583333 |
| date.timezone | Europe/Prague | Europe/Prague |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.7.6 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| eAccelerator support | enabled |
|---|---|
| Version | 0.9.6.1 |
| Caching Enabled | true |
| Optimizer Enabled | true |
| Check mtime Enabled | true |
| Memory Size | 20,971,448 Bytes |
| Memory Available | 14,046,040 Bytes |
| Memory Allocated | 6,925,408 Bytes |
| Cached Scripts | 171 |
| Removed Scripts | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| eaccelerator.allowed_admin_path | /data/web/virtuals/111/virtual/www/admin | /data/web/virtuals/111/virtual/www/admin |
| eaccelerator.cache_dir | /tmp/eaccelerator | /tmp/eaccelerator |
| eaccelerator.check_mtime | 1 | 1 |
| eaccelerator.debug | 0 | 0 |
| eaccelerator.enable | 1 | 1 |
| eaccelerator.filter | no value | no value |
| eaccelerator.log_file | no value | no value |
| eaccelerator.optimizer | 1 | 1 |
| eaccelerator.shm_max | 0 | 0 |
| eaccelerator.shm_only | 1 | 1 |
| eaccelerator.shm_prune_period | 0 | 0 |
| eaccelerator.shm_size | 20 | 20 |
| eaccelerator.shm_ttl | 0 | 0 |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id$ |
| Supported EXIF Version | 0220 |
| Supported filetypes | JPEG,TIFF |
| Directive | Local Value | Master Value |
|---|---|---|
| exif.decode_jis_intel | JIS | JIS |
| exif.decode_jis_motorola | JIS | JIS |
| exif.decode_unicode_intel | UCS-2LE | UCS-2LE |
| exif.decode_unicode_motorola | UCS-2BE | UCS-2BE |
| exif.encode_jis | no value | no value |
| exif.encode_unicode | ISO-8859-15 | ISO-8859-15 |
| fileinfo support | enabled |
| version | 1.0.5-dev |
| Input Validation and Filtering | enabled |
| Revision | $Id: 209a1c3c98c04a5474846e7bbe8ca72054ccfd4f $ |
| 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.0.34 compatible) |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| FreeType Version | 2.3.11 |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 6b |
| PNG Support | enabled |
| libPNG Version | 1.2.49 |
| WBMP Support | enabled |
| XBM Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| gmp support | enabled |
| GMP version | 4.3.1 |
| hash support | enabled |
| Hashing Engines | md2 md4 md5 sha1 sha224 sha256 sha384 sha512 ripemd128 ripemd160 ripemd256 ripemd320 whirlpool tiger128,3 tiger160,3 tiger192,3 tiger128,4 tiger160,4 tiger192,4 snefru snefru256 gost adler32 crc32 crc32b salsa10 salsa20 haval128,3 haval160,3 haval192,3 haval224,3 haval256,3 haval128,4 haval160,4 haval192,4 haval224,4 haval256,4 haval128,5 haval160,5 haval192,5 haval224,5 haval256,5 |
| iconv support | enabled |
| iconv implementation | glibc |
| iconv library version | 2.12 |
| Directive | Local Value | Master Value |
|---|---|---|
| iconv.input_encoding | ISO-8859-1 | ISO-8859-1 |
| iconv.internal_encoding | UTF-8 | ISO-8859-1 |
| iconv.output_encoding | ISO-8859-1 | ISO-8859-1 |
| imagick module | enabled |
|---|---|
| imagick module version | 3.0.1 |
| imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
| ImageMagick version | ImageMagick 6.5.4-7 2014-02-10 Q16 OpenMP http://www.imagemagick.org |
| ImageMagick copyright | Copyright (C) 1999-2009 ImageMagick Studio LLC |
| ImageMagick release date | 2014-02-10 |
| ImageMagick number of supported formats: | 199 |
| ImageMagick supported formats | A, AI, ART, ARW, AVI, AVS, B, BGR, BMP, BMP2, BMP3, BRF, BRG, C, CALS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DOT, DPS, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, EXR, FAX, FITS, FRACTAL, FTS, G, G3, GBR, GIF, GIF87, GRADIENT, GRAY, GRB, HALD, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, JNG, JP2, JPC, JPEG, JPG, JPX, K, K25, KDC, LABEL, M, M2V, M4V, MAP, MAT, MATTE, MIFF, MNG, MONO, MOV, MP4, MPC, MPEG, MPG, MRW, MSL, MSVG, MTV, MVG, NEF, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RBG, RGB, RGBA, RGBO, RLA, RLE, SCR, SCT, SFW, SGI, SHTML, SR2, SRF, STEGANO, SUN, SVG, SVGZ, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VST, WBMP, WMF, WMV, WMZ, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YCbCr, YCbCrA, YUV |
| Directive | Local Value | Master Value |
|---|---|---|
| imagick.locale_fix | 0 | 0 |
| imagick.progress_monitor | 0 | 0 |
| IMAP c-Client Version | 2007e |
| SSL Support | enabled |
| Kerberos Support | enabled |
| json support | enabled |
| json version | 1.2.1 |
| libXML support | active |
| libXML Compiled Version | 2.7.6 |
| libXML Loaded Version | 20706 |
| libXML streams | enabled |
| Multibyte Support | enabled |
| Multibyte string engine | libmbfl |
| HTTP input encoding translation | disabled |
| mbstring extension makes use of "streamable kanji code filter and converter", which is distributed under the GNU Lesser General Public License version 2.1. |
|---|
| Multibyte (japanese) regex support | enabled |
| Multibyte regex (oniguruma) backtrack check | On |
| Multibyte regex (oniguruma) version | 4.7.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | pass | pass |
| mbstring.http_output | pass | pass |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.7 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | 5.5.30 |
| MYSQL_MODULE_TYPE | external |
| MYSQL_SOCKET | /tmp/mysql.sock |
| MYSQL_INCLUDE | -I/usr/local/mysql/5.5.30/include |
| MYSQL_LIBS | -L/usr/local/mysql/5.5.30/lib64 -lmysqlclient |
| Directive | Local Value | Master Value |
|---|---|---|
| mysql.allow_local_infile | On | On |
| mysql.allow_persistent | On | On |
| mysql.connect_timeout | 60 | 60 |
| mysql.default_host | no value | no value |
| mysql.default_password | no value | no value |
| mysql.default_port | no value | no value |
| mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
| mysql.default_user | no value | no value |
| mysql.max_links | Unlimited | Unlimited |
| mysql.max_persistent | Unlimited | Unlimited |
| mysql.trace_mode | Off | Off |
| MysqlI Support | enabled |
|---|---|
| Client API library version | 5.5.30 |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Client API header version | 5.5.30 |
| MYSQLI_SOCKET | /tmp/mysql.sock |
| Directive | Local Value | Master Value |
|---|---|---|
| mysqli.allow_local_infile | On | On |
| mysqli.allow_persistent | On | On |
| mysqli.default_host | no value | no value |
| mysqli.default_port | 3306 | 3306 |
| mysqli.default_pw | no value | no value |
| mysqli.default_socket | no value | no value |
| mysqli.default_user | no value | no value |
| mysqli.max_links | Unlimited | Unlimited |
| mysqli.max_persistent | Unlimited | Unlimited |
| mysqli.reconnect | Off | Off |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 1.0.0-fips 29 Mar 2010 |
| OpenSSL Header Version | OpenSSL 1.0.0-fips 29 Mar 2010 |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.31 2012-07-06 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 1000000 | 1000000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | mysql, sqlite, sqlite2 |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | 5.5.30 |
| Directive | Local Value | Master Value |
|---|---|---|
| pdo_mysql.default_socket | /tmp/mysql.sock | /tmp/mysql.sock |
| PDO Driver for SQLite 3.x | enabled |
|---|---|
| SQLite Library | 3.7.7.1 |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.1 |
| Phar API version | 1.1.1 |
| SVN revision | $Id: 21d763042eb5769ae0a09dc1118df2b5aae6fb33 $ |
| 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: 5a2da3946b96c5afbf3aff8db8a8681f8bedee85 $ |
| Reflection | enabled |
|---|---|
| Version | $Id: 4af6c4c676864b1c0bfa693845af0688645c37cf $ |
| Session Support | enabled |
| Registered save handlers | files user sqlite |
| Registered serializer handlers | php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.bug_compat_42 | On | On |
| session.bug_compat_warn | On | On |
| session.cache_expire | 180 | 180 |
| session.cache_limiter | nocache | nocache |
| session.cookie_domain | no value | no value |
| session.cookie_httponly | On | Off |
| session.cookie_lifetime | 1209600 | 0 |
| session.cookie_path | / | / |
| session.cookie_secure | Off | Off |
| session.entropy_file | no value | no value |
| session.entropy_length | 0 | 0 |
| session.gc_divisor | 100 | 100 |
| session.gc_maxlifetime | 1209600 | 1440 |
| session.gc_probability | 1 | 1 |
| session.hash_bits_per_character | 4 | 4 |
| session.hash_function | 0 | 0 |
| session.name | PHPSESSID | PHPSESSID |
| session.referer_check | no value | no value |
| session.save_handler | files | files |
| session.save_path | /data/web/virtuals/29551/virtual/session | /data/web/virtuals/29551/virtual/session |
| session.serialize_handler | php | php |
| session.use_cookies | On | On |
| session.use_only_cookies | On | On |
| session.use_trans_sid | 0 | 0 |
| Simplexml support | enabled |
|---|---|
| Revision | $Id: 02ab7893b36d51e9c59da77d7e287eb3b35e1e32 $ |
| Schema support | enabled |
| Soap Client | enabled |
| Soap Server | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| soap.wsdl_cache | 1 | 1 |
| soap.wsdl_cache_dir | /tmp | /tmp |
| soap.wsdl_cache_enabled | 1 | 1 |
| soap.wsdl_cache_limit | 5 | 5 |
| soap.wsdl_cache_ttl | 86400 | 86400 |
| Sockets Support | enabled |
| SPL support | enabled |
|---|---|
| Interfaces | Countable, OuterIterator, RecursiveIterator, SeekableIterator, SplObserver, SplSubject |
| Classes | AppendIterator, ArrayIterator, ArrayObject, BadFunctionCallException, BadMethodCallException, CachingIterator, DirectoryIterator, DomainException, EmptyIterator, FilesystemIterator, FilterIterator, GlobIterator, InfiniteIterator, InvalidArgumentException, IteratorIterator, LengthException, LimitIterator, LogicException, MultipleIterator, NoRewindIterator, OutOfBoundsException, OutOfRangeException, OverflowException, ParentIterator, RangeException, RecursiveArrayIterator, RecursiveCachingIterator, RecursiveDirectoryIterator, RecursiveFilterIterator, RecursiveIteratorIterator, RecursiveRegexIterator, RecursiveTreeIterator, RegexIterator, RuntimeException, SplDoublyLinkedList, SplFileInfo, SplFileObject, SplFixedArray, SplHeap, SplMinHeap, SplMaxHeap, SplObjectStorage, SplPriorityQueue, SplQueue, SplStack, SplTempFileObject, UnderflowException, UnexpectedValueException |
| SQLite support | enabled |
|---|---|
| PECL Module version | 2.0-dev $Id$ |
| SQLite Library | 2.8.17 |
| SQLite Encoding | iso8859 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite.assoc_case | 0 | 0 |
| SQLite3 support | enabled |
|---|---|
| SQLite3 module version | 0.7-dev |
| SQLite Library | 3.7.7.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| sqlite3.extension_dir | no value | no value |
| Dynamic Library Support | enabled |
| Path to sendmail | /data/web/mlimit/sendmail.sh |
| Directive | Local Value | Master Value |
|---|---|---|
| assert.active | 1 | 1 |
| assert.bail | 0 | 0 |
| assert.callback | no value | no value |
| assert.quiet_eval | 0 | 0 |
| assert.warning | 1 | 1 |
| auto_detect_line_endings | 0 | 0 |
| default_socket_timeout | 60 | 60 |
| from | no value | no value |
| safe_mode_allowed_env_vars | PHP_ | PHP_ |
| safe_mode_protected_env_vars | LD_LIBRARY_PATH | LD_LIBRARY_PATH |
| url_rewriter.tags | a=href,area=href,frame=src,form=,fieldset= | a=href,area=href,frame=src,form=,fieldset= |
| user_agent | no value | no value |
| sysvmsg support | enabled |
| Revision | $Id: 4de54c4c0f668d2754472253f317a1de000b5b04 $ |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.7.6 |
| XMLReader | enabled |
| core library version | xmlrpc-epi v. 0.51 |
| php extension version | 0.51 |
| author | Dan Libby |
| homepage | http://xmlrpc-epi.sourceforge.net |
| open sourced by | Epinions.com |
| XMLWriter | enabled |
| XSL | enabled |
| libxslt Version | 1.1.26 |
| libxslt compiled against libxml Version | 2.7.6 |
| EXSLT | enabled |
| libexslt Version | 1.1.26 |
| Zip | enabled |
| Extension Version | $Id: bdd35a2ede0347a3df239de1e7dc5d7e588f00c3 $ |
| Zip version | 1.11.0 |
| Libzip version | 0.10.1 |
| ZLib Support | enabled |
| Stream Wrapper support | compress.zlib:// |
| Stream Filter support | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.3 |
| Linked Version | 1.2.3 |
| Directive | Local Value | Master Value |
|---|---|---|
| zlib.output_compression | Off | Off |
| zlib.output_compression_level | -1 | -1 |
| zlib.output_handler | no value | no value |
| Module Name |
|---|
| ionCube Loader |
| sysvsem |
| sysvshm |
| day | "2014-6-20" (9)
|
|---|---|
| do | "dayView-ChooseLection" (21)
|
| dayView-l_id | "43" (2)
|
empty
| nette-debug-panel-Nette-Application-Diagnostics-RoutingPanel | ""
|
|---|---|
| nette-debug-panel-Nette-Security-Diagnostics-UserPanel | ""
|
| nette-debug-bar | "-318:-28" (8)
|
| PHPSESSID | "acc4b502271f2e49b826fc2e01404943" (32)
|
| nette-browser | "6t9rg63guc" (10)
|
| nette-debug-panel-Nette-Database-Diagnostics-ConnectionPanel | ""
|
X-Powered-By: Nette Framework
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
Set-Cookie: PHPSESSID=acc4b502271f2e49b826fc2e01404943; expires=Tue, 24-Jun-2014 19:06:13 GMT; path=/; httponly
Set-Cookie: nette-browser=6t9rg63guc; path=/; httponly
X-Frame-Options: SAMEORIGIN