Bug #93958
closedinstall Typo3 v11 on local DDEV - Admin page does not exist
0%
Description
Good evening,
I made a clean installation, without any particular extension of typo3 v11 in an instance of DDEV on my local computer, I attach the entire process reported in the terminal window during which no errors are reported.
At the end of the process I arequest for a page to be created and to be taken to the backend.
After entering the login credentials I get:
Page Not Found
The page did not exist or was inaccessible. Reason: The requested page does not exist
Files
Updated by Jochen Roth over 3 years ago
Hey just tried it using ddev. Backend works as expected.
But frontend returns the mentioned message, which is normal.
Steps ...
composer create "typo3/cms-base-distribution:^11" // Install it prior installing configuring DDEV, which allows ddev to detect TYPOP3 cd cms-base-distribution ddev config ddev start touch public/FIRST_INSTALL
Sample config.yml
name: cms-base-distribution type: typo3 docroot: public php_version: "7.4" webserver_type: nginx-fpm router_http_port: "80" router_https_port: "443" xdebug_enabled: false additional_hostnames: [] additional_fqdns: [] mariadb_version: "10.2" mysql_version: "" provider: default use_dns_when_possible: true composer_version: ""
Hope this helps
Updated by Simon Gilli over 3 years ago
Michele, please keep your DDEV always up to date. Looks like you are using an old version which does not support the new BE routing, this was introduced with DDEV 1.16.5. Follow the instructions at https://github.com/drud/ddev/releases/latest to update your DDEV Local installation.
Jochen, please do not use composer outside of the container, always use `ddev composer ...` instead of a plain composer on the host. Also have a look at the docs to setup your TYPO3 correctly with DDEV Local see https://ddev.readthedocs.io/en/stable/users/cli-usage/#typo3-quickstart and https://get.typo3.org/version/11.
Updated by Georg Ringer over 3 years ago
- Status changed from New to Closed
closing as no feedback and works out of the box here with latest versions