- πΊπΈUnited States eswiderski
This module destroyed a bunch of my custom menus. STAY AWAY.
The website encountered an unexpected error. Please try again later.</br></br><em class="placeholder">Symfony\Component\Routing\Exception\RouteNotFoundException</em>: Route "menu_token.available_entities_configuration_form" does not exist. in <em class="placeholder">Drupal\Core\Routing\RouteProvider->getRouteByName()</em> (line <em class="placeholder">201</em> of <em class="placeholder">core\lib\Drupal\Core\Routing\RouteProvider.php</em>).
To resolve this error, go to your database and run the SQL query:
SELECT * FROM menu_tree WHERE route_name="menu_token.available_entities_configuration_form";
And delete that entry.Site should be working fine
- πΊπΈUnited States rex.barkdoll
Hi, I'm prepping a site for D10 and ran into this issue trying to uninstall 9.1.0-alpha1 from the site.
Patch #5 from comment six on https://www.drupal.org/project/menu_token/issues/3047794#comment-13213420 β did NOT work for me.
I do want to thank gshreeGS for their database modification suggestion in #20 π Site crashes after uninstalling module Active . I unchecked the entity types on the menu token page and then removed that single entry from the menu tree table and the uninstall went fine.
I'm not sure if there's anything the developers can do to clean up the install process, that would be massively helpful. I remember this module being a pain in the past.
- πΈπͺSweden edward.peters
Thank you gshreeGS and rex.barkdoll. This worked for me.
- π¦πΉAustria paper boy
The solution in #20 is working well for me on Drupal 9.5.11 when performing the following steps:
Uncheck all options from Menu Token config at /admin/config/menu_token
Disable the module:
drush -y pmu menu_token
Remove the dead route:
drush sql:query "DELETE from menu_tree WHERE route_name = 'menu_token.available_entities_configuration_form'"
Rebuild cache:
drush cr