As a follow up, it seems to me, as if the fieldname now is “licenseUrl” instead of “licenseURL”. Manually changing this in the Database brings the Information back in the article view. Maybe there is way to solve this, without modifying the database manually?
Hi @thf, thanks for this. Yeah that does seem to be the issue, although our db was also missing the license urls, so I had to also update that as well. To fix the setting name I just issued the command
START TRANSACTION;
UPDATE publication_settings SET setting_name = 'licenseUrl' WHERE setting_name = 'licenseURL';
#check to make sure everything looks right
COMMIT;
I’d test it out on a copy of the database or in a dev environment first. I’m not sure what the non-db version would look like but this was pretty painless.
We had the same problem, but when upgrading from OMP 3.1.2 to 3.3.0.8. The licenseUrl/URL fix above solved it, but a bit unexpected that it happened again.