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
The problem is that the URL:s should be the same as now in the production environment. So the urls used in database should be changed from dev.luettelopalvelu.fi to www.luettelopalvelu.fi.
Is it possible to change the used urls? Or should the whole application be installed again with the new url?
A direct change in the database is something we do not recommend, since due to the complexity of the database, we cannot know if it is something that can work 100%.
Even so, you could do some tests with this sentence that we suggest and apply it in the tables that contain the URI base to see if the results are as expected.
UPDATE reg_itemclass
SET baseuri = CONCAT('www.', SUBSTRING(baseuri FROM 4))
WHERE baseuri LIKE 'dev.%';
So the question is where is it need to make changes if the name of the server is changing??
Our re3gistry server is now dev.luettelopalvelu.fi. And it will be changed to www.luettelopalvelu.fi
And data will be still in database with the old name of the server, Only the server name will be changing
The text was updated successfully, but these errors were encountered: