Questions tagged [ddev]

open source tool for setting up a local PHP development environment.

ddev is an open source tool for setting up a local PHP development environment, explicitly supporting Drupal, TYPO3, WordPress and Backdrop.

394 questions
2
votes
1 answer

Why should I use DDEV only for local development?

As mentioned in the documentation of TYPO3, "DDEV is used for local development only" when installing TYPO3 with DDEV. TYPO3 Docs - Installation ddev There is not really an explanation, why I should not run DDEV and TYPO3 on a production server. So…
Paul
  • 33
  • 4
2
votes
1 answer

DDEV: How to etablish websocket connections

I'm having some problems to establish a websocket connection to a running ddev container. Trying wo etablish the connection per JS for example with wss://websocket.ddev.site:3000 ends always up with connection failed. Websocket PHP library used:…
Marlinek
  • 61
  • 4
2
votes
1 answer

Unknown Drush version on acquia-cli using ddev 1.21.3

The ddev pull command fails when configured to pull from Acquia environments. Only the current version of ddev 1.21.3 is affected. Older versions like 1.21.1 or 1.19.5 are not affected.s The error message: ❯ ddev pull acquia --skip-files You're…
JamesWilson
  • 3,833
  • 2
  • 30
  • 40
2
votes
2 answers

DDEV: Redirect http to https using nginx-fpm and on various domains

I'm moving some small websites in production to DDEV and, some of them has multiple domains with a 301 redirection to the main HTTPS site. This config was working well with the "natural" Nginx when I was using a .conf file to manage the domains that…
2
votes
1 answer

Renaming a ddev project

We are a group of developers that work on multiple ddev projects. Some of these projects have a "." in their name, which by now breaks the PhpStorm integration. Is there an easy way to rename a project and allow all other developers to tell ddev…
Tim Schreiner
  • 513
  • 4
  • 14
2
votes
2 answers

Driver info: driver.version: unknown error running Selenium and Codeception in DDEV (Mac M1)

I was using VirtualBox for development when i had a windows pc. Later i bought a Macbook M1 and installed the DDEV instead of VirtualBox. In my old development virtualbox, i installed selenium and chromedriver in Virtualbox. With this setup i could…
2
votes
0 answers

How to create settings.json and extensions.json outside of image and named config level for an ATTACHED VSCode Container

I'm using WSL 2 for Windows, and I'm currently working on a ddev repo where I am creating a development environment using ddev and VSCode. On initiation of the ddev environment, I am starting up all my containers. With my custom "ddev code" command,…
2
votes
1 answer

How do I install and configure Docker on Ubuntu-like systems (Kubuntu)

i tried using ddev with Linux Kubuntu and did as proceeded as described here: https://t3terminal.com/typo3-tutorials/install-typo3-docker-ddev/ means: // Install DDEV curl -L https://raw.githubusercontent.com/drud/ddev/master/scripts/install_ddev.sh…
SL5net
  • 2,282
  • 4
  • 28
  • 44
2
votes
3 answers

DDEV multisite setup with Acquia pull

I've just gotten DDEV setup and I have multisite working by manually running ddev import-db --target-db=[db-name]. It's working just fine but I would like to figure out how to get database pulls from Acquia to work where I can specify the site to…
2
votes
1 answer

How can I temporarily change the time in my ddev web container

I’m trying to debug something that happens a few days after another event, and would like to speed up the test without circumventing the date delay related code. Is there anyway to change the date in the ddev containers temporarily?
UltraBob
  • 220
  • 3
  • 12
2
votes
1 answer

Redirect HTTP -> HTTPS in DDEV using Apache

I need help to understand how to do HTTP redirects to HTTPS when using apache-fpm in DDEV. T3 site config.yaml base: 'https://sample-project.ddev.site/' ddev config.yaml name: sample-project webserver_type: apache-fpm router_http_port:…
skyfreak42
  • 55
  • 1
  • 8
2
votes
1 answer

Run php on .html pages with .htaccess

Wanting to use DDEV for local development, and I have a site with legacy content needing to run php on pages with .html extension. With other testing environments I have used different lines in .htaccess to enable this. With my ddev test environment…
amos
  • 23
  • 4
2
votes
1 answer

ddev on ZFS: Service 'db' failed to build : failed to copy files: copy file range failed: invalid argument

Service 'db' failed to build : failed to copy files: copy file range failed: invalid argument Happens with any new project after This error happens when launching any of my ddev projects or when creating a new one with ddev config. Update: This…
gbyte
  • 225
  • 2
  • 7
2
votes
1 answer

ddev: Call the endpoint of a certain port of the web container from another container

I set up a Shopware 6 project with ddev. Now I want to write cypress tests for one of my plugins. The shopware testsuite starts a node express server on port 8005 in the web container. I have configured the port for ddev so that I can open the…
Nono
  • 1,073
  • 4
  • 23
  • 46
2
votes
1 answer

Internet connection not detected

Every time I start ddev on my Mac, I get a message: Internet connection not detected. There does not appear to be an operational issue, and I can reach the internet from the web container. I could not find any reference to this message in the ddev…