Cannot read an undeclared property Nette\Database\Table\Selection::$email. search►
File: .../libs/Nette/common/ObjectMixin.php Line: 152
142: } elseif (isset(self::$methods[$class][$m = 'get' . $uname]) || isset(self::$methods[$class][$m = 'is' . $uname])) { // property getter 143: $val = $_this->$m(); 144: return $val; 145: 146: } elseif (isset(self::$methods[$class][$name])) { // public method as closure getter 147: $val = Callback::create($_this, $name); 148: return $val; 149: 150: } else { // strict class 151: $type = isset(self::$methods[$class]['set' . $uname]) ? 'a write-only' : 'an undeclared'; 152: throw new MemberAccessException("Cannot read $type property $class::\$$name."); 153: } 154: } 155: 156:
.../libs/Nette/common/Object.php:131 source ► Nette\ObjectMixin:: get (arguments ►)
| $_this | Nette\Database\Table\Selection(18) ► |
|---|---|
| $name | "email" (5)
|
121: 122: 123: /** 124: * Returns property value. Do not call directly. 125: * @param string property name 126: * @return mixed property value 127: * @throws MemberAccessException if the property is not defined. 128: */ 129: public function &__get($name) 130: { 131: return ObjectMixin::get($this, $name); 132: } 133: 134: 135:
.../app/presenters/HomepagePresenter.php:988 source ► Nette\Object-> __get (arguments ►)
| $name | "email" (5)
|
|---|
978: $form->values->q31, $form->values->q32, $form->values->q33, $form->values->q34, $form->values->q35, 979: $form->values->q36,$row 980: ); 981: 982: //$this->qNaireRepository->addQNaire($form->values->q1,$form->values->q2,$form->values->q3,$form->values->q4,$form->values->q5,$form->values->q6,$form->values->q7,$form->values->q8,$form->values->q9,$row->id); 983: } 984: 985: $userDetail = $this->userRepository->userDetails($this->user->getId()); 986: $mail = new Message; 987: $mail->setFrom('info@vycestuj.utb.cz') 988: ->addTo($userDetail->email) 989: ->setSubject('Přidání nové zkušenosti') 990: ->setBody("Vážený uživateli,\n potvrzujeme přijetí Vaší zkušenosti. V případě, že bude schválena, zobrazí se ostatním uživatelům. O výsledku posouzení budete informován") 991: ->send(); 992:
inner-code HomepagePresenter-> addExpereinceSubmitted (arguments ►)
| $form | Nette\Application\UI\Form(19) ► |
|---|
.../libs/Nette/common/Callback.php:108 source ► call_user_func_array (arguments ►)
| $function_name | array(2) ▼ |
|---|---|
| $parameters | array(1) ▼ |
98: /** 99: * Invokes callback with an array of parameters. 100: * @param array 101: * @return mixed 102: */ 103: public function invokeArgs(array $args) 104: { 105: if (!is_callable($this->cb)) { 106: throw new InvalidStateException("Callback '$this' is not callable."); 107: } 108: return call_user_func_array($this->cb, $args); 109: } 110: 111: 112:
.../libs/Nette/common/ObjectMixin.php:61 source ► Nette\Callback-> invokeArgs (arguments ►)
| $args | array(1) ▼ |
|---|
51: { 52: $class = get_class($_this); 53: $isProp = self::hasProperty($class, $name); 54: 55: if ($name === '') { 56: throw new MemberAccessException("Call to class '$class' method without name."); 57: 58: } elseif ($isProp === 'event') { // calling event handlers 59: if (is_array($_this->$name) || $_this->$name instanceof \Traversable) { 60: foreach ($_this->$name as $handler) { 61: Nette\Callback::create($handler)->invokeArgs($args); 62: } 63: } elseif ($_this->$name !== NULL) { 64: throw new UnexpectedValueException("Property $class::$$name must be array or NULL, " . gettype($_this->$name) ." given."); 65: }
.../libs/Nette/common/Object.php:81 source ► Nette\ObjectMixin:: call (arguments ►)
| $_this | Nette\Application\UI\Form(19) ► |
|---|---|
| $name | "onSuccess" (9)
|
| $args | array(1) ▼ |
71: 72: /** 73: * Call to undefined method. 74: * @param string method name 75: * @param array arguments 76: * @return mixed 77: * @throws MemberAccessException 78: */ 79: public function __call($name, $args) 80: { 81: return ObjectMixin::call($this, $name, $args); 82: } 83: 84: 85:
.../libs/Nette/Forms/Form.php:427 source ► Nette\Object-> __call (arguments ►)
| $name | "onSuccess" (9)
|
|---|---|
| $args | array(1) ▼ |
417: } elseif ($this->submittedBy instanceof ISubmitterControl) { 418: if (!$this->submittedBy->getValidationScope() || $this->isValid()) { 419: $this->submittedBy->click(); 420: $valid = TRUE; 421: } else { 422: $this->submittedBy->onInvalidClick($this->submittedBy); 423: } 424: } 425: 426: if (isset($valid) || $this->isValid()) { 427: $this->onSuccess($this); 428: } else { 429: $this->onError($this); 430: if ($this->onInvalidSubmit) { 431: trigger_error(__CLASS__ . '->onInvalidSubmit is deprecated; use onError instead.', E_USER_WARNING);
.../libs/Nette/Forms/Form.php:427 source ► Nette\Application\UI\Form-> onSuccess (arguments ►)
| #0 | Nette\Application\UI\Form(19) ► |
|---|
417: } elseif ($this->submittedBy instanceof ISubmitterControl) { 418: if (!$this->submittedBy->getValidationScope() || $this->isValid()) { 419: $this->submittedBy->click(); 420: $valid = TRUE; 421: } else { 422: $this->submittedBy->onInvalidClick($this->submittedBy); 423: } 424: } 425: 426: if (isset($valid) || $this->isValid()) { 427: $this->onSuccess($this); 428: } else { 429: $this->onError($this); 430: if ($this->onInvalidSubmit) { 431: trigger_error(__CLASS__ . '->onInvalidSubmit is deprecated; use onError instead.', E_USER_WARNING);
.../libs/Nette/Application/UI/Form.php:139 source ► Nette\Forms\Form-> fireEvents ()
129: 130: /** 131: * This method is called by presenter. 132: * @param string 133: * @return void 134: */ 135: public function signalReceived($signal) 136: { 137: if ($signal === 'submit') { 138: if (!$this->getPresenter()->getRequest()->hasFlag(Nette\Application\Request::RESTORED)) { 139: $this->fireEvents(); 140: } 141: } else { 142: $class = get_class($this); 143: throw new BadSignalException("Missing handler for signal '$signal' in $class.");
.../libs/Nette/Application/UI/Presenter.php:316 source ► Nette\Application\UI\Form-> signalReceived (arguments ►)
| $signal | "submit" (6)
|
|---|
306: $component = $this->signalReceiver === '' ? $this : $this->getComponent($this->signalReceiver, FALSE); 307: } catch (Nette\InvalidArgumentException $e) {} 308: 309: if (isset($e) || $component === NULL) { 310: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not found."); 311: 312: } elseif (!$component instanceof ISignalReceiver) { 313: throw new BadSignalException("The signal receiver component '$this->signalReceiver' is not ISignalReceiver implementor."); 314: } 315: 316: $component->signalReceived($this->signal); 317: $this->signal = NULL; 318: } 319: 320:
.../libs/Nette/Application/UI/Presenter.php:192 source ► Nette\Application\UI\Presenter-> processSignal ()
182: 183: if ($this->autoCanonicalize) { 184: $this->canonicalize(); 185: } 186: if ($this->getHttpRequest()->isMethod('head')) { 187: $this->terminate(); 188: } 189: 190: // SIGNAL HANDLING 191: // calls $this->handle<Signal>() 192: $this->processSignal(); 193: 194: // RENDERING VIEW 195: $this->beforeRender(); 196: // calls $this->render<View>()
.../libs/Nette/Application/Application.php:131 source ► Nette\Application\UI\Presenter-> run (arguments ►)
| $request | Nette\Application\Request(7) ► |
|---|
121: $this->presenter = $this->presenterFactory->createPresenter($presenterName); 122: } catch (InvalidPresenterException $e) { 123: throw new BadRequestException($e->getMessage(), 404, $e); 124: } 125: 126: $this->presenterFactory->getPresenterClass($presenterName); 127: $request->setPresenterName($presenterName); 128: $request->freeze(); 129: 130: // Execute presenter 131: $response = $this->presenter->run($request); 132: if ($response) { 133: $this->onResponse($this, $response); 134: } 135:
.../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(2) ▼ [
0 => Nette\Application\Request(7) ► {
method private => "POST" (4)
flags private => array(1) ▼ {
secured => FALSE
}
name private => "Homepage" (8)
params private => array(3) ▼ {
action => "addStage" (8)
id => NULL
do => "addExpereinceForm-submit" (24)
}
post private => array(42) ► {
type => "1"
country => "1"
city => "1"
institution => "5"
q1 => "a"
q2 => "a"
q3 => "aa" (2)
q4 => "a"
q5 => "a"
q6 => "a"
q7 => "a"
q8 => "a"
q9 => "a"
q10 => "a"
q11 => "a"
q12 => "a"
q13 => "a"
q14 => "a"
q15 => "a"
q16 => "a"
q17 => "aa" (2)
q18 => "a"
q19 => "a"
q20 => "a"
q21 => "a"
q22 => "a"
q23 => "a"
q24 => "a"
q25 => "a"
q26 => "a"
q27 => "a"
q28 => "a"
q29 => "a"
q30 => "a"
q31 => "a"
q32 => "a"
q33 => "a"
q34 => "a"
q35 => "a"
q36 => "a"
area1 => "<p>sadsadsad</p>
" (18)
send => "Odeslat zkušenost" (18)
}
files private => array(0)
frozen private => TRUE
}
1 => Nette\Application\Request(7) ► {
method private => "FORWARD" (7)
flags private => array(0)
name private => "Error" (5)
params private => array(2) ▼ {
exception => Nette\MemberAccessException(7) { ... }
action => "default" (7)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
]
ErrorPresenter(29) ► {
invalidLinkMode => 1
onShutdown => NULL
request private => Nette\Application\Request(7) ► {
method private => "FORWARD" (7)
flags private => array(0)
name private => "Error" (5)
params private => array(2) ▼ {
exception => Nette\MemberAccessException(7) { ... }
action => "default" (7)
}
post private => array(0)
files private => array(0)
frozen private => TRUE
}
response private => NULL
autoCanonicalize => TRUE
absoluteUrls => FALSE
globalParams private => array(0)
globalState private => NULL
globalStateSinces private => NULL
action private => "default" (7)
view private => "500" (3)
layout private => NULL
payload private => stdClass(0)
signalReceiver private => ""
signal private => NULL
ajaxMode private => FALSE
startupCheck private => TRUE
lastCreatedRequest private => NULL
lastCreatedRequestFlag private => NULL
context private => SystemContainer(8) ► {
classes => array(45) ► {
"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)
"todo\repository" => FALSE
"todo\facultyrepository" => "facultyRepository" (17)
"todo\institutionrepository" => "institutionRepository" (21)
"todo\countryrepository" => "countryRepository" (17)
"todo\commentrepository" => "commentRepository" (17)
"todo\opportunityrepository" => "opportunityRepository" (21)
routerfactory => "routerFactory" (13)
"todo\cityrepository" => "cityRepository" (14)
"todo\qnairerepository" => "qNaireRepository" (16)
"todo\userrepository" => "userRepository" (14)
"todo\newsrepository" => "newsRepository" (14)
"todo\otherselectsrepository" => "otherSelectsRepository" (22)
"todo\pagecontentrepository" => "pageContentRepository" (21)
"todo\experiencerepository" => "experienceRepository" (20)
"todo\photosrepository" => "photosRepository" (16)
"nette\security\iauthenticator" => "authenticator" (13)
authenticator => "authenticator" (13)
"nette\freezableobject" => "container" (9)
"nette\ifreezable" => "container" (9)
"nette\di\icontainer" => "container" (9)
"nette\di\container" => "container" (9)
}
meta => array(0)
parameters => array(9) ► {
appDir => "/var/www/vyjezdy/vyjezdy/app" (28)
wwwDir => "/var/www/vyjezdy/vyjezdy/www" (28)
debugMode => FALSE
productionMode => TRUE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/vyjezdy/vyjezdy/app/../temp" (36)
nette => NULL
}
params => array(9) ► {
appDir => "/var/www/vyjezdy/vyjezdy/app" (28)
wwwDir => "/var/www/vyjezdy/vyjezdy/www" (28)
debugMode => FALSE
productionMode => TRUE
environment => "production" (10)
consoleMode => FALSE
container => array(2) { ... }
tempDir => "/var/www/vyjezdy/vyjezdy/app/../temp" (36)
nette => NULL
}
registry private => array(30) ► {
"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.default" => Nette\Database\Connection(6) { ... }
newsRepository => Todo\NewsRepository(1) { ... }
userRepository => Todo\UserRepository(1) { ... }
authenticator => Authenticator(1) { ... }
otherSelectsRepository => Todo\OtherSelectsRepository(1) { ... }
experienceRepository => Todo\experienceRepository(1) { ... }
qNaireRepository => Todo\QNaireRepository(1) { ... }
photosRepository => Todo\PhotosRepository(1) { ... }
cityRepository => Todo\CityRepository(1) { ... }
countryRepository => Todo\CountryRepository(1) { ... }
institutionRepository => Todo\InstitutionRepository(1) { ... }
facultyRepository => Todo\FacultyRepository(1) { ... }
commentRepository => Todo\CommentRepository(1) { ... }
pageContentRepository => Todo\PageContentRepository(1) { ... }
opportunityRepository => Todo\OpportunityRepository(1) { ... }
"nette.userStorage" => Nette\Http\UserStorage(3) { ... }
user => Nette\Security\User(8) { ... }
nette => Nette\DI\NestedAccessor(3) { ... }
"nette.templateCacheStorage" => Nette\Caching\Storages\PhpFileStorage(5) { ... }
}
factories private => array(0)
creating private => array(0)
frozen private => FALSE
}
template private => NULL
invalidSnippets private => array(0)
snippetMode => NULL
params protected => array(2) ▼ {
exception => Nette\MemberAccessException(7) ► {
message protected => "Cannot read an undeclared property Nette\Database\Table\Selection::$email." (74)
string private => "exception 'Nette\MemberAccessException' with message 'Cannot read an undeclared property Nette\Database\Table\Selection::$email.' in /var/www/vyjezdy/ ... " (1709)
code protected => 0
file protected => "/var/www/vyjezdy/vyjezdy/libs/Nette/common/ObjectMixin.php" (58)
line protected => 152
trace private => array(13) [ ... ]
previous private => NULL
}
action => "default" (7)
}
components private => array(0)
cloning private => NULL
parent private => NULL
name private => "Error" (5)
monitors private => array(0)
}
| REDIRECT_REDIRECT_STATUS | "200" (3)
|
|---|---|
| REDIRECT_STATUS | "200" (3)
|
| HTTP_HOST | "vyjezdy.utb.cz" (14)
|
| HTTP_CONNECTION | "keep-alive" (10)
|
| CONTENT_LENGTH | "313" (3)
|
| HTTP_CACHE_CONTROL | "max-age=0" (9)
|
| HTTP_ACCEPT | "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8" (63)
|
| HTTP_ORIGIN | "http://vyjezdy.utb.cz" (21)
|
| HTTP_USER_AGENT | "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36" (101)
|
| CONTENT_TYPE | "application/x-www-form-urlencoded" (33)
|
| HTTP_REFERER | "http://vyjezdy.utb.cz/homepage/add-stage" (40)
|
| HTTP_ACCEPT_ENCODING | "gzip,deflate,gzip" (17)
|
| HTTP_ACCEPT_LANGUAGE | "cs-CZ,cs;q=0.8" (14)
|
| HTTP_COOKIE | "__utma=248757955.147961114.1364995397.1369308315.1369332515.7; __utmz=248757955.1369305184.5.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(n ... " (394)
|
| PATH | "/usr/local/bin:/usr/bin:/bin" (28)
|
| SERVER_SIGNATURE | "<address>Apache/2.2.16 (Debian) Server at vyjezdy.utb.cz Port 80</address>
" (75)
|
| SERVER_SOFTWARE | "Apache/2.2.16 (Debian)" (22)
|
| SERVER_NAME | "vyjezdy.utb.cz" (14)
|
| SERVER_ADDR | "195.178.88.73" (13)
|
| SERVER_PORT | "80" (2)
|
| REMOTE_ADDR | "10.80.16.2" (10)
|
| DOCUMENT_ROOT | "/var/www/vyjezdy" (16)
|
| SERVER_ADMIN | "kominek@fai.utb.cz" (18)
|
| SCRIPT_FILENAME | "/var/www/vyjezdy/vyjezdy/www/index.php" (38)
|
| REMOTE_PORT | "54999" (5)
|
| REDIRECT_QUERY_STRING | "do=addExpereinceForm-submit" (27)
|
| REDIRECT_URL | "/vyjezdy/www/homepage/add-stage" (31)
|
| GATEWAY_INTERFACE | "CGI/1.1" (7)
|
| SERVER_PROTOCOL | "HTTP/1.1" (8)
|
| REQUEST_METHOD | "POST" (4)
|
| QUERY_STRING | "do=addExpereinceForm-submit" (27)
|
| REQUEST_URI | "/homepage/add-stage?do=addExpereinceForm-submit" (47)
|
| SCRIPT_NAME | "/vyjezdy/www/index.php" (22)
|
| PHP_SELF | "/vyjezdy/www/index.php" (22)
|
| REQUEST_TIME | 1370434629
|
| argv | array(1) ▼ |
| argc | 1
|
| __NF | Nette Session |
|---|
| Nette.Http.UserStorage/ | array(9) ► |
|---|
| NETTE | TRUE
|
|---|---|
| NETTE_DIR | "/var/www/vyjezdy/vyjezdy/libs/Nette" (35)
|
| NETTE_VERSION_ID | 20008
|
| NETTE_PACKAGE | "5.3" (3)
|
| /var/www/vyjezdy/vyjezdy/www/index.php |
| /var/www/vyjezdy/vyjezdy/app/bootstrap.php |
| /var/www/vyjezdy/vyjezdy/libs/autoload.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/loader.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/exceptions.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/Object.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/LimitedScope.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Loaders/AutoLoader.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Loaders/NetteLoader.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/Helpers.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/shortcuts.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/Html.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/Debugger.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/Logger.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/FireLogger.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/BlueScreen.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/Bar.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/DefaultBarPanel.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/IBarPanel.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/SafeStream.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Config/Configurator.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Loaders/RobotLoader.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/Storages/FileStorage.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/IStorage.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/Cache.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/Callback.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/Framework.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/Storages/PhpFileStorage.php |
| /var/www/vyjezdy/vyjezdy/temp/cache/_Nette.Configurator/_-d0897bacf9c4007004acc641a93b9322.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/DI/Container.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/FreezableObject.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/IFreezable.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/DI/IContainer.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Reflection/ClassType.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Reflection/Method.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/Session.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/RequestFactory.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/UrlScript.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/Url.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/ObjectMixin.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/Strings.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/Request.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/IRequest.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/Response.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/IResponse.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/DateTime.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Security/Identity.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Security/IIdentity.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Reflection/AnnotationsParser.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/Environment.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Application.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/PresenterFactory.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/IPresenterFactory.php |
| /var/www/vyjezdy/vyjezdy/app/router/RouterFactory.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Routers/RouteList.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/ArrayList.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/IRouter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Routers/Route.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Diagnostics/RoutingPanel.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Request.php |
| /var/www/vyjezdy/vyjezdy/app/presenters/HomepagePresenter.php |
| /var/www/vyjezdy/vyjezdy/app/presenters/BasePresenter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/Presenter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/Control.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/PresenterComponent.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/ComponentModel/Container.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/ComponentModel/Component.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/ComponentModel/IComponent.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/ComponentModel/IContainer.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/ISignalReceiver.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/IStatePersistent.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/IRenderable.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/IPresenter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/DI/Helpers.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Reflection/Parameter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/PresenterComponentReflection.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Reflection/Property.php |
| /var/www/vyjezdy/vyjezdy/app/model/NewsRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/Repository.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Connection.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Statement.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Drivers/MySqlDriver.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/ISupplementalDriver.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Row.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/common/ArrayHash.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/SqlPreprocessor.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/Storages/FileJournal.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Caching/Storages/IJournal.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Reflection/DiscoveredReflection.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/IReflection.php |
| /var/www/vyjezdy/vyjezdy/app/model/UserRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/Authenticator.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Security/IAuthenticator.php |
| /var/www/vyjezdy/vyjezdy/app/model/OtherSelectsRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/ExperienceRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/QNaireRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/PhotosRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/CityRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/CountryRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/InstitutionRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/FacultyRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/CommentRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/PageContentRepository.php |
| /var/www/vyjezdy/vyjezdy/app/model/OpportunityRepository.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Security/User.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Security/IUserStorage.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/UserStorage.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Http/SessionSection.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Table/Selection.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Table/SqlBuilder.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Templating/FileTemplate.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Templating/Template.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Templating/ITemplate.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Templating/IFileTemplate.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/DI/NestedAccessor.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Helpers.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Table/ActiveRow.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/Form.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Form.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Container.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/ComponentModel/RecursiveComponentIterator.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/UI/Link.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Iterators/InstanceFilter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/HiddenField.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/BaseControl.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/IControl.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Rules.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/Arrays.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/SelectBox.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Rule.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/TextInput.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/TextBase.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/TextArea.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/SubmitButton.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/Controls/Button.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Forms/ISubmitterControl.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Mail/Message.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Mail/MimePart.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Utils/Validators.php |
| /var/www/vyjezdy/vyjezdy/app/presenters/ErrorPresenter.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/Responses/ForwardResponse.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/IResponse.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Application/exceptions.php |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Diagnostics/templates/bluescreen.phtml |
| /var/www/vyjezdy/vyjezdy/libs/Nette/Database/Diagnostics/ConnectionPanel.php |
| Apache Version | Apache/2.2.16 (Debian) |
| Apache API Version | 20051115 |
| Server Administrator | kominek@fai.utb.cz |
| Hostname:Port | lua.utb.cz:80 |
| User/Group | www-data(33)/33 |
| Max Requests | Per Child: 0 - Keep Alive: on - Max Per Connection: 100 |
| Timeouts | Connection: 300 - Keep-Alive: 15 |
| Virtual Server | Yes |
| Server Root | /etc/apache2 |
| Loaded Modules | core mod_log_config mod_logio prefork http_core mod_so mod_alias mod_auth_basic mod_auth_pam mod_authn_file mod_authz_default mod_authz_groupfile mod_authz_host mod_authz_user mod_autoindex mod_cgi mod_dir mod_env mod_mime mod_negotiation mod_php5 mod_proxy mod_proxy_http mod_reqtimeout mod_rewrite mod_setenvif mod_ssl mod_status |
| Directive | Local Value | Master Value |
|---|---|---|
| engine | 1 | 1 |
| last_modified | 0 | 0 |
| xbithack | 0 | 0 |
| Variable | Value |
|---|---|
| REDIRECT_REDIRECT_STATUS | 200 |
| REDIRECT_STATUS | 200 |
| HTTP_HOST | vyjezdy.utb.cz |
| HTTP_CONNECTION | keep-alive |
| CONTENT_LENGTH | 313 |
| HTTP_CACHE_CONTROL | max-age=0 |
| HTTP_ACCEPT | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| HTTP_ORIGIN | http://vyjezdy.utb.cz |
| HTTP_USER_AGENT | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36 |
| CONTENT_TYPE | application/x-www-form-urlencoded |
| HTTP_REFERER | http://vyjezdy.utb.cz/homepage/add-stage |
| HTTP_ACCEPT_ENCODING | gzip,deflate,gzip |
| HTTP_ACCEPT_LANGUAGE | cs-CZ,cs;q=0.8 |
| HTTP_COOKIE | __utma=248757955.147961114.1364995397.1369308315.1369332515.7; __utmz=248757955.1369305184.5.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided); __utma=125162125.230900929.1370425645.1370425645.1370430402.2; __utmc=125162125; __utmz=125162125.1370425645.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=be0d9a15d3baf41500874bd1a9b1532c; nette-browser=c95zm2w6wz |
| PATH | /usr/local/bin:/usr/bin:/bin |
| SERVER_SIGNATURE | <address>Apache/2.2.16 (Debian) Server at vyjezdy.utb.cz Port 80</address> |
| SERVER_SOFTWARE | Apache/2.2.16 (Debian) |
| SERVER_NAME | vyjezdy.utb.cz |
| SERVER_ADDR | 195.178.88.73 |
| SERVER_PORT | 80 |
| REMOTE_ADDR | 10.80.16.2 |
| DOCUMENT_ROOT | /var/www/vyjezdy |
| SERVER_ADMIN | kominek@fai.utb.cz |
| SCRIPT_FILENAME | /var/www/vyjezdy/vyjezdy/www/index.php |
| REMOTE_PORT | 54999 |
| REDIRECT_QUERY_STRING | do=addExpereinceForm-submit |
| REDIRECT_URL | /vyjezdy/www/homepage/add-stage |
| GATEWAY_INTERFACE | CGI/1.1 |
| SERVER_PROTOCOL | HTTP/1.1 |
| REQUEST_METHOD | POST |
| QUERY_STRING | do=addExpereinceForm-submit |
| REQUEST_URI | /homepage/add-stage?do=addExpereinceForm-submit |
| SCRIPT_NAME | /vyjezdy/www/index.php |
| HTTP Request Headers | |
|---|---|
| HTTP Request | POST /homepage/add-stage?do=addExpereinceForm-submit HTTP/1.1 |
| Host | vyjezdy.utb.cz |
| Connection | keep-alive |
| Content-Length | 313 |
| Cache-Control | max-age=0 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| Origin | http://vyjezdy.utb.cz |
| User-Agent | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36 |
| Content-Type | application/x-www-form-urlencoded |
| Referer | http://vyjezdy.utb.cz/homepage/add-stage |
| Accept-Encoding | gzip,deflate,gzip |
| Accept-Language | cs-CZ,cs;q=0.8 |
| Cookie | __utma=248757955.147961114.1364995397.1369308315.1369332515.7; __utmz=248757955.1369305184.5.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided); __utma=125162125.230900929.1370425645.1370425645.1370430402.2; __utmc=125162125; __utmz=125162125.1370425645.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=be0d9a15d3baf41500874bd1a9b1532c; nette-browser=c95zm2w6wz |
| HTTP Response Headers | |
| X-Powered-By | Nette Framework |
| 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=be0d9a15d3baf41500874bd1a9b1532c; expires=Wed, 19-Jun-2013 12:17:09 GMT; path=/; httponly |
| Set-Cookie | nette-browser=c95zm2w6wz; path=/; httponly |
| X-Frame-Options | SAMEORIGIN |
| BCMath support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| bcmath.scale | 0 | 0 |
| BZip2 Support | Enabled |
| Stream Wrapper support | compress.bz2:// |
| Stream Filter support | bzip2.decompress, bzip2.compress |
| BZip2 Version | 1.0.5, 10-Dec-2007 |
| Calendar support | enabled |
| PHP Version | 5.3.3-7+squeeze15 |
| 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 | 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 | On | On |
| error_append_string | no value | no value |
| error_log | /var/www/vyjezdy/vyjezdy/log/php_error.log | no value |
| error_prepend_string | no value | no value |
| error_reporting | 0 | 30711 |
| exit_on_timeout | Off | Off |
| expose_php | On | On |
| extension_dir | /usr/lib/php5/20090626 | /usr/lib/php5/20090626 |
| 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 | .:/usr/share/php:/usr/share/pear | .:/usr/share/php:/usr/share/pear |
| log_errors | Off | On |
| log_errors_max_len | 1024 | 1024 |
| magic_quotes_gpc | On | On |
| 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 | /var/log/php/mail.log | /var/log/php/mail.log |
| max_execution_time | 60 | 60 |
| max_file_uploads | 20 | 20 |
| max_input_nesting_level | 64 | 64 |
| max_input_time | 120 | 120 |
| max_input_vars | 1000 | 1000 |
| memory_limit | 1024M | 1024M |
| open_basedir | no value | no value |
| output_buffering | no value | no value |
| output_handler | no value | no value |
| post_max_size | 800M | 800M |
| precision | 12 | 12 |
| 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 | no value | no value |
| safe_mode_gid | Off | Off |
| safe_mode_include_dir | no value | no value |
| sendmail_from | no value | no value |
| sendmail_path | /usr/sbin/sendmail -t -i | /usr/sbin/sendmail -t -i |
| serialize_precision | 100 | 100 |
| 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 | 800M | 800M |
| upload_tmp_dir | /tmp | /tmp |
| user_dir | no value | no value |
| user_ini.cache_ttl | 300 | 300 |
| user_ini.filename | .user.ini | .user.ini |
| 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.21.0 |
| 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 | dict, file, ftp, ftps, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smtp, smtps, telnet, tftp |
| Host | x86_64-pc-linux-gnu |
| SSL Version | OpenSSL/0.9.8o |
| ZLib Version | 1.2.3.4 |
| libSSH Version | libssh2/1.2.6 |
| date/time support | enabled |
| "Olson" Timezone Database Version | 0.system |
| 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 | no value | no value |
| DBA support | enabled |
| Supported handlers | cdb cdb_make db4 inifile flatfile qdbm |
| Directive | Local Value | Master Value |
|---|---|---|
| dba.default_handler | flatfile | flatfile |
| DOM/XML | enabled |
| DOM/XML API Version | 20031129 |
| libxml Version | 2.7.8 |
| HTML Support | enabled |
| XPath Support | enabled |
| XPointer Support | enabled |
| Schema Support | enabled |
| RelaxNG Support | enabled |
| Regex Library | Bundled library enabled |
| EXIF Support | enabled |
| EXIF Version | 1.4 $Id: exif.c 293036 2010-01-03 09:23:27Z sebastian $ |
| 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 | $Revision: 298196 $ |
| 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 | 2.0 |
| FreeType Support | enabled |
| FreeType Linkage | with freetype |
| FreeType Version | 2.4.2 |
| T1Lib Support | enabled |
| GIF Read Support | enabled |
| GIF Create Support | enabled |
| JPEG Support | enabled |
| libJPEG Version | 6b |
| PNG Support | enabled |
| libPNG Version | 1.2.44 |
| WBMP Support | enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| gd.jpeg_ignore_warning | 0 | 0 |
| GetText Support | enabled |
| 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.11.3 |
| 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.0RC1 |
| imagick classes | Imagick, ImagickDraw, ImagickPixel, ImagickPixelIterator |
| ImageMagick version | ImageMagick 6.6.0-4 2012-05-02 Q16 http://www.imagemagick.org |
| ImageMagick copyright | Copyright (C) 1999-2010 ImageMagick Studio LLC |
| ImageMagick release date | 2012-05-02 |
| ImageMagick number of supported formats: | 198 |
| ImageMagick supported formats | 3FR, A, AI, ART, ARW, AVI, AVS, B, BGR, BGRA, BMP, BMP2, BMP3, BRF, BRG, C, CAL, CALS, CAPTION, CIN, CIP, CLIP, CMYK, CMYKA, CR2, CRW, CUR, CUT, DCM, DCR, DCX, DDS, DFONT, DNG, DPX, EPDF, EPI, EPS, EPS2, EPS3, EPSF, EPSI, EPT, EPT2, EPT3, ERF, FAX, FITS, FRACTAL, FTS, G, G3, GBR, GIF, GIF87, GRADIENT, GRAY, GRB, GROUP4, HALD, HISTOGRAM, HRZ, HTM, HTML, ICB, ICO, ICON, INFO, INLINE, IPL, ISOBRL, J2C, 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, MTV, MVG, NEF, NULL, O, ORF, OTB, OTF, PAL, PALM, PAM, PATTERN, PBM, PCD, PCDS, PCL, PCT, PCX, PDB, PDF, PDFA, PEF, PES, PFA, PFB, PFM, PGM, PGX, PICON, PICT, PIX, PJPEG, PLASMA, PNG, PNG24, PNG32, PNG8, PNM, PPM, PREVIEW, PS, PS2, PS3, PSB, PSD, PTIF, PWP, R, RADIAL-GRADIENT, RAF, RAS, RBG, RGB, RGBA, RGBO, RLA, RLE, SCR, SCT, SFW, SGI, SHTML, SR2, SRF, STEGANO, SUN, TEXT, TGA, THUMBNAIL, TIFF, TIFF64, TILE, TIM, TTC, TTF, TXT, UBRL, UIL, UYVY, VDA, VICAR, VID, VIFF, VST, WBMP, WMV, WPG, X, X3F, XBM, XC, XCF, XPM, XPS, XV, XWD, Y, YCbCr, YCbCrA, YUV |
| 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 |
| LDAP Support | enabled |
| RCS Version | $Id: ldap.c 299434 2010-05-17 20:09:42Z pajoye $ |
| Total Links | 0/unlimited |
| API Version | 3001 |
| Vendor Name | OpenLDAP |
| Vendor Version | 20423 |
| SASL Support | Enabled |
| Directive | Local Value | Master Value |
|---|---|---|
| ldap.max_links | Unlimited | Unlimited |
| libXML support | active |
| libXML Compiled Version | 2.7.8 |
| libXML Loaded Version | 20708 |
| 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) version | 5.9.1 |
| Directive | Local Value | Master Value |
|---|---|---|
| mbstring.detect_order | no value | no value |
| mbstring.encoding_translation | Off | Off |
| mbstring.func_overload | 0 | 0 |
| mbstring.http_input | pass | pass |
| mbstring.http_output | pass | pass |
| mbstring.http_output_conv_mimetypes | ^(text/|application/xhtml\+xml) | ^(text/|application/xhtml\+xml) |
| mbstring.internal_encoding | no value | no value |
| mbstring.language | neutral | neutral |
| mbstring.strict_detection | Off | Off |
| mbstring.substitute_character | no value | no value |
| mcrypt support | enabled |
|---|---|
| mcrypt_filter support | enabled |
| Version | 2.5.8 |
| Api No | 20021217 |
| Supported ciphers | cast-128 gost rijndael-128 twofish arcfour cast-256 loki97 rijndael-192 saferplus wake blowfish-compat des rijndael-256 serpent xtea blowfish enigma rc2 tripledes |
| Supported modes | cbc cfb ctr ecb ncfb nofb ofb stream |
| Directive | Local Value | Master Value |
|---|---|---|
| mcrypt.algorithms_dir | no value | no value |
| mcrypt.modes_dir | no value | no value |
| MHASH support | Enabled |
| MHASH API Version | Emulated Support |
| Ming SWF output library | enabled |
| Version | 0.4.3 |
| MSSQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Library version | FreeTDS |
| Directive | Local Value | Master Value |
|---|---|---|
| mssql.allow_persistent | On | On |
| mssql.batchsize | 0 | 0 |
| mssql.charset | no value | no value |
| mssql.compatability_mode | Off | Off |
| mssql.connect_timeout | 5 | 5 |
| mssql.datetimeconvert | On | On |
| mssql.max_links | Unlimited | Unlimited |
| mssql.max_persistent | Unlimited | Unlimited |
| mssql.max_procs | Unlimited | Unlimited |
| mssql.min_error_severity | 10 | 10 |
| mssql.min_message_severity | 10 | 10 |
| mssql.secure_connection | Off | Off |
| mssql.textlimit | Server default | Server default |
| mssql.textsize | Server default | Server default |
| mssql.timeout | 60 | 60 |
| MySQL Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| Client API version | 5.1.66 |
| MYSQL_MODULE_TYPE | external |
| MYSQL_SOCKET | /var/run/mysqld/mysqld.sock |
| MYSQL_INCLUDE | -I/usr/include/mysql |
| MYSQL_LIBS | -L/usr/lib -lmysqlclient_r |
| 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/run/mysqld/mysqld.sock | /var/run/mysqld/mysqld.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.1.66 |
| Active Persistent Links | 0 |
| Inactive Persistent Links | 0 |
| Active Links | 0 |
| Client API header version | 5.1.49 |
| MYSQLI_SOCKET | /var/run/mysqld/mysqld.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 |
| ODBC Support | enabled |
|---|---|
| Active Persistent Links | 0 |
| Active Links | 0 |
| ODBC library | unixODBC |
| ODBC_INCLUDE | -I/usr/include |
| ODBC_LFLAGS | -L/usr/lib |
| ODBC_LIBS | -lodbc |
| Directive | Local Value | Master Value |
|---|---|---|
| odbc.allow_persistent | On | On |
| odbc.check_persistent | On | On |
| odbc.default_cursortype | Static cursor | Static cursor |
| odbc.default_db | no value | no value |
| odbc.default_pw | no value | no value |
| odbc.default_user | no value | no value |
| odbc.defaultbinmode | return as is | return as is |
| odbc.defaultlrl | return up to 4096 bytes | return up to 4096 bytes |
| odbc.max_links | Unlimited | Unlimited |
| odbc.max_persistent | Unlimited | Unlimited |
| OpenSSL support | enabled |
| OpenSSL Library Version | OpenSSL 0.9.8o 01 Jun 2010 |
| OpenSSL Header Version | OpenSSL 0.9.8o 01 Jun 2010 |
| Pam Authentication Support | active |
| Directive | Local Value | Master Value |
|---|---|---|
| pam_auth.servicename | php | php |
| PCRE (Perl Compatible Regular Expressions) Support | enabled |
| PCRE Library Version | 8.02 2010-03-19 |
| Directive | Local Value | Master Value |
|---|---|---|
| pcre.backtrack_limit | 100000 | 100000 |
| pcre.recursion_limit | 100000 | 100000 |
| PDO support | enabled |
|---|---|
| PDO drivers | dblib, mysql, odbc, pgsql |
| PDO Driver for FreeTDS/Sybase DB-lib | enabled |
|---|---|
| Flavour | freetds |
| PDO Driver for MySQL | enabled |
|---|---|
| Client API version | 5.1.66 |
| PDO Driver for ODBC (unixODBC) | enabled |
|---|---|
| ODBC Connection Pooling | Enabled, strict matching |
| PDO Driver for PostgreSQL | enabled |
|---|---|
| PostgreSQL(libpq) Version | 8.4.15 |
| Module version | 1.0.2 |
| Revision | $Id: pdo_pgsql.c 300351 2010-06-10 12:11:19Z iliaa $ |
| PostgreSQL Support | enabled |
|---|---|
| PostgreSQL(libpq) Version | 8.4.15 |
| Multibyte character support | enabled |
| SSL support | enabled |
| Active Persistent Links | 0 |
| Active Links | 0 |
| Directive | Local Value | Master Value |
|---|---|---|
| pgsql.allow_persistent | On | On |
| pgsql.auto_reset_persistent | Off | Off |
| pgsql.ignore_notice | Off | Off |
| pgsql.log_notice | Off | Off |
| pgsql.max_links | Unlimited | Unlimited |
| pgsql.max_persistent | Unlimited | Unlimited |
| Phar: PHP Archive support | enabled |
|---|---|
| Phar EXT version | 2.0.1 |
| Phar API version | 1.1.1 |
| SVN revision | $Revision: 298908 $ |
| Phar-based phar archives | enabled |
| Tar-based phar archives | enabled |
| ZIP-based phar archives | enabled |
| gzip compression | enabled |
| bzip2 compression | enabled |
| OpenSSL support | enabled |
|
Phar based on pear/PHP_Archive, original concept by Davey Shafik. Phar fully realized by Gregory Beaver and Marcus Boerger. Portions of tar implementation Copyright (c) 2003-2009 Tim Kientzle. |
| Directive | Local Value | Master Value |
|---|---|---|
| phar.cache_list | no value | no value |
| phar.readonly | On | On |
| phar.require_hash | On | On |
| Revision | $Revision: 300764 $ |
| Recode Support | enabled |
| Revision | $Revision: 293036 $ |
| Reflection | enabled |
|---|---|
| Version | $Revision: 300393 $ |
| Session Support | enabled |
| Registered save handlers | files user |
| Registered serializer handlers | php php_binary wddx |
| Directive | Local Value | Master Value |
|---|---|---|
| session.auto_start | Off | Off |
| session.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 | /var/lib/php5 | /var/lib/php5 |
| session.serialize_handler | php | php |
| session.use_cookies | On | On |
| session.use_only_cookies | On | On |
| session.use_trans_sid | 0 | 0 |
| shmop support | enabled |
| Simplexml support | enabled |
|---|---|
| Revision | $Revision: 299424 $ |
| 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 |
| Dynamic Library Support | enabled |
| Path to sendmail | /usr/sbin/sendmail -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 | 60 | 60 |
| 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,input=src,form=,fieldset= | a=href,area=href,frame=src,input=src,form=,fieldset= |
| user_agent | no value | no value |
|
Copyright (c) 2006-2007 Hardened-PHP Project Copyright (c) 2007-2010 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 | no value | no value |
| suhosin.executor.max_depth | 0 | 0 |
| 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 | 64 | 64 |
| suhosin.get.max_name_length | 64 | 64 |
| suhosin.get.max_totalname_length | 256 | 256 |
| suhosin.get.max_value_length | 512 | 512 |
| suhosin.get.max_vars | 100 | 100 |
| suhosin.log.file | 0 | 0 |
| suhosin.log.file.name | no value | no value |
| 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.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.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 | On | On |
| 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_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_uploads | 25 | 25 |
| suhosin.upload.remove_binary | 0 | 0 |
| suhosin.upload.verification_script | no value | no value |
| sysvmsg support | enabled |
| Revision | $Revision: 293036 $ |
| Tidy support | enabled |
|---|---|
| libTidy Release | 25 March 2009 |
| Extension Version | 2.0 ($Id: tidy.c 296107 2010-03-12 10:28:59Z jani $) |
| Directive | Local Value | Master Value |
|---|---|---|
| tidy.clean_output | no value | no value |
| tidy.default_config | no value | no value |
| Tokenizer Support | enabled |
| WDDX Support | enabled |
|---|---|
| WDDX Session Serializer | enabled |
| XML Support | active |
| XML Namespace Support | active |
| libxml2 Version | 2.7.8 |
| 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 |
| Zip | enabled |
| Extension Version | $Id: php_zip.c 300470 2010-06-15 18:48:33Z pajoye $ |
| Zip version | 1.9.1 |
| Libzip version | 0.9.0 |
| ZLib Support | enabled |
| Stream Wrapper support | compress.zlib:// |
| Stream Filter support | zlib.inflate, zlib.deflate |
| Compiled Version | 1.2.1.1 |
| Linked Version | 1.2.3.4 |
| 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 |
|---|
| sysvsem |
| sysvshm |
| Host | vyjezdy.utb.cz |
|---|---|
| Connection | keep-alive |
| Content-Length | 313 |
| Cache-Control | max-age=0 |
| Accept | text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8 |
| Origin | http://vyjezdy.utb.cz |
| User-Agent | Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/27.0.1453.94 Safari/537.36 |
| Content-Type | application/x-www-form-urlencoded |
| Referer | http://vyjezdy.utb.cz/homepage/add-stage |
| Accept-Encoding | gzip,deflate,gzip |
| Accept-Language | cs-CZ,cs;q=0.8 |
| Cookie | __utma=248757955.147961114.1364995397.1369308315.1369332515.7; __utmz=248757955.1369305184.5.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not%20provided); __utma=125162125.230900929.1370425645.1370425645.1370430402.2; __utmc=125162125; __utmz=125162125.1370425645.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); PHPSESSID=be0d9a15d3baf41500874bd1a9b1532c; nette-browser=c95zm2w6wz |
| do | "addExpereinceForm-submit" (24)
|
|---|
| type | "1"
|
|---|---|
| country | "1"
|
| city | "1"
|
| institution | "5"
|
| q1 | "a"
|
| q2 | "a"
|
| q3 | "aa" (2)
|
| q4 | "a"
|
| q5 | "a"
|
| q6 | "a"
|
| q7 | "a"
|
| q8 | "a"
|
| q9 | "a"
|
| q10 | "a"
|
| q11 | "a"
|
| q12 | "a"
|
| q13 | "a"
|
| q14 | "a"
|
| q15 | "a"
|
| q16 | "a"
|
| q17 | "aa" (2)
|
| q18 | "a"
|
| q19 | "a"
|
| q20 | "a"
|
| q21 | "a"
|
| q22 | "a"
|
| q23 | "a"
|
| q24 | "a"
|
| q25 | "a"
|
| q26 | "a"
|
| q27 | "a"
|
| q28 | "a"
|
| q29 | "a"
|
| q30 | "a"
|
| q31 | "a"
|
| q32 | "a"
|
| q33 | "a"
|
| q34 | "a"
|
| q35 | "a"
|
| q36 | "a"
|
| area1 | "<p>sadsadsad</p>
" (18)
|
| send | "Odeslat zkušenost" (18)
|
| __utma | "248757955.147961114.1364995397.1369308315.1369332515.7" (54)
|
|---|---|
| __utmz | "248757955.1369305184.5.3.utmcsr=google|utmccn=(organic)|utmcmd=organic|utmctr=(not provided)" (92)
|
| __utmc | "125162125" (9)
|
| PHPSESSID | "be0d9a15d3baf41500874bd1a9b1532c" (32)
|
| nette-browser | "c95zm2w6wz" (10)
|
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=be0d9a15d3baf41500874bd1a9b1532c; expires=Wed, 19-Jun-2013 12:17:09 GMT; path=/; httponly
Set-Cookie: nette-browser=c95zm2w6wz; path=/; httponly
X-Frame-Options: SAMEORIGIN