Hi,
as promised, here is a follow-up on the 404 errors we had on the links
of the administration panel.
The reason for that problem is that I wrote a simple script to install
Invenio and this script had this line:
"./configure --prefix=/proj.adsate/invenio/"
Notice that I included a trailing slash. No big deal? Yes, big deal
because CFG_WEBDIR was then '/proj.adsate/invenio//var/www'. This caused
the check on line 412 in webinterface_handler_wsgi.py to fail and return
that the module was not found.
In order to prevent this happening in the future I would suggest
removing the trailing slash character in the prefix variable in
configure.ac by adding the line "prefix=${prefix%/}".
Best regards,
Benoit.