I have a small (big) problem concerning CSV import. I can no longer “add a mapping” to align CSV columns with a Dublin Core or Bibliographic Ontology property. Let me explain: when I click on the + icon, the “add a mapping” menu does open as usual, but the property filtering no longer works (which is already annoying but I could have managed without it if necessary), but more importantly, the various Dublin Core, Bibliographic Ontology, or Curation properties no longer open/expand at all. I therefore absolutely cannot add any mapping for alignment, and thus, no more CSV import.
Has anyone already encountered this issue? Any ideas?
I don’t think I’ve heard anyone mention having the same problem.
This sounds like maybe some Javascript error happening that’s stopping later code from working. Is there anything in your browser’s JS console when this problem happens?
These parts are definitely relevant. It looks like there might be some configuration on your server that prevents the “vendor” files for JS libraries from loading… they give a 403 Forbidden error.
A first guess as to what to look for would be the permissions of the “application/asset/vendor” folder and its subfolders… maybe they are missing a “read” or “execute” permission? Otherwise this could be something like an explicit rule in your web server config that forbids access to those files. I don’t think the files are just missing outright but obviously that would be a problem too.
The scripts of the jQuery plugins Tablesaw and Chosen can not be loaded, causing the main script to stop. Can you check if the files are still present in the /application/asset/vendor/ directory? If yes, you could get more information about the error using the dev tools of your browser.
[edit] I see that @ jflatnes has already answered while I was writing