Honeypot errors D10.4.2,PHP8.3.16

Created on 13 February 2025, about 2 months ago

Problem/Motivation

Manual + auto update gives same errors.

On contact form user-facing page:
Warning: Undefined array key "elements" in Drupal\honeypot\HoneypotService->addFormProtection() (line 151 of modules/honeypot/src/HoneypotService.php).

On submit:
white page error screen:
The website encountered an unexpected error. Try again later.

TypeError: array_key_exists(): Argument #2 ($array) must be of type array, null given in array_key_exists() (line 151 of modules/honeypot/src/HoneypotService.php).

Sends email, but stops at error screen

Steps to reproduce

Drupal 10.4.2
PHP 8.3.16
Update to 2.2.1 from 2.2.0

πŸ› Bug report
Status

Active

Version

2.2

Component

Code

Created by

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @slangston
  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    This was already fixed in ✨ Conflicting name with other element(s) Needs review .

  • πŸ‡ΊπŸ‡ΈUnited States tr Cascadia

    Please try out the fix in that other issue, then comment in that other issue to let us know whether that fixed the problem for you.

  • That seems to work. Thanks to the original poster of the patch!
    For those who end up here without a lot of Drupal/PHP experience, here are the steps I took:

    In folder:
    /modules/honeypot/src

    the file:
    HoneypotService.php

    comment out lines 150-154:
    /*
    if (!empty($form['#webform_id'])) {
    while (array_key_exists($honeypot_element, $form['elements'])) {
    $honeypot_element .= '_';
    }
    }
    */

    Then, after this line: (146)
    $honeypot_element = $this->config->get('element_name');

    Insert this:
    // Check if this key already exists, if it does, change the name.
    if (array_key_exists($honeypot_element, $form)) {
    $honeypot_element .= '_';
    }

    Clear cache.

Production build 0.71.5 2024