MODxのデータベース関係

バックアップの時に表示されるデータベースのテーブルの様子は 次のようである。
また、マウスカーソルを当てて表示される追加的説明も、殆ど名前の通りの内容であるから情報は増えない。

DROP文を生成
テーブル名 件数 データサイズ オーバーヘッド 有効サイズ インデックス 合計サイズ
modx_active_users 2 132 B 20 B 92 B 2 KB 2.13 KB
modx_categories 8 224 B – 224 B 2 KB 2.22 KB
modx_document_groups 4 52 B – 52 B 4 KB 4.05 KB
modx_documentgroup_names 2 52 B – 52 B 9 KB 9.05 KB
modx_event_log 3 588 B – 588 B 3 KB 3.57 KB
modx_jot_content 0 – – – 1 KB 1 KB
modx_jot_fields 0 – – – 1 KB 1 KB
modx_jot_subscriptions 0 – – – 1 KB 1 KB
modx_keyword_xref 0 – – – 1 KB 1 KB
modx_manager_log 5827 360.07 KB – 360.07 KB 60 KB 420.07 KB
modx_manager_users 2 100 B – 100 B 5 KB 5.1 KB
modx_member_groups 1 13 B – 13 B 2 KB 2.01 KB
modx_membergroup_access 0 – – – 1 KB 1 KB
modx_membergroup_names 2 40 B – 40 B 9 KB 9.04 KB
modx_site_content 106 716.04 KB 6.91 KB 702.21 KB 238 KB 954.04 KB
modx_site_content_metatags 0 – – – 1 KB 1 KB
modx_site_htmlsnippets 155 86.14 KB 80 B 85.99 KB 5 KB 91.14 KB
modx_site_keywords 0 – – – 1 KB 1 KB
modx_site_metatags 0 – – – 1 KB 1 KB
modx_site_module_access 0 – – – 1 KB 1 KB
modx_site_module_depobj 1 17 B – 17 B 2 KB 2.02 KB
modx_site_modules 2 4.73 KB – 4.73 KB 2 KB 6.73 KB
modx_site_plugin_events 37 481 B – 481 B 1 KB 1.47 KB
modx_site_plugins 20 88.68 KB – 88.68 KB 2 KB 90.68 KB
modx_site_snippets 16 139.93 KB – 139.93 KB 2 KB 141.93 KB
modx_site_templates 16 8.43 KB – 8.43 KB 2 KB 10.43 KB
modx_site_tmplvar_access 0 – – – 1 KB 1 KB
modx_site_tmplvar_contentvalues 0 – – – 1 KB 1 KB
modx_site_tmplvar_templates 0 – – – 1 KB 1 KB
modx_site_tmplvars 0 – – – 1 KB 1 KB
modx_system_eventnames 106 3.73 KB – 3.73 KB 4 KB 7.73 KB
modx_system_settings 100 6.36 KB – 6.36 KB 5 KB 11.36 KB
modx_user_attributes 2 220 B – 220 B 3 KB 3.21 KB
modx_user_messages 2 1.3 KB – 1.3 KB 2 KB 3.3 KB
modx_user_roles 2 448 B – 448 B 2 KB 2.44 KB
modx_user_settings 2 80 B – 80 B 3 KB 3.08 KB
modx_web_groups 1 13 B – 13 B 2 KB 2.01 KB
modx_web_user_attributes 1 88 B – 88 B 3 KB 3.09 KB
modx_web_user_settings 0 – – – 1 KB 1 KB
modx_web_users 1 52 B – 52 B 5 KB 5.05 KB
modx_webgroup_access 1 13 B – 13 B 2 KB 2.01 KB
modx_webgroup_names 3 64 B – 64 B 9 KB 9.06 KB
総計: 7.01 KB
(7,180 B) 1.77 MB
(1,858,581 B)

注:オーバーヘッドとは、確保されているが使われていない領域のことです。オーバーヘッドの数字をクリックすると、この領域を開放します

さて、バックアップで落としてきたsql文のデータを、メモ帳で開いて(NoEditorは一行が長すぎると文句を言って、動いてくれない)、/home が含まれる部分、つまり、/virtual/119.245.188.122/home/ というサイト固有情報が含まれる部分を検索してみたところ、次のテーブルがあるようだ。
modx_event_log
modx_manager_log(違ってるかも、確認するには長すぎたので)
modx_system_settings

これらの中で多分、データベースの別サイトへの引越しで問題となるのがmodx_system_settingsであろうと思われる、該当部分と思われるsql文を以下に示すと
INSERT INTO `modx_system_settings` VALUES (‘filemanager_path’,’/virtual/119.245.203.81/home/’);
INSERT INTO `modx_system_settings` VALUES (‘rb_base_dir’,’/virtual/119.245.203.81/home/assets/’);
以上二つだけ。何だかもう少し多かったと思ったのだけれど。
つまり、modx_system_settings のチェックを外してバックアップすればOKと、考えられる。
しかし、modx_event_log
modx_manager_log は何かに使っていると、厄介でしょう。