Login

HTTP Request
method
GET
scheme
https
host
mitfahren-dev.rz.rptu.de
port
443
base
/
path
login
query
language
en
Routing Result
path
login
route
login
handler
login.get_login
name
login
options
GET,POST
controller
App\Controllers\LoginController
method
get_login
parameters
HTTP Response
class
RHRK\Framework\Responses\ViewResponse
status code
200
data length
56585
view
main/login.twig
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Execution Times
middleware before
    2.77 ms
controller method
    0.03 ms
middleware after
    0.01 ms
view rendering
    7.28 ms
total
  283.45 ms
array(34) {
  ["REDIRECT_HTTPS"] string(2) "on"
  ["REDIRECT_STATUS"] string(3) "200"
  ["HTTPS"] string(2) "on"
  ["HTTP_HOST"] string(24) "mitfahren-dev.rz.rptu.de"
  ["HTTP_X_FORWARDED_PROTO"] string(5) "https"
  ["HTTP_CONNECTION"] string(5) "close"
  ["HTTP_ACCEPT"] string(3) "*/*"
  ["HTTP_USER_AGENT"] string(103) "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
  ["HTTP_ACCEPT_ENCODING"] string(23) "gzip, br, zstd, deflate"
  ["HTTP_COOKIE"] string(36) "PHPSESSID=tgcr0p9v8or70impfeqchojr13"
  ["PATH"] string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  ["SERVER_SIGNATURE"] string(86) "<address>Apache/2.4.66 (Debian) Server at mitfahren-dev.rz.rptu.de Port 443</address>
"
  ["SERVER_SOFTWARE"] string(22) "Apache/2.4.66 (Debian)"
  ["SERVER_NAME"] string(24) "mitfahren-dev.rz.rptu.de"
  ["SERVER_ADDR"] string(37) "2001:638:208:ef61:2405:94ff:fe38:cbd5"
  ["SERVER_PORT"] string(3) "443"
  ["REMOTE_ADDR"] string(14) "216.73.216.129"
  ["DOCUMENT_ROOT"] string(10) "/srv/empty"
  ["REQUEST_SCHEME"] string(5) "https"
  ["CONTEXT_PREFIX"] string(1) "/"
  ["CONTEXT_DOCUMENT_ROOT"] string(36) "/srv/www/www-mitfahrt-dev/data/http/"
  ["SERVER_ADMIN"] string(17) "www-adm@uni-kl.de"
  ["SCRIPT_FILENAME"] string(45) "/srv/www/www-mitfahrt-dev/data/http/index.php"
  ["REMOTE_PORT"] string(5) "53486"
  ["REDIRECT_URL"] string(6) "/login"
  ["GATEWAY_INTERFACE"] string(7) "CGI/1.1"
  ["SERVER_PROTOCOL"] string(8) "HTTP/1.1"
  ["REQUEST_METHOD"] string(3) "GET"
  ["QUERY_STRING"] string(0) ""
  ["REQUEST_URI"] string(6) "/login"
  ["SCRIPT_NAME"] string(10) "/index.php"
  ["PHP_SELF"] string(10) "/index.php"
  ["REQUEST_TIME_FLOAT"] float(1771872365.665566)
  ["REQUEST_TIME"] int(1771872365)
}
array(0) {}
array(0) {}
array(0) {}
array(1) {
  ["lang"] string(2) "en"
}
Global Middleware 8
RHRK\Framework\Middleware\ErrorHandler
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\OutputBuffer
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\ExecuteProviders
    2.04 ms
    0.00 ms
RHRK\Framework\Middleware\Maintenance
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\SanitizeInput
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\Validation
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\Routing
    0.21 ms
    0.00 ms
App\Middleware\Database
    0.41 ms
    0.00 ms
Route Middleware 1
App\Middleware\Guest
    0.00 ms
    0.00 ms
Normal Providers 8
App\Providers\DatabaseProvider
    0.58 ms
App\Providers\AuthProvider
    0.02 ms
App\Providers\FormProvider
    0.04 ms
App\Providers\LanguageProvider
    0.04 ms
App\Providers\LogProvider
    0.01 ms
App\Providers\TwigProvider
    0.20 ms
App\Providers\ValidatorProvider
    0.01 ms
App\Providers\TemplateToolProvider
    1.05 ms
Deferred Providers 0
Before Twig 5
CREATE TABLE IF NOT EXISTS `log` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `user_id` BIGINT UNSIGNED NULL,
    `level` VARCHAR(50) NOT NULL,
    `message` TEXT NOT NULL,
    `data` TEXT NULL,
    `method` VARCHAR(50) NULL,
    `url` TEXT NULL,
    `file` TEXT NULL,
    `line` INT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL,
    `deleted_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `users` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `email` VARCHAR(100) NOT NULL UNIQUE,
    `username` VARCHAR(100) NULL,
    `firstname` VARCHAR(100) NOT NULL,
    `surname` VARCHAR(100) NOT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL,
    `deleted_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `rides` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `user_id` BIGINT UNSIGNED NOT NULL,
    `type` TEXT NOT NULL,
    `from_id` BIGINT UNSIGNED NOT NULL,
    `to_id` BIGINT UNSIGNED NOT NULL,
    `meeting_point` TEXT NOT NULL,
    `seats` INT NOT NULL,
    `departure_time` TIMESTAMP NOT NULL,
    `repetition` TEXT NOT NULL,
    `days` TEXT NULL,
    `information` TEXT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL,
    `deleted_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `locations` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `name` TEXT NOT NULL,
    `zip_code` INT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL,
    `deleted_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `bookings` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `user_id` BIGINT UNSIGNED NOT NULL,
    `ride_id` BIGINT UNSIGNED NOT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL,
    `deleted_at` TIMESTAMP NULL
);
     --- ms
During Twig 0

Deprecated: Return type of cklamm\ORM\Model::jsonSerialize() should either be compatible with JsonSerializable::jsonSerialize(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-mitfahrt-dev/data/include/mitfahrzentrale/vendor/rhrk-webdev/orm/src/Model.php on line 86

Deprecated: Return type of RHRK\Form\Element::offsetGet($offset) should either be compatible with ArrayAccess::offsetGet(mixed $offset): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-mitfahrt-dev/data/include/mitfahrzentrale/vendor/rhrk-webdev/form/src/Element.php on line 45

Deprecated: Return type of RHRK\Form\Element::current() should either be compatible with Iterator::current(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-mitfahrt-dev/data/include/mitfahrzentrale/vendor/rhrk-webdev/form/src/Element.php on line 66

Deprecated: Return type of RHRK\Form\Element::key() should either be compatible with Iterator::key(): mixed, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-mitfahrt-dev/data/include/mitfahrzentrale/vendor/rhrk-webdev/form/src/Element.php on line 76