Quickfix

Gespeichert von Erik Wegner am/um
Aufmacherbild

The Drupal nagios module reads the entries from the watchdog list. It happens that this crashes with an internal server error.

Recoverable fatal error: Object of class __PHP_Incomplete_Class could not be converted to string

To quickly fix that problem and analyze it further, the following change mitigates the effect:

526c526,528
<         $message = str_replace((string) $key, $value, $message);
---
>         if (!is_array($value) && gettype($value) !== "object") {
>           $message = str_replace((string) $key, $value, $message);
>         }
Einsortiert unter

Neuen Kommentar hinzufügen

Hilfe zum Textformat

Activitypub

  • Erlaubte HTML-Tags: <a href hreflang> <em> <strong> <ul type> <ol start type='1 A I'> <li> <dl> <dt> <dd> <h2 id='jump-*'> <h3 id> <h4 id> <h5 id> <h6 id>
  • Zeilenumbrüche und Absätze werden automatisch erzeugt.
  • Website- und E-Mail-Adressen werden automatisch in Links umgewandelt.