Jonas Eberle
Jonas Eberle
The thing is that ddev would need that "try the same port, then if not available ask the user what to do (give the user the opportunity to free up...
... and the PhpStorm config is in `.idea/dataSources.xml` and looks like this: ``` mariadb true org.mariadb.jdbc.Driver jdbc:mariadb://localhost:33085/db ... ``` A (custom) `ddev` command could do nice things here ;)
I've just come across `project_info..used_host_ports: ["19385"]` in the global ddev config `~/.ddev/global_config.yaml` if I've set a `host_db_port: 19385` in my project config (has been added in https://github.com/drud/ddev/pull/1502). I am coming...
I can't confirm. I have ``` MariaDB [db]> SELECT @@character_set_database, @@collation_database; +--------------------------+----------------------+ | @@character_set_database | @@collation_database | +--------------------------+----------------------+ | utf8mb4 | utf8mb4_general_ci | +--------------------------+----------------------+ ``` on `v1.19.1-1-gb28856aa` (so basically a...
I tested with ``` database: type: mariadb version: "10.5" ``` and that is correctly `utf8mb4` / `utf8mb4_general_ci` I see mariadb 10.3 (our default) and 10.4 affected. I haven't tested others.
You can switch off `AdditionalConfiguration.php` generation with `disable_settings_management: true`. I think most modern projects have a from-environment-or-.env loader anyways so setting the variables there is trivial. Today I learnt that...
Does `ddev stop` help, too?
For my use case (show a special 404-page for hidden records) I've since solved it with an extended `PersistedAliasMapper`. It goes a bit like this if anybody is interested: ```php...
Installing headless browsers into the `web` container is not for me. I also don't use Puppeteer but selenium hub with chrome and firefox.
@abubakarlixup what is the issue here?