Navigation Menu

Skip to content

Cleanup

sibomots edited this page Feb 19, 2022 · 1 revision

Bolter and Chainsword

Notes on Cleanup after the Upgrade

  1. The Dispatcher.php file is broken and is patched (see patch)
  2. The site_map configuration is broken after the upgrade.
update ibf_core_sys_conf_settings set conf_value = 'http://example.com/sitemap.php'  where conf_key = 'sitemap_url'
  1. Get rid of the old original tables after successful upgrade:
SELECT CONCAT( 'DROP TABLE ', GROUP_CONCAT(table_name) , ';' ) 
AS statement FROM information_schema.tables
WHERE table_schema = 'database_name' AND table_name LIKE 'prefix_%';

Then use the output of that query to perform the drops.