DevKinsta does not open, stuck on "Updating site WordPress configurations..."

Q: Date/Time this occurred (Provide your time zone also)
A: 2025-11-05 - 7pm CEST

Q: DevKinsta Version
A: Version 2.13.5 (2.13.5.9020)

Q: OS Version
A: MacOS Sequoia 15.6.1.

Q: Docker Desktop Version
A: 4.49.0

Q: Were any error codes or messages observed? If so, what were they?
A: No Errors

Detailed Description of the Problem

I cannot open DevKinsta anymore. It is stuck on the “Updating site WordPress configurations…” step.

I did the following:

  1. Remove DevKinsta from the Applications folder, download it again and reinstall it
  2. Re-Install and update Docker
  3. Remove my user from the config.json
  4. Remove all devkinsta_ Docker containers

Nothing helped.

The logs always get stuck on the following message:

[2025-11-05 20:03:56.765] [info]  [restartNginx] Restarting nginx service
[2025-11-05 20:03:56.787] [info]  [watchDocker] Container: devkinsta_nginx, status: exec_create: nginx -s reload
[2025-11-05 20:03:56.789] [info]  [watchDocker] Container: devkinsta_nginx, status: exec_start: nginx -s reload
[2025-11-05 20:03:56.848] [info]  [watchDocker] Container: devkinsta_nginx, status: exec_die
[2025-11-05 20:03:56.908] [info]  [dockerUtil/getContainer] Get 'devkinsta_fpm' Docker container
[2025-11-05 20:03:56.908] [info]  [updateServiceStorage] Update Fpm service storage. ContainerId: devkinsta_fpm
[2025-11-05 20:03:56.908] [info]  [getDevKinstaPath] get DevKinsta path
[2025-11-05 20:03:56.908] [info]  [isWslMode] check if docker runs on wsl mode
[2025-11-05 20:03:56.915] [info]  [dockerUtil/getContainer] Get 'devkinsta_nginx' Docker container
[2025-11-05 20:03:56.915] [info]  [updateServiceStorage] Update Nginx service storage. ContainerId: devkinsta_nginx
[2025-11-05 20:03:56.915] [info]  [getDevKinstaPath] get DevKinsta path
[2025-11-05 20:03:56.915] [info]  [isWslMode] check if docker runs on wsl mode
[2025-11-05 20:03:56.922] [info]  [dockerUtil/getContainer] Get 'devkinsta_db' Docker container
[2025-11-05 20:03:56.922] [info]  [updateServiceStorage] Update MariaDb service storage. ContainerId: devkinsta_db
[2025-11-05 20:03:56.922] [info]  [dockerUtil/getContainer] Get 'devkinsta_mailhog' Docker container
[2025-11-05 20:03:56.922] [info]  [updateServiceStorage] Update Mailhog service storage. ContainerId: devkinsta_mailhog
[2025-11-05 20:03:56.950] [info]  [setConfig] Set WordPress config on 'devkinsta_fpm' container
[2025-11-05 20:03:56.950] [info]  [dockerUtil/getContainer] Get 'devkinsta_fpm' Docker container

Hi @arnespremberg

Can you try deleting all the Kinsta Containers and Images inside Docker Desktop, then relaunch DevKinsta afterward?

If the issue persists and you are willing to lose all existing local sites on the app, you can delete the Volumes in Docker Desktop and remove these two folders below and relaunch DevKinsta after. Doing this ideally should start the app as a fresh install.

/User/Library/Application Support/DevKinsta (application config)
/User/DevKinsta (site files)

If the issue continues after this point, please check if any DevKinsta containers are failing to run after you launch the application. Additionally, please send me the raw main.log file of the app via direct message so we can take a closer look at what is causing the app to get stuck during initialization.

Cheers!

Hey @Adrian_L, any updates on this? I am having the same issue on a Mac, but I do seem to have an error in the main log:

[error] SyntaxError: Unexpected non-whitespace character after JSON at position 1638
at JSON.parse ()
at docker_handleDockerEventData (/Applications/DevKinsta.app/Contents/Resources/app.asar/main.prod.js:2:181536)
at IncomingMessage. (/Applications/DevKinsta.app/Contents/Resources/app.asar/main.prod.js:2:519116)
at IncomingMessage.emit (node:events:513:28)
at IncomingMessage.emit (node:domain:489:12)
at addChunk (node:internal/streams/readable:324:12)
at readableAddChunk (node:internal/streams/readable:297:9)
at IncomingMessage.push (node:internal/streams/readable:234:10)
at HTTPParser.parserOnBody (node:_http_common:131:24)
at Socket.socketOnData (node:_http_client:542:22)

Devkinsta version: 2.13.6 (2.13.6.9096)
DockerDesktop: 4.67.0 (222858) I have tried reverting to older versions as well
OS Version: 26.3.1 (25D2128)

This issue is intermittent and sometimes DevKinsta will load okay, but this issue keeps coming back. Deleting the containers and images does nothing. I have reset the site completely by removing volumes a few times in the past, and it works for a little while, and then this issue comes back again. It takes a significant amount of time to delete the volumes and pull everything.

Hi @B_W

I am sorry to hear that you are having such issues. To help us take a closer look, can you please provide the latest raw main.log file from Devkinsta? The log file is usually stored at:

/Users/<yourusername>/Library/Logs/DevKinsta/main.log

I have sent the full log file directly to you. Thank you for taking a look.

Hi @B_W
Thank you for sharing the main.log file. After reviewing it, I did not find any significant error entries that could explain why DevKinsta is intermittently failing to load, unfortunately. It’s possible that the specific error from the last time the app failed has already been overwritten by a newer version of the main.log file. When you encounter the issue again, please reshare the main.log file with us for further review. Additionally, when you encounter the problem, kindly check the Docker Desktop app for any warnings.


I can send another log now; once the issue happens once, then it happens on every startup. There are no warnings in Docker Desktop when the issue occurs. The error that is always consistent in the log is the SyntaxError: Unexpected non-whitespace character after JSON, and I also see [error] Chunk value. That also seems to be the same error that the last user on this thread was experiencing, based on the other thread that he linked to.

If you look at the new logs I will send now, specifically the Chunk value output, you can see that Docker is returning two concatenated JSON objects in a single stream chunk:

[error] Chunk value: {"Type":"container","Action":"exec_create...}{"Type":"container","Action":"exec_create...}

Because they are concatenated as }{ without a newline or array wrapper, the JSON.parse() method at docker_handleDockerEventData (/main.prod.js:2:181536) seems to throw a SyntaxError: Unexpected non-whitespace character after JSON. Could this be causing my issue?

@B_W

I tested this on an identical machine with the ff specs and I was also getting [error] Chunk value: {"Type":"container","Action":"exec_create...} but DevKinsta is still able to initialize successfully. So I don’t think that is the specific error that is causing Devkinsta from failing to load.

Mac Mini
Devkinsta version: 2.13.6
DockerDesktop: 4.67.0
OS Version: 26.3.1

I noticed that the Nginx and FPM containers failed to load based on your main.log. Could you please check the status of the DevKinsta containers in Docker Desktop after you attempt to launch DevKinsta? Let me know if they are running or stopped. If they are not running, please try to start them manually. If that fails, check the logs of each container for clues regarding why they are unable to start.

Example:


All containers are running properly without any errors. The reason that is in the log is that I was testing manually restarting and stopping containers, etc., to see if I could get Dev Kinsta to continue to load.

Hi,

Thank you for your response.
I have a question though.

Can you please double check wp-config.php and confirm that DOMAIN_CURRENT_SITE isn’t set to undefined or wrong domain?

Could you please try the following as well:

  • Close DevKinsta completely and make sure it is fully shut down
  • Open Docker and delete only the containers that start with devkinsta_
    Please do not delete the volumes, and do not remove any other containers that are not related to DevKinsta
  • Start DevKinsta again so it can recreate the containers

We will wait for your update.