Hi @albert_b
That seems a specific MySQL error.
The Dédalo code is trying to insert a record into the database and the execution fails:
INSERT INTO $database_name
.$table_name
(".implode(',', $ar_field_name).") VALUES (".implode(',', $ar_field_value).");
You must to ensure that the current MySQL user has the privileges to access and create tables into the web_masle
database.
For check it easily, you can install a database manager like Admin neo, phpMyAdmin, etc. and enter with the current Dédalo diffusion user to check if the user can access and create tables in the web_masle
database.
If not, see the documentation in MYSQL privileges.
Remember that the MySQL/MariaDB config is from file:
/dedalo/config/config_db.php
The username and password are the same for every publication database that you use for publishing.
More info about in diffusion Diffusion documentation.
I hope this helps
Let me know how you got rid of this.
Best