Fehlerliste

test
01/04/2022 19:11:01
Typ: ISSUE
Status: OPEN
Beschreibung: i bims 1 text
Test Meldung
01/04/2022 21:11:19
Typ: ISSUE
Status: OPEN
Beschreibung: Alles Schrott
HTTP Request
method
GET
scheme
https
host
isaweb.rz.rptu.de
port
443
base
/
path
issue_list
query
language
de
Routing Result
path
issue_list
route
issue_list
handler
issue.get_readIssues
name
issues.read
options
GET,POST
controller
App\Controllers\IssueController
method
get_readIssues
parameters
HTTP Response
class
RHRK\Framework\Responses\ViewResponse
status code
200
data length
3386
view
main/readIssues.twig
Set-Cookie: PHPSESSID=rcav8gp2aot12n9ho2ernn6nq4; path=/
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate
Pragma: no-cache
Execution Times
middleware before
   37.35 ms
controller method
    2.73 ms
middleware after
    0.02 ms
view rendering
   37.86 ms
total
  101.22 ms
array(33) {
  ["REDIRECT_HTTPS"] string(2) "on"
  ["REDIRECT_STATUS"] string(3) "200"
  ["HTTPS"] string(2) "on"
  ["HTTP_HOST"] string(17) "isaweb.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"
  ["PATH"] string(60) "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  ["SERVER_SIGNATURE"] string(79) "<address>Apache/2.4.62 (Debian) Server at isaweb.rz.rptu.de Port 443</address>
"
  ["SERVER_SOFTWARE"] string(22) "Apache/2.4.62 (Debian)"
  ["SERVER_NAME"] string(17) "isaweb.rz.rptu.de"
  ["SERVER_ADDR"] string(37) "2001:638:208:ef61:2405:94ff:fe38:cbd5"
  ["SERVER_PORT"] string(3) "443"
  ["REMOTE_ADDR"] string(11) "3.145.99.58"
  ["DOCUMENT_ROOT"] string(10) "/srv/empty"
  ["REQUEST_SCHEME"] string(5) "https"
  ["CONTEXT_PREFIX"] string(1) "/"
  ["CONTEXT_DOCUMENT_ROOT"] string(34) "/srv/www/www-isaweb-ply/data/http/"
  ["SERVER_ADMIN"] string(17) "www-adm@uni-kl.de"
  ["SCRIPT_FILENAME"] string(43) "/srv/www/www-isaweb-ply/data/http/index.php"
  ["REMOTE_PORT"] string(5) "36924"
  ["REDIRECT_URL"] string(11) "/issue_list"
  ["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(11) "/issue_list"
  ["SCRIPT_NAME"] string(10) "/index.php"
  ["PHP_SELF"] string(10) "/index.php"
  ["REQUEST_TIME_FLOAT"] float(1734631526.701402)
  ["REQUEST_TIME"] int(1734631526)
}
array(0) {}
array(0) {}
array(0) {}
array(0) {}
Global Middleware 8
RHRK\Framework\Middleware\ErrorHandler
    0.01 ms
    0.00 ms
RHRK\Framework\Middleware\OutputBuffer
    0.00 ms
    0.00 ms
RHRK\Framework\Middleware\ExecuteProviders
   27.01 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
    4.19 ms
    0.00 ms
App\Middleware\DatabaseInitialization
    0.48 ms
    0.00 ms
Route Middleware 0
Normal Providers 7
App\Providers\DatabaseProvider
    9.31 ms
App\Providers\AuthProvider
    1.23 ms
App\Providers\FormProvider
    3.21 ms
App\Providers\LanguageProvider
    0.37 ms
App\Providers\LogProvider
    0.40 ms
App\Providers\TwigProvider
    8.41 ms
App\Providers\ValidatorProvider
    0.46 ms
Deferred Providers 0
Before Twig 6
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
);
    0.57 ms
CREATE TABLE IF NOT EXISTS `users` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `account` VARCHAR(50) NOT NULL UNIQUE,
    `email` VARCHAR(100) NOT NULL UNIQUE,
    `password` VARCHAR(100) NOT NULL,
    `name` VARCHAR(100) NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `words` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `letters` VARCHAR(6) NOT NULL UNIQUE,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `issues` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `title` VARCHAR(255) NOT NULL,
    `type` ENUM("ISSUE", "SUGGESTION") NOT NULL,
    `status` ENUM("OPEN", "CLOSED") NOT NULL,
    `description` TEXT NOT NULL,
    `name` VARCHAR(255) NOT NULL,
    `email` VARCHAR(255) NOT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL
);
     --- ms
CREATE TABLE IF NOT EXISTS `sudokus` (
    `id` SERIAL PRIMARY KEY NOT NULL,
    `challenge` VARCHAR(81) NOT NULL,
    `solution` VARCHAR(81) NOT NULL,
    `difficulty` ENUM("EASY", "NORMAL", "HARD") NOT NULL,
    `created_at` TIMESTAMP NULL,
    `updated_at` TIMESTAMP NULL
);
     --- ms
SELECT * FROM `issues`
     --- 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-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Model.php on line 86

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

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-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 45

Deprecated: Return type of RHRK\Form\Element::offsetSet($offset, $val) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 50

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

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-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 66

Deprecated: Return type of RHRK\Form\Element::next() should either be compatible with Iterator::next(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 81

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-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 76

Deprecated: Return type of RHRK\Form\Element::valid() should either be compatible with Iterator::valid(): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 71

Deprecated: Return type of RHRK\Form\Element::rewind() should either be compatible with Iterator::rewind(): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 86

Deprecated: Return type of RHRK\Form\Element::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/form/src/Element.php on line 91

Deprecated: Return type of cklamm\ORM\Collection::offsetExists($offset) should either be compatible with ArrayAccess::offsetExists(mixed $offset): bool, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Collection.php on line 50

Deprecated: Return type of cklamm\ORM\Collection::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-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Collection.php on line 34

Deprecated: Return type of cklamm\ORM\Collection::offsetSet($offset, $val) should either be compatible with ArrayAccess::offsetSet(mixed $offset, mixed $value): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Collection.php on line 39

Deprecated: Return type of cklamm\ORM\Collection::offsetUnset($offset) should either be compatible with ArrayAccess::offsetUnset(mixed $offset): void, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Collection.php on line 55

Deprecated: Return type of cklamm\ORM\Collection::count() should either be compatible with Countable::count(): int, or the #[\ReturnTypeWillChange] attribute should be used to temporarily suppress the notice in /srv/www/www-isaweb-ply/data/include/isawebtest/vendor/rhrk-webdev/orm/src/Collection.php on line 65