- Issue created by @solideogloria
I had to remove all link entities and reanalyze content for links. Then it works.
- πΊπΈUnited States jlancaster
Similar issues. I quickly realized no content edits would save on site, producing a parent_entity_type_id not found error. I manually enabled dynamic entity reference after seeing it in missing modules report.
composer require 'drupal/dynamic_entity_reference:^3.2'
But the error remains for core broken links reports:
Drupal\Component\Plugin\Exception\PluginNotFoundException: The "" entity type does not exist. in Drupal\Core\Entity\EntityTypeManager->getDefinition() (line 142 of core/lib/Drupal/Core/Entity/EntityTypeManager.php).
@jlancaster, yes that's exactly what I had happen. Same errors. To fix it, delete all links and reanalyze content for links. I also upgraded to 2.1.x and removed dynamic_entity_reference
- πΊπΈUnited States jlancaster
Ahh, you had me curious and confused because I had no idea what "delete all links and reanalyze content" meant (shows how often I use linkchecker). If anyone else sees this, I found what is being referenced at /admin/config/content/linkchecker in the "Maintenance" section the button says "Clear link data and analyze content for links." Once I ran this everything is good... minus waiting for content to reanalyze. That said, the missing dependency for DER is concerning and I'd like to manually not have to include it.
Yeah, 2.1.x doesn't use DER anymore, so I figured it was a good time to upgrade.
- πΊπΈUnited States paulmckibben Atlanta, GA
Confirming the instructions in #5 from @jlancaster cleared the problem up for me. Thank you!