Ankündigung

Einklappen
Keine Ankündigung bisher.

Error-Log läuft voll nach Upgrade auf C4.13

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Error-Log läuft voll nach Upgrade auf C4.13

    Moin Tim,

    wir haben eine Upgrade von C4.9 (EX3, PHP 7.4) auf C4.13.12 (PHP 8.1.10, EX 4.1.13) gemacht und das hat soweit alles geklappt. Die Site funktioniert im Frontend soweit wie vorher und ist noch mal deutlich schneller geworden. Soweit so gut ... aber ... auf dem Server wird das error.log regelrecht geflutet mit Fehlermeldungen wie diese:

    HTML-Code:
    2022/10/27 00:25:39 [error] 7734#7734: *8540274 FastCGI sent in stderr: "Attributes/Files/Files.php on line 234PHP message: PHP Warning: Undefined array key "linkText" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 235PHP message: PHP Warning: Undefined array key "multiple" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 69PHP message: PHP Warning: Undefined array key "multiple" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 114PHP message: PHP Warning: Undefined array key "linkTitle" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 234PHP message: PHP Warning: Undefined array key "linkText" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 235PHP message: PHP Warning: Undefined array key "multiple" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 69PHP message: PHP Warning: Undefined array key "multiple" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 114PHP message: PHP Warning: Undefined array key "linkTitle" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 234PHP message: PHP Warning: Undefined array key "linkText" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 235PHP message: PHP Warning: Undefined array key "multiple" in /var/www/clients/client21/web149/web/system/modules/pct_customelements/PCT/CustomElements/Attributes/Files/Files.php on line 69PHP message: PHP Warning: Undefined array key

    oder diese hier:

    HTML-Code:
    2022/10/27 08:08:49 [error] 7735#7735: *8560445 FastCGI sent in stderr: "ickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Undefined array key "_COUNTER_" in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Undefined array key "_COUNTER_" in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Undefined array key "_COUNTER_" in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning: Trying to access array offset on value of type null in /var/www/clients/client21/web149/web/system/modules/pct_frontend_quickedit/PCT/FrontendQuickEdit/Core.php on line 52PHP message: PHP Warning:
    Gibt noch viele mehr ... Nach 8h hat das Log bereits 10 MB ...

    Interessanterweise ist davon im Frontend erstmal nichts zu bemerken. Da flutscht alles ...

    Idee wo ich ansetzen könnte?

  • #2
    Fehler sind Execptions. Warnings sind Warnings und verhindern nicht die Ausführung. PHP8.1 ist strikter deklariert als PHP8.0 oder 7.4.

    Setze vorerst PHP8.0 ein (und oder Contao im normalen produktiven Modus)

    Oder du setzt das reporting von Warnungen aus, das nur ausführungskritische (E_ERROR vorallem) gefeuert werden.

    initconfig.php (oder vergleichbar)
    Code:
    error_reporting(E_ERROR | E_PARSE | E_NOTICE);
    Zuletzt geändert von Tim; 27.10.2022, 08:53.
    http://www.premium-contao-themes.com

    Kommentar


    • #3
      Ja oke, danke Dir. Auf 8.0 möchte ich nicht runter und ich habe erst mal das error_reporting angepasst. Danke dafür. Bestimmt gibt es ja gaaaanz bald ein EX4 Update, was dann die Variablen entsprechend deklariert. Dann stelle ich es wieder zurück. Die beiden obigen Module hatten die bei weitem meisten Einträge bei mir.

      Kommentar


      • #4
        Ja, Updates kommen natürlich. Ob in einem Update bereits jede kleine Ecke erwischt wurde... schwierig. Aber Stück für Stück und "viele Hände, schnelles Ende" (bzw. viele Augen), helfen.
        http://www.premium-contao-themes.com

        Kommentar


        • #5
          Ja, logo. Passt ja auch alles ... Apropos viele Augen ...
          Hier könnte noch ein Typo sein: /system/modules/pct_privacy_manager/templates/modules/mod_privacy_default.html5 Zeile 54. Aus 3 mach 4

          Kommentar

          Lädt...
          X