You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When viewing register items through the content view, the link presented in the column Status for each item is constructed falsely. It should probably follow @web.application_root_url@. Currently it is built using the local listen interface of the tomcat instance (e.g. http://127.0.0.1:8080//status/valid) and contains a duplicate slash.
The text was updated successfully, but these errors were encountered:
The URL for the status column is based on the baseuri attribute of the reg_statusgroup table. If you encounter a duplicate slash in the URL, it may be because the baseuri attribute in reg_statusgroup is empty. Here is an example from our local instance to help you make a modification in the mentioned table.
In our case, we have the following information in the reg_statusgroup table:
no, unfortunately updating the mentioned field in the database did not change the URL in frontend. (I issued: UPDATE reg_statusgroup SET baseuri = '{CORRECTURI}';
Also having multiple random places like different configuration variables, static variables in the code and database fields that are not documented and all should point to the same URL is in no way feasible. See also the other tickets: #367 and #438
Please update the software so that it generates URLs in a congruent manner, eg. fed from a single configuration variable.
When viewing register items through the content view, the link presented in the column Status for each item is constructed falsely. It should probably follow @web.application_root_url@. Currently it is built using the local listen interface of the tomcat instance (e.g.
http://127.0.0.1:8080//status/valid
) and contains a duplicate slash.The text was updated successfully, but these errors were encountered: