alexthemars
Forum Replies Created
-
@kimabaghdasaryan
Thanks for the feedback. The answer is Yes
I recorded a short video of how I embed it.
https://www.youtube.com/watch?v=-v7yRT-llFc,
I am running WordPress with public docker images:
1) docker.io/bitnami/mysql:8.0
2) docker.io/bitnami/wordpress:6.3.1
my docker-compose yml file:version: '2' services: mysql: image: docker.io/bitnami/mysql:8.0 restart: unless-stopped volumes: - ./mysql_data:/bitnami/mysql environment: - MYSQL_USER=mysqluser - MYSQL_PASSWORD=mysqlpassword - MYSQL_DATABASE=wordpress - MYSQL_ROOT_PASSWORD=root wordpress: image: docker.io/bitnami/wordpress:6.3.1 restart: unless-stopped ports: - '80:8080' - '444:8443' volumes: - ./wordpress_data:/bitnami/wordpress depends_on: - mysql environment: - WORDPRESS_DATABASE_HOST=mysql - WORDPRESS_DATABASE_PORT_NUMBER=3306 - WORDPRESS_DATABASE_NAME=wordpress - WORDPRESS_DATABASE_USER=mysqluser - WORDPRESS_DATABASE_PASSWORD=mysqlpassword - WORDPRESS_USERNAME=wordpressuser - WORDPRESS_PASSWORD=wordpresspassword volumes: mysql_data: driver: local wordpress_data: driver: local@kimabaghdasaryan
Hi, Kima,
I am using the latest version 1.8.18, but I suspect it is not related to plugin conflicts:
1) I tried to install the lastest photo gallery on a fresh wordpress 6.3.1 without other plugins, same issue.
2) I tried another laptop, same issue.
Could it be related to I am running wordpress server locally on WSL2 on my laptop?@kimabaghdasaryan
Hi, Kima,
I tried many YouTube URLs (e.g. https://www.youtube.com/watch?v=pA8-5qaMBqM), and I also tried Vimeo URLs, but none have worked.
If it helps, my active plugins are :CartFlows Checkout Plugins - Stripe for WooCommerce Creative Mail by Newfold Digital Elementor Elementor Header & Footer Builder Google Listings and Ads Jetpack Mailchimp for WooCommerce MailPoet Photo Gallery Pinterest for WooCommerce Starter Templates TikTok Variation Swatches for WooCommerce WooCommerce WooCommerce PayPal Payments wordpress version: 6.3.1 mysql 8.0- This reply was modified 2 years, 9 months ago by alexthemars.