Graham "EXCEPTION caught [export_list]: $uri is null and EasyRdf\Graph object has no URI either.",
"Warning. Request done with some errors: 1"
Okay, I understand. The issue lies in the RDF process. Some resources lack an URI or have an invalid URI, making it impossible to create the graph.
In RDF is mandatory that every resource has its own URI. If your data doesn't define a nomisma URI for each resource, the process will fail. And it stop all diffusion process. Nothing is wrong for the MariaDB process, but the RDF creation stop all and nothing is saved into the SQL.
DEDALO_ENTITY_ID provides a safe way to solve it, because it defines a common base uri for all your data.
Okay, here's a question: would you like your Dédalo to create the RDF graph?
Since I suppose you'd like that, we've opened the DEDALO_ENTITY_ID for you as a provisional config. It currently has a fake URI that can be replaced with the "correct" one once you have your nomisma ID and final URI.
Your DEDALO_ENTITY_ID is 16
Add it into your configuration, locate it into /dedalo/config/config.php
define('DEDALO_ENTITY_ID', 16);
And update your ontology to obtain the configuration, of your DEDALO_ENTITY_ID
https://dedalo.dev/docs/management/updates/updating_ontology/
I hope that it resolves the RDF situation... 😉
Best