Seite 11 von 12

Re: [3.3] Sporadische php-Fehler

Verfasst: 01.12.2024 14:14
von guenniguenzelsen
Hallo,
ich habe ein frisches Testforum aufgesetzt.
Dazu eine Testdatenbank mit Mysql 8.
Daraus habe ich dann die phpbb_users-Tabelle exportiert.
In Notepad++ habe ich nun die Tabellenzeilen jeweils direkt untereinander kopiert.
Oben: Neue phpbb-Users-Tabelle aus dem Testforum
Unten: phpbb_Users-Tabelle aus dem aktiven Forum

Ich kann in der Benennung keinen Unterschied feststellen.
Einzig die letzte Tabelle "user_elonw" gibt es nur im aktiven Forum, nicht jedoch in den Tabellen des Testforums.

Code: Alles auswählen

CREATE TABLE `phpbb_users` (
CREATE TABLE `phpbb_users` (
  `user_id` int UNSIGNED NOT NULL,
  `user_id` int UNSIGNED NOT NULL,
  `user_type` tinyint NOT NULL DEFAULT '0',
  `user_type` tinyint NOT NULL DEFAULT '0',
  `group_id` mediumint UNSIGNED NOT NULL DEFAULT '3',
  `group_id` mediumint UNSIGNED NOT NULL DEFAULT '3',
  `user_permissions` mediumtext COLLATE utf8_bin NOT NULL,
  `user_permissions` mediumtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `user_perm_from` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_perm_from` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_ip` varchar(40) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_ip` varchar(40) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_regdate` int UNSIGNED NOT NULL DEFAULT '0',
  `user_regdate` int UNSIGNED NOT NULL DEFAULT '0',
  `username` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `username` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `username_clean` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `username_clean` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_password` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_password` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_passchg` int UNSIGNED NOT NULL DEFAULT '0',
  `user_passchg` int UNSIGNED NOT NULL DEFAULT '0',
  `user_email` varchar(100) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_birthday` varchar(10) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_birthday` varchar(10) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_lastvisit` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastvisit` int UNSIGNED NOT NULL DEFAULT '0',
  `user_last_active` int UNSIGNED NOT NULL DEFAULT '0',
  `user_last_active` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastmark` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastmark` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastpost_time` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastpost_time` int UNSIGNED NOT NULL DEFAULT '0',
  `user_lastpage` varchar(200) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_lastpage` varchar(200) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_last_confirm_key` varchar(10) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_last_confirm_key` varchar(10) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_last_search` int UNSIGNED NOT NULL DEFAULT '0',
  `user_last_search` int UNSIGNED NOT NULL DEFAULT '0',
  `user_warnings` tinyint NOT NULL DEFAULT '0',
  `user_warnings` tinyint NOT NULL DEFAULT '0',
  `user_last_warning` int UNSIGNED NOT NULL DEFAULT '0',
  `user_last_warning` int UNSIGNED NOT NULL DEFAULT '0',
  `user_login_attempts` tinyint NOT NULL DEFAULT '0',
  `user_login_attempts` tinyint NOT NULL DEFAULT '0',
  `user_inactive_reason` tinyint NOT NULL DEFAULT '0',
  `user_inactive_reason` tinyint NOT NULL DEFAULT '0',
  `user_inactive_time` int UNSIGNED NOT NULL DEFAULT '0',
  `user_inactive_time` int UNSIGNED NOT NULL DEFAULT '0',
  `user_posts` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_posts` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_lang` varchar(30) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_lang` varchar(30) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_timezone` varchar(100) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_timezone` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_dateformat` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT 'd M Y H:i',
  `user_dateformat` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'd M Y H:i',
  `user_style` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_style` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_rank` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_rank` mediumint UNSIGNED NOT NULL DEFAULT '0',
  `user_colour` varchar(6) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_colour` varchar(6) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_new_privmsg` int NOT NULL DEFAULT '0',
  `user_new_privmsg` int NOT NULL DEFAULT '0',
  `user_unread_privmsg` int NOT NULL DEFAULT '0',
  `user_unread_privmsg` int NOT NULL DEFAULT '0',
  `user_last_privmsg` int UNSIGNED NOT NULL DEFAULT '0',
  `user_last_privmsg` int UNSIGNED NOT NULL DEFAULT '0',
  `user_message_rules` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `user_message_rules` tinyint UNSIGNED NOT NULL DEFAULT '0',  
  `user_full_folder` int NOT NULL DEFAULT '-3',
  `user_full_folder` int NOT NULL DEFAULT '-3',
  `user_emailtime` int UNSIGNED NOT NULL DEFAULT '0',
  `user_emailtime` int UNSIGNED NOT NULL DEFAULT '0',
  `user_topic_show_days` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_topic_show_days` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_topic_sortby_type` varchar(1) COLLATE utf8_bin NOT NULL DEFAULT 't',
  `user_topic_sortby_type` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 't',
  `user_topic_sortby_dir` varchar(1) COLLATE utf8_bin NOT NULL DEFAULT 'd',
  `user_topic_sortby_dir` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'd',
  `user_post_show_days` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_post_show_days` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_post_sortby_type` varchar(1) COLLATE utf8_bin NOT NULL DEFAULT 't',
  `user_post_sortby_type` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 't',
  `user_post_sortby_dir` varchar(1) COLLATE utf8_bin NOT NULL DEFAULT 'a',
  `user_post_sortby_dir` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'a',
  `user_notify` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `user_notify` tinyint UNSIGNED NOT NULL DEFAULT '0',
  `user_notify_pm` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_notify_pm` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_notify_type` tinyint NOT NULL DEFAULT '0',
  `user_notify_type` tinyint NOT NULL DEFAULT '0',
  `user_allow_pm` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_pm` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_viewonline` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_viewonline` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_viewemail` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_viewemail` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_massemail` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_allow_massemail` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_options` int UNSIGNED NOT NULL DEFAULT '230271',
  `user_options` int UNSIGNED NOT NULL DEFAULT '230271',
  `user_avatar` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_avatar` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_avatar_type` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_avatar_type` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_avatar_width` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_avatar_width` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_avatar_height` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_avatar_height` smallint UNSIGNED NOT NULL DEFAULT '0',
  `user_sig` mediumtext COLLATE utf8_bin NOT NULL,
  `user_sig` mediumtext CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `user_sig_bbcode_uid` varchar(8) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_sig_bbcode_uid` varchar(8) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_sig_bbcode_bitfield` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_sig_bbcode_bitfield` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_jabber` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_jabber` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_actkey` varchar(32) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_actkey` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_actkey_expiration` int UNSIGNED NOT NULL DEFAULT '0',
  `user_actkey_expiration` int UNSIGNED NOT NULL DEFAULT '0',
  `reset_token` varchar(64) COLLATE utf8_bin NOT NULL DEFAULT '',
  `reset_token` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `reset_token_expiration` int UNSIGNED NOT NULL DEFAULT '0',
  `reset_token_expiration` int UNSIGNED NOT NULL DEFAULT '0',
  `user_newpasswd` varchar(255) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_newpasswd` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_form_salt` varchar(32) COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_form_salt` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
  `user_new` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_new` tinyint UNSIGNED NOT NULL DEFAULT '1',
  `user_reminded` tinyint NOT NULL DEFAULT '0',
  `user_reminded` tinyint NOT NULL DEFAULT '0',
  `user_reminded_time` int UNSIGNED NOT NULL DEFAULT '0'
  `user_reminded_time` int UNSIGNED NOT NULL DEFAULT '0',
  
  `user_elonw` tinyint UNSIGNED NOT NULL DEFAULT '1'
  
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8_bin;
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

Dies Tabelle gibt es nur im aktiven Forum:

Code: Alles auswählen

  `user_elonw` tinyint UNSIGNED NOT NULL DEFAULT '1'
Diese Info hast du bisher noch nicht hier gegeben, oder? Denn wenn das ursprünglich mal eine andere Forensoft war und schon damals bei der Konvertierung nicht alles sauber vonstatten ging und die Probleme daher rühren, dann suchen wir hier an den völlig falschen Stellen. Aber das ist nur eine Vermutung von mir, denn bisher sah es so aus, als ob die DB nicht reagieren würde. Wenn aber aufgrund einer unsauberen Konvertierung ungültige Daten an den Server geschickt werden, dann wäre das mal eine weitere potentielle Fehlerquelle.
Das stimmt.
Erst als ich alte Konversationen aus 2021 durchgegangen bin, habe ich bemerkt, dass der damalige Kollege das erwähnte.

Re: [3.3] Sporadische php-Fehler

Verfasst: 01.12.2024 15:53
von IMC
guenniguenzelsen hat geschrieben: 01.12.2024 14:14 Einzig die letzte Tabelle "user_elonw" gibt es nur im aktiven Forum, nicht jedoch in den Tabellen des Testforums.
Der Eintrag stammt von der Extension "External Links Open in New Window" rmcgirr83/elonw.
Wenn du diese installiert hast sollte das seine Richtigkeit haben.

Re: [3.3] Sporadische php-Fehler

Verfasst: 01.12.2024 16:18
von guenniguenzelsen
Hi Thorsten
Die Extension habe ich auf Wunsch meiner Nutzer installiert. Das hat also alles dann seine Richtigkeit.

Können die Inhalte einzelner Tabellen fehlerhaft sein und zu den PHP-Meldungen führen?

Re: [3.3] Sporadische php-Fehler

Verfasst: 05.12.2024 21:19
von LukeWCS
guenniguenzelsen hat geschrieben: 01.12.2024 14:14 Das stimmt.
Erst als ich alte Konversationen aus 2021 durchgegangen bin, habe ich bemerkt, dass der damalige Kollege das erwähnte.
Das wäre halt eine wichtige Info schon direkt für den Startbeitrag gewesen und nicht erst 1 Jahr und 10 Seiten später. :wink:

Jut, dann alles zurück auf Anfang und wir gehen ab jetzt davon aus, dass das DB Ergebnis schlicht deswegen false ist, weil scheinbar "Schrott" an die DB geschickt wird. Denn dann wäre auch klar warum die DB Funktion dieses Ergebnis zurück liefert. Ich habe den Debug Code entsprechend umgebaut, der liefert nicht mehr nur den Variablentyp der Rückgabe zurück, sondern der hat den Fokus jetzt auf die Daten die an die DB geschickt werden. Es kann sein das wir auf dem Weg ne Weile brauchen und ich den Code mehrfach erweitern muss, bis wir etwas verwertbares haben. Aber irgendwo muss man mal anfangen.

Editiere: phpbb\session.php

1. Suche:

Code: Alles auswählen

class session
{
Füge darunter ein:

Code: Alles auswählen

	function debug_log(&$db_rc, $label, $debug_data_ary)
	{
		$debug_log = 'store\debug_log.txt';
		if (!file_exists($debug_log))
		{
			file_put_contents($debug_log, '');
		}

		$variable_type = gettype($db_rc);
		if ($variable_type != 'array')
		{
			$debug_date = new \DateTimeImmutable();
			$debug_date = $debug_date->setTimezone(new \DateTimeZone('Europe/Berlin'));
			$debug_data = '';
			foreach ($debug_data_ary as $key => $value)
			{
				$debug_data .= '    ' . $key . ': ' . $value . "\n";
			}
			file_put_contents($debug_log, $debug_date->format('Y-m-d H:i:s') . ' - ' . $label . ' - ' . $variable_type . "\n" . $debug_data, FILE_APPEND);
		}
	}
2. Suche:

Code: Alles auswählen

if ($this->data['user_id'] != ANONYMOUS && !$bot)
Füge darüber ein:

Code: Alles auswählen

		$this->debug_log($this->data, 'session_create', [
			"cookie_data['u']"	=> $this->cookie_data['u'] ?? '???',
			'bot'				=> $bot ?: 'false',
			'db:user_id'		=> $this->data['user_id'] ?? '???',
		]);
3. Dann im Forenindex die Cookies löschen. Jetzt prüfen, ob die Datei store\debug_log.txt vorhanden ist. Wenn ja, ist alles korrekt gelaufen und du solltest das dann mal mindestens 24 Stunden laufen lassen.

Ich generiere das Log jetzt in diesem Ordner, weil es ab jetzt sein kann, dass wir auch sensiblere Daten loggen müssen. Noch ist das aber NICHT der Fall, ich sage dir das dann deutlich wenn es soweit ist, dann vereinbaren wir auch eine Methode für den privaten Transfer. Aber erstmal gehts noch um problemlose Daten, in dem Fall u.a. die User IDs.

Re: [3.3] Sporadische php-Fehler

Verfasst: 07.12.2024 10:56
von guenniguenzelsen
Hi Luke,
ich habe die Datei mit Notepad++ modifiziert und im Forenindex die Cookies gelöscht, wie Du beschrieben hast.

Die debug_log.txt wird im Ordner store allerdings nicht angelegt.
Habe das Prozedere jetzt zwei mal wiederholt, den Code per "alles markieren" und kopieren 1:1 übernommen und dann den ersten Teil unterhalb, den anderen Teil oberhalb der angegebenen Stellen eingefügt.

Hat sich hier in den Code noch ein Fehler eingeschlichen, oder mache ich noch irgendwas falsch?

Re: [3.3] Sporadische php-Fehler

Verfasst: 07.12.2024 11:51
von LukeWCS
guenniguenzelsen hat geschrieben: 07.12.2024 10:56 Hat sich hier in den Code noch ein Fehler eingeschlichen, oder mache ich noch irgendwas falsch?
Beim Debugging ist immer beides möglich, weil das absolute Präzision sowohl beim Programmierer, als auch beim Admin voraussetzt. Aufgrund des bisherigen Verlaufs hier im Thema bez. Debugging bin ich davon ausgegangen, das ich etwas übersehen habe. Entwicklung und Debugging mache ich immer lokal in TBs, da ich hier ganz andere Möglichkeiten habe als online. Also das Ganze in meinem eigenen LB wiederholt und gleiches Problem festgestellt; Datei wird nicht erzeugt. Den Fehler dann auch schnell gefunden:

Ändere das hier:

Code: Alles auswählen

$debug_log = 'store\debug_log.txt';
In das hier:

Code: Alles auswählen

$debug_log = 'store/debug_log.txt';
Dann nochmal Cookies löschen, jetzt sollte die Log Datei vorhanden sein.

Normal hat PHP keine Probleme mit Windows-formatierten Pfaden, aber das ist abhängig von Situation bzw. Funktion.

Re: [3.3] Sporadische php-Fehler

Verfasst: 07.12.2024 12:09
von guenniguenzelsen
LukeWCS hat geschrieben: 07.12.2024 11:51 Beim Debugging ist immer beides möglich, weil das absolute Präzision sowohl beim Programmierer, als auch beim Admin voraussetzt.
Die Wahrscheinlichkeit, dass ich hier was verbocke ist definitiv höher :-)
Ich habe die Änderung vorgenommen, die debug_log.txt wird jetzt erzeugt.
Dann lassen wir das mal etwas laufen
Direkt nach dem Erstellen ist sie jetzt zunächst leer.

Re: [3.3] Sporadische php-Fehler

Verfasst: 07.12.2024 12:53
von LukeWCS
Alles klar, dann warten wir ab.

Ja, die Datei hat anfangs 0 Bytes, das ist erwartet, weil der Debug Code jetzt keine "Marker" mehr setzt, sondern nur noch dann reagiert, wenn das Problem effektiv auftritt.

Re: [3.3] Sporadische php-Fehler

Verfasst: 07.12.2024 12:56
von guenniguenzelsen
Es ist jetzt auch eine erste Meldung geloggt

Code: Alles auswählen

2024-12-07 12:35:35 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
Im Error-log der Seite ist genau mit der gleichen Zeit auch eine PHP-Fehlermeldung nach dem bisher üblichen Format eingetragen

Update:
Über Nacht haben sich diese Logs gesammelt:

Code: Alles auswählen

2024-12-07 12:35:35 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 13:03:50 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 13:58:38 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 13:58:39 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 15:20:22 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 17:11:14 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 17:19:14 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 18:54:46 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 18:55:08 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 19:04:50 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 19:04:51 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 19:57:39 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 20:19:49 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 20:19:50 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 20:59:55 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 22:05:21 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 22:10:31 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 22:31:03 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 22:43:44 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 23:19:38 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-07 23:19:40 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 01:23:00 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 01:23:01 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 02:51:43 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 02:51:47 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 02:55:43 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 02:55:44 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 03:29:37 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 03:53:26 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 04:05:10 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 04:52:01 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 05:54:27 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 05:54:29 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 06:17:12 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 06:26:14 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 06:47:46 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 07:23:50 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 07:50:22 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 08:21:00 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???
2024-12-08 10:15:02 - session_create - boolean
    cookie_data['u']: 10
    bot: 10
    db:user_id: ???

Dazu sind diese PHP-Fehler geloggt (unten gekürzt, da ansonsten die Maximalanzahl eines Beitrags überschritten wird):

Code: Alles auswählen

[Sat Dec 07 12:35:35.846864 2024] [proxy_fcgi:error] [pid 3729726:tid 140555241490176] [client 157.55.39.0:6160] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'
[Sat Dec 07 13:03:50.642107 2024] [proxy_fcgi:error] [pid 3772793:tid 140555241490176] [client 52.167.144.0:5534] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'
[Sat Dec 07 15:20:22.606242 2024] [proxy_fcgi:error] [pid 4023441:tid 140555384166144] [client 52.167.144.0:58478] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'
[Sat Dec 07 17:11:14.073862 2024] [proxy_fcgi:error] [pid 30596:tid 140555501664000] [client 52.167.144.0:48780] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'
[Sat Dec 07 17:19:14.658529 2024] [proxy_fcgi:error] [pid 41672:tid 140555610769152] [client 52.167.144.0:45780] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'
[Sat Dec 07 18:54:47.032778 2024] [proxy_fcgi:error] [pid 210492:tid 140555602376448] [client 157.55.39.0:26280] AH01071: Got error 'PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/auth/auth.php on line 424; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3978; PHP message: PHP Warning:  Undefined array key "user_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/phpbb/notification/method/board.php on line 147; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2014; PHP message: PHP Warning:  Undefined array key "user_form_salt" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 2043; PHP message: PHP Warning:  Undefined array key "avatar" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3723; PHP message: PHP Warning:  Undefined array key "avatar_width" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3724; PHP message: PHP Warning:  Undefined array key "avatar_height" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3725; PHP message: PHP Warning:  Undefined array key "avatar_type" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 3730; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4030; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4031; PHP message: PHP Warning:  Undefined array key "user_new_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4039; PHP message: PHP Warning:  Undefined array key "user_unread_privmsg" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4040; PHP message: PHP Warning:  Undefined array key "user_new" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4041; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_colour" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4064; PHP message: PHP Warning:  Undefined array key "user_perm_from" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4078; PHP message: PHP Warning:  Undefined array key "username" in /var/www/vhosts/kundenverzeichnis/unterverzeichnis/phpBB3/includes/functions.php on line 4088'

Re: [3.3] Sporadische php-Fehler

Verfasst: 08.12.2024 12:11
von LukeWCS
Dein ZIP habe ich bekommen, merci.

Jetzt wird es interessant. :wink: Demnach war hier ein "seltsamer" Bot unterwegs, der auf einen Cookie-Request seitens deines Servers reagiert hat, was aber Bots normalerweise nicht tun. Auf Cookie-Requests reagieren normalerweise nur Browser.

Okay, ich muss das im phpBB Source noch genau verfolgen um diese Daten hier bewerten zu können. Was du aber in der Zwischenzeit schon mal machen kannst:

Sichte bitte bei dir in der DB in der Tabelle ..._users ob du da überhaupt einen User mit der ID 10 hast. Denn nach den Daten hier, gibts den User bei dir gar nicht.