If anyone wants a quick fix and wants to continue using PHP 5.6. Just change line 2389 from:
if ( isset( CERBER_DB_TYPES[ $table ][ $field ] ) ) {
to:
$temp = CERBER_DB_TYPES[ $table ];
if ( isset( $temp[ $field ] ) ) {
-
This reply was modified 4 years, 9 months ago by christaly.