- Issue created by @peter pulsifer
- ๐บ๐ธUnited States peter pulsifer
I suppose this is related to the deprecation of EntityTypeManager::setContainer. It is removed from view_mode_page.services.yml in v.4.0.3. But apparently something still is looking for that method.
- ๐บ๐ธUnited States peter pulsifer
This could be some kind of cache-related issue, where a reference to the setContainer method persists after the updated module is uploaded, so that this error is thrown when update.php is run. I was able to do the update, apparently successfully, by temporarily patching line 278 of /core/lib/Drupal/Component/DependencyInjection/Container.php to ignore an attempt to invoke the removed method - adding a condition like the following before call_user_func_array:
if (!($method === 'setContainer' && str_contains(get_class($service),'\DynamicPathProcessor'))) call_user_func_array([$service, $method], $arguments);
With that patch, the update completed successfully. After the update, I removed the patch and so far everything seems to be working normally.
I am trying to resolve the error when i try to install this module on my drupal 10.1.8 version
before updating info and services file-:
Drupal\Core\Extension\InfoParserException: The 'core_version_requirement' key must be present in modules/view_mode_page/view_mode_page.info.yml in Drupal\Core\Extension\InfoParserDynamic->parse() (line 67 of core/lib/Drupal/Core/Extension/InfoParserDynamic.php).
Drupal\Core\Extension\InfoParser->parse('modules/view_mode_page/view_mode_page.info.yml') (Line: 554)
Drupal\Core\Extension\ExtensionList->createExtensionInfo(Object) (Line: 316)
Drupal\Core\Extension\ExtensionList->doList() (Line: 155)
Drupal\Core\Extension\ModuleExtensionList->doList() (Line: 282)
Drupal\Core\Extension\ExtensionList->getList() (Line: 143)
Drupal\update\UpdateManager->getProjects() (Line: 278)
update_get_available() (Line: 38)
update_requirements('runtime') (Line: 91)
update_page_top(Array) (Line: 352)
Drupal\Core\Render\MainContent\HtmlRenderer->Drupal\Core\Render\MainContent\{closure}(Object, 'update') (Line: 388)
Drupal\Core\Extension\ModuleHandler->invokeAllWith('page_top', Object) (Line: 353)
Drupal\Core\Render\MainContent\HtmlRenderer->buildPageTopAndBottom(Array) (Line: 146)
Drupal\Core\Render\MainContent\HtmlRenderer->renderResponse(Array, Object, Object) (Line: 90)
Drupal\Core\EventSubscriber\MainContentViewSubscriber->onViewRenderArray(Object, 'kernel.view', Object)
call_user_func(Array, Object, 'kernel.view', Object) (Line: 111)
Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher->dispatch(Object, 'kernel.view') (Line: 186)
Symfony\Component\HttpKernel\HttpKernel->handleRaw(Object, 1) (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle(Object, 1, 1) (Line: 58)
Drupal\Core\StackMiddleware\Session->handle(Object, 1, 1) (Line: 48)
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: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle(Object, 1, 1) (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle(Object, 1, 1) (Line: 704)
Drupal\Core\DrupalKernel->handle(Object) (Line: 19)To resolve this error i update this files-{
updating info file and services.yml file to resolve the issue
please review and let me know this will resolve the issue or not?- ๐บ๐ธUnited States peter pulsifer
Hi, @niharika.s, I don't know why you would get that error. With Drupal 10.1.8 you could use View Mode Page v4.0.2 but not any later version (view_mode_page.info.yml line 4 is
core_version_requirement: ^9.3 || ^10.0
for version 4.0.2). Later versions require at least Drupal 10.3. I wouldn't try to get around that by changing view_mode_page.info.yml - it won't work!