Closed paulnagle closed 2 years ago
PS. I was using the following docker-compose.yaml file to test
version: "3.9"
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: somewordpress
MYSQL_DATABASE: wordpress
MYSQL_USER: wordpress
MYSQL_PASSWORD: wordpress
wordpress:
depends_on:
- db
image: wordpress:latest
volumes:
- wordpress_data:/var/www/html
- ../wordpress-bmlt-workflow/:/var/www/html/wp-content/plugins/wordpress-bmlt-workflow:ro
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db
WORDPRESS_DB_USER: wordpress
WORDPRESS_DB_PASSWORD: wordpress
WORDPRESS_DB_NAME: wordpress
volumes:
db_data: {}
wordpress_data: {}
and just running docker-compose up -d
from the git repo folder to start the wp instance .
To clear the cache, and start from scratch run
docker-compose down; docker volume rm wordpress-bmlt-workflow_db_data ; docker volume rm wordpress-bmlt-workflow_wordpress_data
fixed in 0.4.2
thanks for the debug output - this is a super helpful report :)
Hello! I set up a new instance of wordpress with this plugin. I filled in all of the "Configuration" details and Clicked on "Save Changes"
I see the following errors (I have WP_DEBUG enabled
When I go back to the "Configuration" page, I see that none of my changes have stuck, templates for emails are blank etc.
I can see that the "BMLT Configuration" does seem to get saved, and the "Service Bodies" section does retain it's settings.