When enabling this module (8.x-1.0-alpha1) with rules 8.x-3.0-alpha8 on Drupal 10.2.1, it surfaces the following error message as soon as you click the "Install" button on the extend page.

2024/02/11 15:01:28 [error] 39310#39310: *161 FastCGI sent in stderr: "PHP message: Uncaught PHP Exception Drupal\Component\Plugin\Exception\PluginNotFoundException: "The "open_webforms_action" plugin does not exist. Valid plugin IDs for Drupal\Core\Action\ActionManager are: node_assign_owner_action, node_unpromote_action, node_promote_action, node_make_sticky_action, node_unpublish_by_keyword_action, node_make_unsticky_action, redirect_delete_action, simplenews_send_action, simplenews_stop_action, user_add_role_action, user_block_user_action, user_cancel_user_action, user_remove_role_action, user_unblock_user_action, webform_archive_action, webform_close_action, webform_delete_action, webform_open_action, webform_unarchive_action, webform_submission_delete_action, webform_submission_make_lock_action, webform_submission_make_sticky_action, webform_submission_make_unlock_action, webform_submission_make_unsticky_action, pathauto_update_alias, entity:delete_action:node, entity:delete_action:webform, action_send_email_action, action_goto_action, action_message_action, en" while reading response header from upstream, client: 1.2.3.4, server: my.server.com, request: "POST /admin/modules HTTP/1.1", upstream: "fastcgi://unix:/run/php-fpm/www.sock:", host: "my.server.com", referrer: "https://my.server.com/admin/modules"

Seems like open_webforms_action is not a valid plugin - should we instead be looking for webform_open_action?

This also prevents the module from properly loading the DB schema.

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

rjbrown99 created an issue. See original summary.

dineshkumarbollu’s picture

StatusFileSize
new298.39 KB

+1 For the above error.

renukakulkarni’s picture

Assigned: Unassigned » renukakulkarni
Priority: Normal » Major

renukakulkarni’s picture

MR https://git.drupalcode.org/project/webform_rules/-/merge_requests/2 will fix the issue which is occurring while enabling the module. But it seems the module is still using hooks which are already removed from the webform like hook_webform_submission_update, hook_webform_submission_delete which are resulting in an error. Those should get fixed in the porting issue -https://www.drupal.org/project/webform_rules/issues/2997447

renukakulkarni’s picture

Status: Active » Needs review
danyg’s picture

Status: Needs review » Reviewed & tested by the community

I can confirm that the patched version fixes the issue on enabling the module. Thanks!