- πΊπ¦Ukraine vlad.dancer Kyiv
I would also add that if you decided to turn off comment module after migrating old content with comments then you might get troubles with π¬ How to fix "non-existent config entity name returned by FieldStorageConfigInterface::getBundles()" Needs work and you can adapt code from #25 β
But then you'll might have config/state leftovers in database that will cause 'The "comment" entity type does not exist' on each cache rebuild.
So search your key_value table for comment related records and delete them:
SELECT `collection`, `name`, `value` FROM `key_value` WHERE `name` LIKE '%comment%' LIMIT 0,1000;
- πΊπΈUnited States jayemel
Is this fixed? I am seeing this on cron runs after uninstalling paragraphs.
Drupal\Component\Plugin\Exception\PluginNotFoundException: The "paragraph" entity type does not exist. in Drupal\Core\Entity\EntityTypeManager->getDefinition() (line 139 of /code/web/core/lib/Drupal/Core/Entity/EntityTypeManager.php).
Reinstalling, running cron, uninstalling is not an option on 30+ sites, nor is editing the database. Any other suggestions?
The module was uninstalled the correct way, removed any entities, config, etc., then uninstalled. Module uninstalled fine, but this persistent error throw during cron runs.