"Plugin does not exist" error on modifying Media value

Created on 13 July 2019, over 5 years ago
Updated 9 December 2024, 4 months ago

When attempting to modify field values on a content type with a core Media field in 8.7, I select the field, click the "add media" button, and choose the image from the library (or upload it through the widget, either way produces the same error.) Selecting the image appears to work fine, but after clicking "insert selected," the UI still says "No media items are selected." If you then hit Apply, you get the following error:

The website encountered an unexpected error. Please try again later.

Drupal\Component\Plugin\Exception\PluginNotFoundException: The "" plugin does not exist. in Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionManager->getDefinition() (line 142 of modules/contrib/views_bulk_operations/src/Service/ViewsBulkOperationsActionManager.php).
Drupal\Core\Plugin\Factory\ContainerFactory->createInstance(NULL, Array) (Line: 83)
Drupal\Component\Plugin\PluginManagerBase->createInstance(NULL) (Line: 124)
Drupal\views_bulk_operations\Form\ConfigureAction->validateForm(Array, Object)
call_user_func_array(Array, Array) (Line: 82)
Drupal\Core\Form\FormValidator->executeValidateHandlers(Array, Object) (Line: 275)
Drupal\Core\Form\FormValidator->doValidateForm(Array, Object, 'views_bulk_operations_configure_action') (Line: 118)
Drupal\Core\Form\FormValidator->validateForm('views_bulk_operations_configure_action', Array, Object) (Line: 576)
Drupal\Core\Form\FormBuilder->processForm('views_bulk_operations_configure_action', Array, Object) (Line: 319)
Drupal\Core\Form\FormBuilder->buildForm('views_bulk_operations_configure_action', Object) (Line: 93)
Drupal\Core\Controller\FormController->getContentResult(Object, Object)
call_user_func_array(Array, Array) (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 582)
Drupal\Core\Render\Renderer->executeInRenderContext(Object, Object) (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext(Array, Array) (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 151)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 68)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 57)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 47)
Drupal\Core\StackMiddleware\KernelPreHandle->handle(Object, 1, 1) (Line: 106)
Drupal\page_cache\StackMiddleware\PageCache->pass(Object, 1, 1) (Line: 85)
Drupal\page_cache\StackMiddleware\PageCache->handle(Object, 1, 1) (Line: 47)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 52)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 23)
Stack\StackedHttpKernel->handle(Object, 1, 1) (Line: 693)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)

It would be great to be able to bulk update media fields.

πŸ› Bug report
Status

Active

Version

2.4

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States brightbold Boston, MA

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

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡ΊπŸ‡ΈUnited States RichardDavies Portland, Oregon

    In case this helps anyone, while developing a custom VBO action I got the same error after I changed my action's plugin ID. The error said it couldn't find the old plugin ID, and I couldn't find any references to the old ID anywhere in my code or config. Finally I realized I had been testing the plugin and apparently had left an item checked on my VBO form when I changed the ID value. VBO stores some temporary data related to which items are checked, along with the selected action in the database key_value_expire table so that if you reload the view it can restore your set of checked items.

    Anyway, I had to delete some rows from that database table:

    delete from key_value_expire
    where collection = 'tempstore.private.views_bulk_operations_[view_id]_[display_id]'

    (replace [view_id] and [display_id] with your appropriate values)

    Alternatively, I guess I could have reverted back to the original plugin ID, made sure to uncheck all items on the view, and then change the plugin ID to the new value.

Production build 0.71.5 2024