Hi!
Seems that you have the old tld qpd
that is not compatible with the 6.5.0. You can fix it In this way:
First, check if you have this old tld in PostgreSQL:
SELECT *
FROM "jer_dd"
WHERE "tld" = 'qdp'
LIMIT 50
I know that the answer will be yes... because the error show that qdp280
needs the order component, but check at any case.
Check if you have any record with qdp
ontology.
SELECT *
FROM "matrix"
WHERE "section_tipo" LIKE '%qpd%'
If not you can remove it safely with:
DELETE FROM "jer_dd"
WHERE "tld" = 'qdp'
;
if you have this tld qdp
in the defintion of DEDALO_PREFIX_TIPOS in config.php remove it, previously to continue.
And try to update it again.
Note: qdp
tld was removed in the 6.3.1 update moving all data to new tch
.
Best