Drupal version 10.0.9
Lando ngnx environment
Php 8.1.31
Composer 2.5.5
I've updated to:
"drupal/gin": "^3.0",
"drupal/gin_login": "^2.1",
"drupal/gin_toolbar": "^1.0",
After a "lando rebuild" I'm getting the same error:
NOTICE: PHP message: Uncaught PHP Exception Symfony\Component\DependencyInjection\Exception\ServiceNotFoundException: "You have requested a non-existent service "gin_login.route"." at /app/web/core/lib/Drupal/Component/DependencyInjection/Container.php line 157
Any ideas why this is happening?
I found the answer to my own problem and it was in the documentation on this page:
https://www.drupal.org/docs/7/configuring-clean-urls/clean-urls-with-apache-2-on-ubuntu →
I ended up using Method B since I couldn't get the recommended Method A to work.
I added the following to my /etc/apache2/apache2.conf file
<Directory /var/www/html/drupaldownload>
AllowOverride All
</Directory>
and then restarted it using
sudo /etc/init.d/apache2 reload
and my entire site started working including all /admin pages.