XF 2.2 Which table in the database contains the board URL?

Adam Bloch

Member
Just been liking for the site URL in the database. I thought it was in the xf_option table can't seem to find it there.
 
If it's set correctly in the ACP then it will be correct in the DB.

There's an add-on to change post content but for 'simple' changes you can run a direct query.

SQL:
UPDATE xf_post SET message = REPLACE(message, 'http://www.example', 'https://example');

Take a backup first.
 
Top Bottom