オープンソースの販売サイト構築ソフト EC-CUBE についてのメモ。

2.11.1 から 2.11.2

SQL

  • /html/install/ 配下の全ファイルの差異を確認した。
  • MySQL 5.0.77 にてダンプ比較。差異無きことを確認。(クリーン環境) (2011/11/08 時点コードにて)
-- 運用状況によってはキー重複の回避が必要 (SQL決め打ちも可能と思われる。IDで特定値以上を加算する。)
INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 5, '【ヘッダー】ログイン', 'login_header.tpl', 'login_header', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login_header.php', 0);
INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 6, '【ヘッダー】ナビ', 'navi_header.tpl', 'navi_header', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/navi_header.php', 0);
INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 7, '【フッター】ログイン', 'login_footer.tpl', 'login_footer', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/login_footer.php', 0);
INSERT INTO dtb_bloc (device_type_id, bloc_id, bloc_name, tpl_path, filename, create_date, update_date, php_path, deletable_flg) VALUES (2, 8, '【フッター】ナビ', 'navi_footer.tpl', 'navi_footer', CURRENT_TIMESTAMP, CURRENT_TIMESTAMP, 'frontparts/bloc/navi_footer.php', 0);
 
-- 新着情報一番下へ
-- 副問い合わせ「sub_dtb_blocposition」は MySQL #1093 対策
-- 1件
UPDATE dtb_blocposition
SET bloc_row = (
    SELECT MAX(bloc_row)
    FROM (SELECT * FROM dtb_blocposition) AS sub_dtb_blocposition
    WHERE (device_type_id, page_id, target_id) = (2, 1, 4)
)
WHERE (device_type_id, page_id, target_id, bloc_id) = (2, 1, 4, 1);
 
-- 新着情報以外を1つ上へ(移動不要時の対策済み)
-- 副問い合わせ「sub_dtb_blocposition」は MySQL #1093 対策
-- EC-CUBE 2.11.1 クリーンインストール状態だと3件。実際は運用状況により異なる。
UPDATE dtb_blocposition
SET bloc_row = bloc_row - 1
WHERE 0=0
    -- bloc_row 重複の検証
    AND EXISTS(
        SELECT *
        FROM (SELECT * FROM dtb_blocposition) AS sub_dtb_blocposition
        WHERE 0=0
            AND bloc_row = (
                SELECT bloc_row
                FROM (SELECT * FROM dtb_blocposition) AS sub_dtb_blocposition
                WHERE (device_type_id, page_id, target_id, bloc_id) = (2, 1, 4, 1)
            )
            AND (device_type_id, page_id, target_id) = (2, 1, 4)
            AND (device_type_id, page_id, target_id, bloc_id) <> (2, 1, 4, 1)
    )
    -- 実際の更新対象は重複していない部分も含める。(ただし、新着情報は除外)
    AND (device_type_id, page_id, target_id) = (2, 1, 4)
    AND (device_type_id, page_id, target_id, bloc_id) <> (2, 1, 4, 1)
;
-- 運用状況によってはキー重複の回避が必要 (SQL決め打ちも可能と思われる。IDで特定値以上を加算する。)
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 1, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 1, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 1, 10, 5, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 2, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 2, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 2, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 3, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 3, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 3, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 4, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 4, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 4, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 5, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 5, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 5, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 6, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 6, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 6, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 7, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 7, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 7, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 8, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 8, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 8, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 9, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 9, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 9, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 10, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 10, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 10, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 11, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 11, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 11, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 12, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 12, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 12, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 13, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 13, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 13, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 14, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 14, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 14, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 15, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 15, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 15, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 16, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 16, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 16, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 17, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 17, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 17, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 18, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 18, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 18, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 19, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 19, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 19, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 20, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 20, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 20, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 21, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 21, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 21, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 22, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 22, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 22, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 23, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 23, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 23, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 24, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 24, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 24, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 25, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 25, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 25, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 26, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 26, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 26, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 27, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 27, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 27, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 28, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 28, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 28, 10, 6, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 29, 6, 7, 2, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 29, 6, 8, 1, 0);
INSERT INTO dtb_blocposition (device_type_id, page_id, target_id, bloc_id, bloc_row, anywhere) VALUES (2, 29, 10, 6, 1, 0);
 
UPDATE dtb_csv
SET disp_name = 'お名前(姓)'
WHERE disp_name = '顧客名(姓)'
;
UPDATE dtb_csv
SET disp_name = 'お名前(名)'
WHERE disp_name = '顧客名(名)'
;
UPDATE dtb_csv
SET disp_name = 'お名前(フリガナ・姓)'
WHERE disp_name = '顧客名(フリガナ・姓)'
;
UPDATE dtb_csv
SET disp_name = 'お名前(フリガナ名)'
WHERE disp_name = '顧客名(フリガナ名)'
;
UPDATE dtb_csv
SET disp_name = '住所2'
WHERE (no, csv_id, col) = (121, 3, 'order_addr02')
;
 
-- 3件 (クリーン状態の場合)
UPDATE dtb_kiyaku SET kiyaku_text = REPLACE(kiyaku_text, 'コンピュータ', 'コンピューター');
-- 0件 (クリーン状態の場合)
UPDATE dtb_kiyaku SET kiyaku_text = REPLACE(kiyaku_text, 'コンピューターー', 'コンピューター');
 
-- 2件 (クリーン状態の場合)
UPDATE dtb_kiyaku SET kiyaku_text = REPLACE(kiyaku_text, 'サーバ', 'サーバー');
-- 0件 (クリーン状態の場合)
UPDATE dtb_kiyaku SET kiyaku_text = REPLACE(kiyaku_text, 'サーバーー', 'サーバー');
 
-- 2件 (クリーン状態の場合)
UPDATE mtb_job SET name = REPLACE(name, 'コンピュータ', 'コンピューター');
-- 0件 (クリーン状態の場合)
UPDATE mtb_job SET name = REPLACE(name, 'コンピューターー', 'コンピューター');
 
INSERT INTO dtb_pagelayout (device_type_id, page_id, page_name, url, filename, header_chk, footer_chk, edit_flg, author, description, keyword, update_url, create_date, update_date) VALUES (2, 29, 'パスワードを忘れた方', 'forgot/index.php', 'forgot/index', 1, 1, 2, NULL, NULL, NULL, NULL, CURRENT_TIMESTAMP, CURRENT_TIMESTAMP);
 
-- 1件
UPDATE mtb_mail_type
SET name = 'PCメールアドレス (携帯メールアドレスを登録している会員は除外)'
WHERE name = 'PCメールアドレス (携帯メールアドレスを登録している顧客は除外)'
;
-- 1件
UPDATE mtb_mail_type
SET name = '携帯メールアドレス (PCメールアドレスを登録している会員は除外)'
WHERE name = '携帯メールアドレス (PCメールアドレスを登録している顧客は除外)'
;
 
-- 18件
-- 副問い合わせ「sub_mtb_ownersstore_err」は MySQL #1093 対策
DELETE FROM mtb_ownersstore_err
WHERE NOT EXISTS(
    SELECT *
    FROM (SELECT * FROM mtb_ownersstore_err) sub_mtb_ownersstore_err
    WHERE id NOT IN (1000, 1001, 1002, 1003, 1004, 1005, 1006, 1007, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010)
)
;
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1000', '不明なエラーが発生しました。', 0);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1001', '不正なパラメーターが送信されました。', 1);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1002', '認証に失敗しました。<br />・仮会員の方は、本会員登録を行ってください<br />・認証キーが正しく設定されているか確認してください', 2);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1003', '認証に失敗しました。<br />・仮会員の方は、本会員登録を行ってください<br />・認証キーが正しく設定されているか確認してください', 3);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1004', '購入済みの商品はありません。', 4);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1005', 'ダウンロード可能なアップデータはありません。<br />・ステータスが「入金待ち」の可能性があります<br />・インストールされているモジュールが既に最新版の可能性があります。', 5);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1006', '配信サーバーでエラーが発生しました。', 6);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('1007', 'ダウンロード完了通知に失敗しました。', 7);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2001', '管理画面の認証に失敗しました。<br />管理画面トップページへ戻り、ログインし直してください。', 8);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2002', '配信サーバーへ接続できません。', 9);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2003', '配信サーバーへ接続できません。', 10);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2004', '配信サーバーでエラーが発生しました。', 11);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2005', '認証キーが設定されていません。<br />・「認証キー設定」で認証キーを設定してください。', 12);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2006', '不正なアクセスです。', 13);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2007', '不正なパラメーターが送信されました。', 14);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2008', '自動アップデートが無効です', 15);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2009', 'ファイルの書き込みに失敗しました。<br />・書き込み権限が正しく設定されていません。<br />・data/downloads/tmpディレクトリに書き込み権限があるかどうか確認してください', 16);
INSERT INTO mtb_ownersstore_err (id, name, rank) VALUES ('2010', 'ファイルの書き込みに失敗しました。<br />・「ログ管理」で詳細を確認してください。', 17);
 
-- 各1件
UPDATE mtb_constants
SET remarks = 'マスターデータキャッシュディレクトリ'
WHERE id = 'MASTER_DATA_REALDIR'
;
UPDATE mtb_constants
SET remarks = 'デバッグモード(true:sfPrintRやDBのエラーメッセージ、ログレベルがDebugのログを出力する、false:出力しない)'
WHERE id = 'DEBUG_MODE'
;
DELETE FROM mtb_constants
WHERE id = 'SALE_LIMIT_MAX'
;
 
INSERT INTO mtb_constants (id, name, rank, remarks) VALUES ('ZIP_DOWNLOAD_URL', '"http://www.post.japanpost.jp/zipcode/dl/kogaki/zip/ken_all.zip"', 1224, '郵便番号CSVのZIPアーカイブファイルの取得元');

管理機能

  • 「システム設定>パラメータ設定」画面にて、[この内容で登録する]ボタンを押下。
  • 「システム設定>マスタデータ管理」画面にて、下記を選択して[この内容で登録する]ボタンを押下する。
    • mtb_job
    • mtb_mail_type
    • mtb_ownersstore_err

ファイル

削除:
  data/class_extends/page_extends/mypage/LC_Page_Mypage_LoginCheck_Ex.php
  data/module/fpdf/filters/
  data/module/fpdf/filters/FilterASCII85.php
  data/module/fpdf/filters/FilterASCII85_FPDI.php
  data/module/fpdf/filters/FilterLZW.php
  data/module/fpdf/filters/FilterLZW_FPDI.php
  data/module/fpdf/font/makefont/
  data/module/fpdf/font/makefont/cp1250.map
  data/module/fpdf/font/makefont/cp1251.map
  data/module/fpdf/font/makefont/cp1252.map
  data/module/fpdf/font/makefont/cp1253.map
  data/module/fpdf/font/makefont/cp1254.map
  data/module/fpdf/font/makefont/cp1255.map
  data/module/fpdf/font/makefont/cp1257.map
  data/module/fpdf/font/makefont/cp1258.map
  data/module/fpdf/font/makefont/cp874.map
  data/module/fpdf/font/makefont/iso-8859-1.map
  data/module/fpdf/font/makefont/iso-8859-11.map
  data/module/fpdf/font/makefont/iso-8859-15.map
  data/module/fpdf/font/makefont/iso-8859-16.map
  data/module/fpdf/font/makefont/iso-8859-2.map
  data/module/fpdf/font/makefont/iso-8859-4.map
  data/module/fpdf/font/makefont/iso-8859-5.map
  data/module/fpdf/font/makefont/iso-8859-7.map
  data/module/fpdf/font/makefont/iso-8859-9.map
  data/module/fpdf/font/makefont/koi8-r.map
  data/module/fpdf/font/makefont/koi8-u.map
  data/module/fpdf/font/makefont/makefont.php
  data/module/fpdf/fpdf_tpl.php
  data/module/fpdf/fpdi.php
  data/module/fpdf/fpdi2tcpdf_bridge.php
  data/module/fpdf/fpdi_pdf_parser.php
  data/module/fpdf/japanese.php
  data/module/fpdf/pdf_context.php
  data/module/fpdf/pdf_parser.php
  html/mypage/login_check.php
  html/user_data/packages/sphone/css/detail.css
  html/user_data/packages/sphone/css/iphone.css
  html/user_data/packages/sphone/css/table.css
  html/user_data/packages/sphone/css/top.css
  html/user_data/packages/sphone/css/width.css
  html/user_data/packages/sphone/css/wreckage.css
追加:
  data/Smarty/templates/sphone/frontparts/bloc/login_footer.tpl
  data/Smarty/templates/sphone/frontparts/bloc/login_header.tpl
  data/Smarty/templates/sphone/frontparts/bloc/navi_footer.tpl
  data/Smarty/templates/sphone/frontparts/bloc/navi_header.tpl
  data/class/pages/admin/order/LC_Page_Admin_Order_Disp.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader.php
  data/class_extends/page_extends/admin/order/LC_Page_Admin_Order_Disp_Ex.php
  data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_LoginFooter_Ex.php
  data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviFooter_Ex.php
  data/class_extends/page_extends/frontparts/bloc/LC_Page_FrontParts_Bloc_NaviHeader_Ex.php
  data/module/fpdf/FAQ.htm
  data/module/fpdf/changelog.htm
  data/module/fpdf/doc/
  data/module/fpdf/doc/acceptpagebreak.htm
  data/module/fpdf/doc/addfont.htm
  data/module/fpdf/doc/addlink.htm
  data/module/fpdf/doc/addpage.htm
  data/module/fpdf/doc/aliasnbpages.htm
  data/module/fpdf/doc/cell.htm
  data/module/fpdf/doc/close.htm
  data/module/fpdf/doc/error.htm
  data/module/fpdf/doc/footer.htm
  data/module/fpdf/doc/fpdf.htm
  data/module/fpdf/doc/getstringwidth.htm
  data/module/fpdf/doc/getx.htm
  data/module/fpdf/doc/gety.htm
  data/module/fpdf/doc/header.htm
  data/module/fpdf/doc/image.htm
  data/module/fpdf/doc/index.htm
  data/module/fpdf/doc/line.htm
  data/module/fpdf/doc/link.htm
  data/module/fpdf/doc/ln.htm
  data/module/fpdf/doc/multicell.htm
  data/module/fpdf/doc/output.htm
  data/module/fpdf/doc/pageno.htm
  data/module/fpdf/doc/rect.htm
  data/module/fpdf/doc/setauthor.htm
  data/module/fpdf/doc/setautopagebreak.htm
  data/module/fpdf/doc/setcompression.htm
  data/module/fpdf/doc/setcreator.htm
  data/module/fpdf/doc/setdisplaymode.htm
  data/module/fpdf/doc/setdrawcolor.htm
  data/module/fpdf/doc/setfillcolor.htm
  data/module/fpdf/doc/setfont.htm
  data/module/fpdf/doc/setfontsize.htm
  data/module/fpdf/doc/setkeywords.htm
  data/module/fpdf/doc/setleftmargin.htm
  data/module/fpdf/doc/setlinewidth.htm
  data/module/fpdf/doc/setlink.htm
  data/module/fpdf/doc/setmargins.htm
  data/module/fpdf/doc/setrightmargin.htm
  data/module/fpdf/doc/setsubject.htm
  data/module/fpdf/doc/settextcolor.htm
  data/module/fpdf/doc/settitle.htm
  data/module/fpdf/doc/settopmargin.htm
  data/module/fpdf/doc/setx.htm
  data/module/fpdf/doc/setxy.htm
  data/module/fpdf/doc/sety.htm
  data/module/fpdf/doc/text.htm
  data/module/fpdf/doc/write.htm
  data/module/fpdf/font/courierb.php
  data/module/fpdf/font/courierbi.php
  data/module/fpdf/font/courieri.php
  data/module/fpdf/fpdf.css
  data/module/fpdf/install.txt
  data/module/fpdf/license.txt
  data/module/fpdf/makefont/
  data/module/fpdf/makefont/cp1250.map
  data/module/fpdf/makefont/cp1251.map
  data/module/fpdf/makefont/cp1252.map
  data/module/fpdf/makefont/cp1253.map
  data/module/fpdf/makefont/cp1254.map
  data/module/fpdf/makefont/cp1255.map
  data/module/fpdf/makefont/cp1257.map
  data/module/fpdf/makefont/cp1258.map
  data/module/fpdf/makefont/cp874.map
  data/module/fpdf/makefont/iso-8859-1.map
  data/module/fpdf/makefont/iso-8859-11.map
  data/module/fpdf/makefont/iso-8859-15.map
  data/module/fpdf/makefont/iso-8859-16.map
  data/module/fpdf/makefont/iso-8859-2.map
  data/module/fpdf/makefont/iso-8859-4.map
  data/module/fpdf/makefont/iso-8859-5.map
  data/module/fpdf/makefont/iso-8859-7.map
  data/module/fpdf/makefont/iso-8859-9.map
  data/module/fpdf/makefont/koi8-r.map
  data/module/fpdf/makefont/koi8-u.map
  data/module/fpdf/makefont/makefont.php
  data/module/fpdf/makefont/ttfparser.php
  data/module/fpdf/tutorial/
  data/module/fpdf/tutorial/20k_c1.txt
  data/module/fpdf/tutorial/20k_c2.txt
  data/module/fpdf/tutorial/calligra.php
  data/module/fpdf/tutorial/calligra.ttf
  data/module/fpdf/tutorial/calligra.z
  data/module/fpdf/tutorial/countries.txt
  data/module/fpdf/tutorial/index.htm
  data/module/fpdf/tutorial/logo.png
  data/module/fpdf/tutorial/makefont.php
  data/module/fpdf/tutorial/tuto1.htm
  data/module/fpdf/tutorial/tuto1.php
  data/module/fpdf/tutorial/tuto2.htm
  data/module/fpdf/tutorial/tuto2.php
  data/module/fpdf/tutorial/tuto3.htm
  data/module/fpdf/tutorial/tuto3.php
  data/module/fpdf/tutorial/tuto4.htm
  data/module/fpdf/tutorial/tuto4.php
  data/module/fpdf/tutorial/tuto5.htm
  data/module/fpdf/tutorial/tuto5.php
  data/module/fpdf/tutorial/tuto6.htm
  data/module/fpdf/tutorial/tuto6.php
  data/module/fpdf/tutorial/tuto7.htm
  data/module/fpdf/tutorial/tuto7.php
  data/module/fpdi/
  data/module/fpdi/filters/
  data/module/fpdi/filters/FilterASCII85.php
  data/module/fpdi/filters/FilterASCII85_FPDI.php
  data/module/fpdi/filters/FilterLZW.php
  data/module/fpdi/filters/FilterLZW_FPDI.php
  data/module/fpdi/fpdf_tpl.php
  data/module/fpdi/fpdi.php
  data/module/fpdi/fpdi2tcpdf_bridge.php
  data/module/fpdi/fpdi_pdf_parser.php
  data/module/fpdi/japanese.php
  data/module/fpdi/pdf_context.php
  data/module/fpdi/pdf_parser.php
  html/admin/order/disp.php
  html/frontparts/bloc/login_footer.php
  html/frontparts/bloc/navi_footer.php
  html/frontparts/bloc/navi_header.php
  html/user_data/packages/sphone/css/block.css
  html/user_data/packages/sphone/css/contents.css
  html/user_data/packages/sphone/css/images/
  html/user_data/packages/sphone/css/images/ajax-loader.png
  html/user_data/packages/sphone/css/images/form-check-off.png
  html/user_data/packages/sphone/css/images/form-check-on.png
  html/user_data/packages/sphone/css/images/form-radio-off.png
  html/user_data/packages/sphone/css/images/form-radio-on.png
  html/user_data/packages/sphone/css/images/icon-search-black.png
  html/user_data/packages/sphone/css/images/icon_delete.png
  html/user_data/packages/sphone/css/images/icons-18-black.png
  html/user_data/packages/sphone/css/images/icons-18-white.png
  html/user_data/packages/sphone/css/images/icons-36-black.png
  html/user_data/packages/sphone/css/images/icons-36-white.png
  html/user_data/packages/sphone/css/jqm.css
  html/user_data/packages/sphone/css/jquery.mobile-1.0a3.css
  html/user_data/packages/sphone/css/mypage.css
  html/user_data/packages/sphone/css/popup.css
  html/user_data/packages/sphone/css/products.css
  html/user_data/packages/sphone/css/set.css
  html/user_data/packages/sphone/img/button/btn_close.png
  html/user_data/packages/sphone/img/button/btn_delete.png
  html/user_data/packages/sphone/img/button/btn_footer_cart_off.png
  html/user_data/packages/sphone/img/button/btn_footer_cart_on.png
  html/user_data/packages/sphone/img/button/btn_footer_favorite_off.png
  html/user_data/packages/sphone/img/button/btn_footer_favorite_on.png
  html/user_data/packages/sphone/img/button/btn_footer_home_off.png
  html/user_data/packages/sphone/img/button/btn_footer_home_on.png
  html/user_data/packages/sphone/img/button/btn_footer_mypage_off.png
  html/user_data/packages/sphone/img/button/btn_footer_mypage_on.png
  html/user_data/packages/sphone/img/common/bg_tit_bar.png
  html/user_data/packages/sphone/img/common/btn_minus.png
  html/user_data/packages/sphone/img/common/btn_plus.png
  html/user_data/packages/sphone/img/common/ico_arrowL.png
  html/user_data/packages/sphone/img/common/ico_arrowL2.png
  html/user_data/packages/sphone/img/common/ico_arrowL_L.png
  html/user_data/packages/sphone/img/common/ico_arrowL_R.png
  html/user_data/packages/sphone/img/common/ico_arrowR.png
  html/user_data/packages/sphone/img/common/ico_arrowR2.png
  html/user_data/packages/sphone/img/header/btn_header_cart.png
  html/user_data/packages/sphone/img/header/btn_header_mypage.png
  html/user_data/packages/sphone/img/header/logo.png
  html/user_data/packages/sphone/img/icon/ico_cart.png
  html/user_data/packages/sphone/img/icon/ico_login.png
  html/user_data/packages/sphone/img/icon/ico_mypage.png
  html/user_data/packages/sphone/js/btn.js
  html/user_data/packages/sphone/js/config.js
  html/user_data/packages/sphone/js/favorite.js
  html/user_data/packages/sphone/js/images/
  html/user_data/packages/sphone/js/images/ajax-loader.png
  html/user_data/packages/sphone/js/images/form-check-off.png
  html/user_data/packages/sphone/js/images/form-check-on.png
  html/user_data/packages/sphone/js/images/form-radio-off.png
  html/user_data/packages/sphone/js/images/form-radio-on.png
  html/user_data/packages/sphone/js/images/icon-search-black.png
  html/user_data/packages/sphone/js/images/icons-18-black.png
  html/user_data/packages/sphone/js/images/icons-18-white.png
  html/user_data/packages/sphone/js/images/icons-36-black.png
  html/user_data/packages/sphone/js/images/icons-36-white.png
  html/user_data/packages/sphone/js/jquery-1.5.2.min.js
  html/user_data/packages/sphone/js/jquery.autoResizeTextAreaQ-0.1.js
  html/user_data/packages/sphone/js/jquery.facebox/
  html/user_data/packages/sphone/js/jquery.facebox/closelabel.png
  html/user_data/packages/sphone/js/jquery.facebox/facebox.css
  html/user_data/packages/sphone/js/jquery.facebox/facebox.js
  html/user_data/packages/sphone/js/jquery.facebox/loading.gif
  html/user_data/packages/sphone/js/jquery.flickslide.js
  html/user_data/packages/sphone/js/jquery.mobile-1.0a3.min.js
  test/class/helper/SC_Helper_Purchase_Test.php
  test/class/helper/SC_Helper_Session_Test.php
  test/selenium/TestCase_Install
  test/selenium/backend/TestCase_Admin_Login
  test/selenium/backend/TestCase_Admin_Logout
  test/selenium/backend/TestSuite_Admin
  test/selenium/front/TestSuite_Front
変更:
  data/Smarty/templates/admin/adminparts/form_customer_search.tpl
  data/Smarty/templates/admin/basis/delivery.tpl
  data/Smarty/templates/admin/basis/delivery_input.tpl
  data/Smarty/templates/admin/basis/index.tpl
  data/Smarty/templates/admin/basis/subnavi.tpl
  data/Smarty/templates/admin/basis/zip_install.tpl
  data/Smarty/templates/admin/contents/csv_sql.tpl
  data/Smarty/templates/admin/contents/recommend_search.tpl
  data/Smarty/templates/admin/contents/subnavi.tpl
  data/Smarty/templates/admin/customer/edit.tpl
  data/Smarty/templates/admin/customer/edit_confirm.tpl
  data/Smarty/templates/admin/customer/index.tpl
  data/Smarty/templates/admin/customer/search_customer.tpl
  data/Smarty/templates/admin/customer/subnavi.tpl
  data/Smarty/templates/admin/home.tpl
  data/Smarty/templates/admin/mail/index.tpl
  data/Smarty/templates/admin/mail/query.tpl
  data/Smarty/templates/admin/main_frame.tpl
  data/Smarty/templates/admin/order/disp.tpl
  data/Smarty/templates/admin/order/edit.tpl
  data/Smarty/templates/admin/order/index.tpl
  data/Smarty/templates/admin/order/multiple.tpl
  data/Smarty/templates/admin/order/product_select.tpl
  data/Smarty/templates/admin/order/status.tpl
  data/Smarty/templates/admin/order/subnavi.tpl
  data/Smarty/templates/admin/ownersstore/index.tpl
  data/Smarty/templates/admin/products/confirm.tpl
  data/Smarty/templates/admin/products/product.tpl
  data/Smarty/templates/admin/products/product_class.tpl
  data/Smarty/templates/admin/products/product_select.tpl
  data/Smarty/templates/admin/products/subnavi.tpl
  data/Smarty/templates/admin/system/masterdata.tpl
  data/Smarty/templates/admin/system/parameter.tpl
  data/Smarty/templates/admin/system/subnavi.tpl
  data/Smarty/templates/default/cart/index.tpl
  data/Smarty/templates/default/frontparts/bloc/calendar.tpl
  data/Smarty/templates/default/frontparts/bloc/cart.tpl
  data/Smarty/templates/default/frontparts/bloc/category.tpl
  data/Smarty/templates/default/frontparts/bloc/login.tpl
  data/Smarty/templates/default/frontparts/bloc/login_header.tpl
  data/Smarty/templates/default/frontparts/bloc/news.tpl
  data/Smarty/templates/default/frontparts/bloc/search_products.tpl
  data/Smarty/templates/default/mail_templates/order_mail.tpl
  data/Smarty/templates/default/mypage/history.tpl
  data/Smarty/templates/default/mypage/login.tpl
  data/Smarty/templates/default/products/detail.tpl
  data/Smarty/templates/default/rss/index.tpl
  data/Smarty/templates/default/shopping/confirm.tpl
  data/Smarty/templates/default/shopping/multiple.tpl
  data/Smarty/templates/default/shopping/nonmember_input.tpl
  data/Smarty/templates/default/site_frame.tpl
  data/Smarty/templates/mobile/cart/index.tpl
  data/Smarty/templates/mobile/entry/confirm.tpl
  data/Smarty/templates/mobile/entry/index.tpl
  data/Smarty/templates/mobile/footer.tpl
  data/Smarty/templates/mobile/forgot/complete.tpl
  data/Smarty/templates/mobile/guide/about.tpl
  data/Smarty/templates/mobile/mail_templates/order_mail.tpl
  data/Smarty/templates/mobile/mypage/change.tpl
  data/Smarty/templates/mobile/mypage/delivery_addr.tpl
  data/Smarty/templates/mobile/mypage/history.tpl
  data/Smarty/templates/mobile/mypage/login.tpl
  data/Smarty/templates/mobile/products/detail.tpl
  data/Smarty/templates/mobile/products/list.tpl
  data/Smarty/templates/mobile/products/select_find1.tpl
  data/Smarty/templates/mobile/products/select_find2.tpl
  data/Smarty/templates/mobile/products/select_item.tpl
  data/Smarty/templates/mobile/regist/complete.tpl
  data/Smarty/templates/mobile/shopping/confirm.tpl
  data/Smarty/templates/mobile/shopping/deliv.tpl
  data/Smarty/templates/mobile/shopping/multiple.tpl
  data/Smarty/templates/mobile/site_main.tpl
  data/Smarty/templates/sphone/abouts/index.tpl
  data/Smarty/templates/sphone/cart/index.tpl
  data/Smarty/templates/sphone/contact/complete.tpl
  data/Smarty/templates/sphone/contact/confirm.tpl
  data/Smarty/templates/sphone/contact/index.tpl
  data/Smarty/templates/sphone/entry/complete.tpl
  data/Smarty/templates/sphone/entry/confirm.tpl
  data/Smarty/templates/sphone/entry/index.tpl
  data/Smarty/templates/sphone/entry/kiyaku.tpl
  data/Smarty/templates/sphone/error.tpl
  data/Smarty/templates/sphone/footer.tpl
  data/Smarty/templates/sphone/forgot/complete.tpl
  data/Smarty/templates/sphone/forgot/index.tpl
  data/Smarty/templates/sphone/forgot/secret.tpl
  data/Smarty/templates/sphone/frontparts/bloc/category.tpl
  data/Smarty/templates/sphone/frontparts/bloc/login.tpl
  data/Smarty/templates/sphone/frontparts/bloc/news.tpl
  data/Smarty/templates/sphone/frontparts/bloc/recommend.tpl
  data/Smarty/templates/sphone/frontparts/form_personal_input.tpl
  data/Smarty/templates/sphone/guide/privacy.tpl
  data/Smarty/templates/sphone/header.tpl
  data/Smarty/templates/sphone/index.tpl
  data/Smarty/templates/sphone/mypage/change.tpl
  data/Smarty/templates/sphone/mypage/change_complete.tpl
  data/Smarty/templates/sphone/mypage/change_confirm.tpl
  data/Smarty/templates/sphone/mypage/delivery.tpl
  data/Smarty/templates/sphone/mypage/delivery_addr.tpl
  data/Smarty/templates/sphone/mypage/error.tpl
  data/Smarty/templates/sphone/mypage/favorite.tpl
  data/Smarty/templates/sphone/mypage/history.tpl
  data/Smarty/templates/sphone/mypage/index.tpl
  data/Smarty/templates/sphone/mypage/login.tpl
  data/Smarty/templates/sphone/mypage/mail_view.tpl
  data/Smarty/templates/sphone/mypage/navi.tpl
  data/Smarty/templates/sphone/mypage/refusal.tpl
  data/Smarty/templates/sphone/mypage/refusal_complete.tpl
  data/Smarty/templates/sphone/mypage/refusal_confirm.tpl
  data/Smarty/templates/sphone/order/index.tpl
  data/Smarty/templates/sphone/popup_header.tpl
  data/Smarty/templates/sphone/products/detail.tpl
  data/Smarty/templates/sphone/products/list.tpl
  data/Smarty/templates/sphone/regist/complete.tpl
  data/Smarty/templates/sphone/shopping/complete.tpl
  data/Smarty/templates/sphone/shopping/confirm.tpl
  data/Smarty/templates/sphone/shopping/deliv.tpl
  data/Smarty/templates/sphone/shopping/index.tpl
  data/Smarty/templates/sphone/shopping/multiple.tpl
  data/Smarty/templates/sphone/shopping/nonmember_input.tpl
  data/Smarty/templates/sphone/shopping/payment.tpl
  data/Smarty/templates/sphone/site_frame.tpl
  data/Smarty/templates/sphone/site_main.tpl
  data/class/SC_CartSession.php
  data/class/SC_Customer.php
  data/class/SC_CustomerList.php
  data/class/SC_Display.php
  data/class/SC_FormParam.php
  data/class/SC_Fpdf.php
  data/class/SC_Initial.php
  data/class/SC_MobileImage.php
  data/class/SC_Product.php
  data/class/SC_Query.php
  data/class/SC_Response.php
  data/class/SC_SendMail.php
  data/class/SC_Session.php
  data/class/batch/SC_Batch_Update.php
  data/class/db/SC_DB_MasterData.php
  data/class/db/dbfactory/SC_DB_DBFactory_MYSQL.php
  data/class/db/dbfactory/SC_DB_DBFactory_PGSQL.php
  data/class/helper/SC_Helper_CSV.php
  data/class/helper/SC_Helper_Customer.php
  data/class/helper/SC_Helper_DB.php
  data/class/helper/SC_Helper_Mail.php
  data/class/helper/SC_Helper_PageLayout.php
  data/class/helper/SC_Helper_Purchase.php
  data/class/helper/SC_Helper_Session.php
  data/class/pages/LC_Page.php
  data/class/pages/LC_Page_InputZip.php
  data/class/pages/LC_Page_Sitemap.php
  data/class/pages/admin/LC_Page_Admin.php
  data/class/pages/admin/LC_Page_Admin_Home.php
  data/class/pages/admin/LC_Page_Admin_Index.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Delivery.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_DeliveryInput.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Holiday.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Kiyaku.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Mail.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Payment.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_PaymentInput.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Point.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Seo.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_Tradelaw.php
  data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_CSV.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_CsvSql.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_FileManager.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_FileView.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_Recommend.php
  data/class/pages/admin/contents/LC_Page_Admin_Contents_RecommendSearch.php
  data/class/pages/admin/customer/LC_Page_Admin_Customer.php
  data/class/pages/admin/customer/LC_Page_Admin_Customer_Edit.php
  data/class/pages/admin/customer/LC_Page_Admin_Customer_SearchCustomer.php
  data/class/pages/admin/design/LC_Page_Admin_Design.php
  data/class/pages/admin/design/LC_Page_Admin_Design_Bloc.php
  data/class/pages/admin/design/LC_Page_Admin_Design_CSS.php
  data/class/pages/admin/design/LC_Page_Admin_Design_Header.php
  data/class/pages/admin/design/LC_Page_Admin_Design_MainEdit.php
  data/class/pages/admin/design/LC_Page_Admin_Design_Template.php
  data/class/pages/admin/design/LC_Page_Admin_Design_UpDown.php
  data/class/pages/admin/mail/LC_Page_Admin_Mail.php
  data/class/pages/admin/mail/LC_Page_Admin_Mail_History.php
  data/class/pages/admin/mail/LC_Page_Admin_Mail_Template.php
  data/class/pages/admin/mail/LC_Page_Admin_Mail_TemplateInput.php
  data/class/pages/admin/order/LC_Page_Admin_Order.php
  data/class/pages/admin/order/LC_Page_Admin_Order_Edit.php
  data/class/pages/admin/order/LC_Page_Admin_Order_Mail.php
  data/class/pages/admin/order/LC_Page_Admin_Order_Multiple.php
  data/class/pages/admin/order/LC_Page_Admin_Order_Pdf.php
  data/class/pages/admin/order/LC_Page_Admin_Order_ProductSelect.php
  data/class/pages/admin/order/LC_Page_Admin_Order_Status.php
  data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore.php
  data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Log.php
  data/class/pages/admin/ownersstore/LC_Page_Admin_OwnersStore_Settings.php
  data/class/pages/admin/plugin/LC_Page_Admin_Plugin_Install.php
  data/class/pages/admin/plugin/LC_Page_Admin_Plugin_Uninstall.php
  data/class/pages/admin/products/LC_Page_Admin_Products.php
  data/class/pages/admin/products/LC_Page_Admin_Products_Category.php
  data/class/pages/admin/products/LC_Page_Admin_Products_Class.php
  data/class/pages/admin/products/LC_Page_Admin_Products_ClassCategory.php
  data/class/pages/admin/products/LC_Page_Admin_Products_Maker.php
  data/class/pages/admin/products/LC_Page_Admin_Products_Product.php
  data/class/pages/admin/products/LC_Page_Admin_Products_ProductClass.php
  data/class/pages/admin/products/LC_Page_Admin_Products_ProductRank.php
  data/class/pages/admin/products/LC_Page_Admin_Products_ProductSelect.php
  data/class/pages/admin/products/LC_Page_Admin_Products_Review.php
  data/class/pages/admin/products/LC_Page_Admin_Products_ReviewEdit.php
  data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSV.php
  data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php
  data/class/pages/admin/system/LC_Page_Admin_System.php
  data/class/pages/admin/system/LC_Page_Admin_System_AdminArea.php
  data/class/pages/admin/system/LC_Page_Admin_System_Bkup.php
  data/class/pages/admin/system/LC_Page_Admin_System_Delete.php
  data/class/pages/admin/system/LC_Page_Admin_System_Editdb.php
  data/class/pages/admin/system/LC_Page_Admin_System_Input.php
  data/class/pages/admin/system/LC_Page_Admin_System_Log.php
  data/class/pages/admin/system/LC_Page_Admin_System_Masterdata.php
  data/class/pages/admin/system/LC_Page_Admin_System_Parameter.php
  data/class/pages/admin/system/LC_Page_Admin_System_Plugin.php
  data/class/pages/admin/system/LC_Page_Admin_System_System.php
  data/class/pages/admin/total/LC_Page_Admin_Total.php
  data/class/pages/cart/LC_Page_Cart.php
  data/class/pages/contact/LC_Page_Contact.php
  data/class/pages/entry/LC_Page_Entry.php
  data/class/pages/entry/LC_Page_Entry_EmailMobile.php
  data/class/pages/forgot/LC_Page_Forgot.php
  data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Cart.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Login.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_News.php
  data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Recommend.php
  data/class/pages/guide/LC_Page_Guide_About.php
  data/class/pages/mypage/LC_Page_AbstractMypage.php
  data/class/pages/mypage/LC_Page_Mypage.php
  data/class/pages/mypage/LC_Page_Mypage_Change.php
  data/class/pages/mypage/LC_Page_Mypage_Delivery.php
  data/class/pages/mypage/LC_Page_Mypage_DeliveryAddr.php
  data/class/pages/mypage/LC_Page_Mypage_DownLoad.php
  data/class/pages/mypage/LC_Page_Mypage_Favorite.php
  data/class/pages/mypage/LC_Page_Mypage_History.php
  data/class/pages/mypage/LC_Page_Mypage_MailView.php
  data/class/pages/mypage/LC_Page_Mypage_RefusalComplete.php
  data/class/pages/products/LC_Page_Products_Detail.php
  data/class/pages/products/LC_Page_Products_List.php
  data/class/pages/products/LC_Page_Products_Review.php
  data/class/pages/regist/LC_Page_Regist.php
  data/class/pages/rss/LC_Page_Rss.php
  data/class/pages/rss/LC_Page_Rss_Products.php
  data/class/pages/shopping/LC_Page_Shopping.php
  data/class/pages/shopping/LC_Page_Shopping_Confirm.php
  data/class/pages/shopping/LC_Page_Shopping_Deliv.php
  data/class/pages/shopping/LC_Page_Shopping_Multiple.php
  data/class/pages/shopping/LC_Page_Shopping_Payment.php
  data/class/pages/upgrade/LC_Page_Upgrade_Base.php
  data/class/pages/upgrade/LC_Page_Upgrade_Download.php
  data/class/pages/upgrade/LC_Page_Upgrade_ProductsList.php
  data/class/session/SC_SessionFactory.php
  data/class/session/sessionfactory/SC_SessionFactory_UseCookie.php
  data/class/session/sessionfactory/SC_SessionFactory_UseRequest.php
  data/class/util/GC_Utils.php
  data/class/util/SC_Utils.php
  data/class_extends/db_extends/SC_DB_MasterData_Ex.php
  data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_DeliveryInput_Ex.php
  data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Delivery_Ex.php
  data/class_extends/page_extends/admin/basis/LC_Page_Admin_Basis_Holiday_Ex.php
  data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Customer_Ex.php
  data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Edit_Ex.php
  data/class_extends/page_extends/admin/customer/LC_Page_Admin_Customer_Ex.php
  data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Masterdata_Ex.php
  data/class_extends/page_extends/admin/system/LC_Page_Admin_System_Parameter_Ex.php
  data/include/image_converter.inc
  data/include/mobile_emoji_map_softbank.inc
  data/module/Net/Socket.php
  data/module/Tar.php
  data/module/fpdf/font/courier.php
  data/module/fpdf/font/helvetica.php
  data/module/fpdf/font/helveticab.php
  data/module/fpdf/font/helveticabi.php
  data/module/fpdf/font/helveticai.php
  data/module/fpdf/font/symbol.php
  data/module/fpdf/font/times.php
  data/module/fpdf/font/timesb.php
  data/module/fpdf/font/timesbi.php
  data/module/fpdf/font/timesi.php
  data/module/fpdf/font/zapfdingbats.php
  data/module/fpdf/fpdf.php
  data/mtb_constants_init.php
  data/require_safe.php
  data/smarty_extends/block.marquee.php
  html/error.php
  html/install/index.php
  html/install/sql/insert_data.sql
  html/install/templates/agreement.tpl
  html/install/templates/step1.tpl
  html/install/templates/step2.tpl
  html/install/templates/step3.tpl
  html/js/jquery.facebox/facebox.css
  html/js/ui.core.js
  html/js/ui.sortable.js
  html/require.php
  html/user_data/packages/admin/js/ownersstore.js.php
  html/user_data/packages/default/css/common.css
  html/user_data/packages/default/css/contents.css
  html/user_data/packages/mobile/img/header/logo.gif
  html/user_data/packages/sphone/css/button.css
  html/user_data/packages/sphone/css/common.css
  html/user_data/packages/sphone/css/import.css
  html/user_data/plugins/google_analytics/classes/pages/LC_Page_Admin_GoogleAnalytics.php
  test/class/helper/Helper_AllTests.php
  test/class/helper/SC_Helper_DB_Test.php
  test/class/page/LC_Page_Admin_Products_ProductClass_Test.php
  test/class/page/LC_Page_Test.php
  test/class/util/SC_Utils_Test.php
  test/selenium/backend/basis/delivery/TestCase_Admin_BasisDelivery_delete
  test/selenium/backend/basis/delivery/TestCase_Admin_BasisDelivery_edit
  test/selenium/backend/basis/delivery/TestCase_Admin_BasisDelivery_rank_down
  test/selenium/backend/basis/delivery/TestCase_Admin_BasisDelivery_rank_up
  test/selenium/backend/basis/delivery/TestCase_Admin_BasisDelivery_regist
  test/selenium/backend/basis/holiday/TestCase_Admin_BasisHoliday_delete
  test/selenium/backend/basis/holiday/TestCase_Admin_BasisHoliday_edit
  test/selenium/backend/basis/holiday/TestCase_Admin_BasisHoliday_rank_down
  test/selenium/backend/basis/holiday/TestCase_Admin_BasisHoliday_rank_up
  test/selenium/backend/basis/holiday/TestCase_Admin_BasisHoliday_regist
  test/selenium/backend/basis/kiyaku/TestCase_Admin_BasisKiyaku_delete
  test/selenium/backend/basis/kiyaku/TestCase_Admin_BasisKiyaku_edit
  test/selenium/backend/basis/kiyaku/TestCase_Admin_BasisKiyaku_rank_down
  test/selenium/backend/basis/kiyaku/TestCase_Admin_BasisKiyaku_rank_up
  test/selenium/backend/basis/kiyaku/TestCase_Admin_BasisKiyaku_regist
  test/selenium/backend/basis/mail/TestCase_Admin_BasisMail_regist
  test/selenium/backend/basis/payment/TestCase_Admin_BasisPayment_delete
  test/selenium/backend/basis/payment/TestCase_Admin_BasisPayment_edit
  test/selenium/backend/basis/payment/TestCase_Admin_BasisPayment_rank_down
  test/selenium/backend/basis/payment/TestCase_Admin_BasisPayment_rank_up
  test/selenium/backend/basis/payment/TestCase_Admin_BasisPayment_regist
  test/selenium/backend/basis/point/TestCase_Admin_BasisPoint_regist
  test/selenium/backend/basis/seo/TestCase_Admin_BasisSeo_regist
  test/selenium/backend/basis/shopmaster/TestCase_Admin_BasisShopMaster_regist
  test/selenium/backend/basis/tradelaw/TestCase_Admin_BasisTradelaw_regist
  test/selenium/backend/basis/zip_install/TestCase_Admin_BasisZipInstall_delete
  test/selenium/backend/basis/zip_install/TestCase_Admin_BasisZipInstall_regist
  test/selenium/backend/basis/zip_install/TestCase_Admin_BasisZipInstall_update
  test/selenium/backend/contents/TestCase_Admin_ContentsCSV_product_init
  test/selenium/backend/contents/TestCase_Admin_ContentsCSV_product_regist
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_delete_dir
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_delete_file
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_disp_dir
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_disp_file
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_download
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_make_dir
  test/selenium/backend/contents/TestCase_Admin_ContentsFileManager_upload
  test/selenium/backend/contents/TestCase_Admin_ContentsNews_delete
  test/selenium/backend/contents/TestCase_Admin_ContentsNews_edit
  test/selenium/backend/contents/TestCase_Admin_ContentsNews_rank_down
  test/selenium/backend/contents/TestCase_Admin_ContentsNews_rank_up
  test/selenium/backend/contents/TestCase_Admin_ContentsNews_regist
  test/selenium/backend/contents/TestCase_Admin_ContentsRecommend_delete
  test/selenium/backend/contents/TestCase_Admin_ContentsRecommend_edit
  test/selenium/backend/contents/TestCase_Admin_ContentsRecommend_regist
  test/selenium/backend/customer/TestCase_Admin_Customer_delete
  test/selenium/backend/customer/TestCase_Admin_Customer_download_csv
  test/selenium/backend/customer/TestCase_Admin_Customer_edit
  test/selenium/backend/customer/TestCase_Admin_Customer_regist
  test/selenium/backend/customer/TestCase_Admin_Customer_set_csv
  test/selenium/backend/design/TestCase_Admin_DesignPcBloc_edit
  test/selenium/backend/design/TestCase_Admin_DesignPcBloc_regist
  test/selenium/backend/design/TestCase_Admin_DesignPcLayout_delete_bloc
  test/selenium/backend/design/TestCase_Admin_DesignPcLayout_regist_bloc
  test/selenium/backend/mail/TestCase_Admin_MailTemplete_delete
  test/selenium/backend/mail/TestCase_Admin_MailTemplete_edit_html
  test/selenium/backend/mail/TestCase_Admin_MailTemplete_edit_text
  test/selenium/backend/mail/TestCase_Admin_MailTemplete_regist_html
  test/selenium/backend/mail/TestCase_Admin_MailTemplete_regist_text
  test/selenium/backend/order/TestCase_Admin_OrderEdit_edit
  test/selenium/backend/order/TestCase_Admin_OrderEdit_regist
  test/selenium/backend/order/TestCase_Admin_OrderEdit_regist_member
  test/selenium/backend/order/TestCase_Admin_OrderMail
  test/selenium/backend/order/TestCase_Admin_Order_delete
  test/selenium/backend/order/TestCase_Admin_Order_download_csv
  test/selenium/backend/order/TestCase_Admin_Order_pdf
  test/selenium/backend/order/TestCase_Admin_Order_pdf_all
  test/selenium/backend/order/TestCase_Admin_Order_set_csv
  test/selenium/backend/products/category/TestCase_Admin_ProductsCategory_delete
  test/selenium/backend/products/category/TestCase_Admin_ProductsCategory_edit
  test/selenium/backend/products/category/TestCase_Admin_ProductsCategory_rank_down
  test/selenium/backend/products/category/TestCase_Admin_ProductsCategory_rank_up
  test/selenium/backend/products/category/TestCase_Admin_ProductsCategory_regist
  test/selenium/backend/products/class/TestCase_Admin_ProductsClassCategory_delete
  test/selenium/backend/products/class/TestCase_Admin_ProductsClassCategory_edit
  test/selenium/backend/products/class/TestCase_Admin_ProductsClassCategory_rank_down
  test/selenium/backend/products/class/TestCase_Admin_ProductsClassCategory_rank_up
  test/selenium/backend/products/class/TestCase_Admin_ProductsClassCategory_regist
  test/selenium/backend/products/class/TestCase_Admin_ProductsClass_delete
  test/selenium/backend/products/class/TestCase_Admin_ProductsClass_edit
  test/selenium/backend/products/class/TestCase_Admin_ProductsClass_rank_down
  test/selenium/backend/products/class/TestCase_Admin_ProductsClass_rank_up
  test/selenium/backend/products/class/TestCase_Admin_ProductsClass_regist
  test/selenium/backend/products/maker/TestCase_Admin_ProductsMaker_delete
  test/selenium/backend/products/maker/TestCase_Admin_ProductsMaker_edit
  test/selenium/backend/products/maker/TestCase_Admin_ProductsMaker_rank_down
  test/selenium/backend/products/maker/TestCase_Admin_ProductsMaker_rank_up
  test/selenium/backend/products/maker/TestCase_Admin_ProductsMaker_regist
  test/selenium/backend/products/product/TestCase_Admin_ProductsProductClass_delete
  test/selenium/backend/products/product/TestCase_Admin_ProductsProductClass_regist_class1
  test/selenium/backend/products/product/TestCase_Admin_ProductsProductClass_regist_class1_2
  test/selenium/backend/products/product/TestCase_Admin_ProductsProduct_copy
  test/selenium/backend/products/product/TestCase_Admin_ProductsProduct_edit
  test/selenium/backend/products/product/TestCase_Admin_ProductsProduct_regist
  test/selenium/backend/products/product/TestCase_Admin_ProductsProduct_regist_download_product
  test/selenium/backend/products/product/TestCase_Admin_Products_delete
  test/selenium/backend/products/product/TestCase_Admin_Products_search_all
  test/selenium/backend/products/product/TestCase_Admin_Products_search_category
  test/selenium/backend/products/product/TestCase_Admin_Products_search_code
  test/selenium/backend/products/product/TestCase_Admin_Products_search_code_category_date
  test/selenium/backend/products/product/TestCase_Admin_Products_search_date
  test/selenium/backend/products/product/TestCase_Admin_Products_search_id
  test/selenium/backend/products/product/TestCase_Admin_Products_search_id_category
  test/selenium/backend/products/product/TestCase_Admin_Products_search_name
  test/selenium/backend/products/product/TestCase_Admin_Products_search_name_category_status
  test/selenium/backend/products/product/TestCase_Admin_Products_search_name_type
  test/selenium/backend/products/product/TestCase_Admin_Products_search_status
  test/selenium/backend/products/product/TestCase_Admin_Products_search_type
  test/selenium/backend/products/rank/TestCase_Admin_ProductsRank_rank_down
  test/selenium/backend/products/rank/TestCase_Admin_ProductsRank_rank_move_to_3
  test/selenium/backend/products/rank/TestCase_Admin_ProductsRank_rank_up
  test/selenium/backend/products/review/TestCase_Admin_ProductsReview_delete
  test/selenium/backend/products/review/TestCase_Admin_ProductsReview_download_csv
  test/selenium/backend/products/review/TestCase_Admin_ProductsReview_edit
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_all
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_all_csv
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_member
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_member_csv
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_unmember
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_monthly_unmember_csv
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_all
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_all_csv
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_member
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_member_csv
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_unmember
  test/selenium/backend/total/age/TestCase_Admin_TotalAge_term_unmember_csv
  test/selenium/backend/total/job/TestCase_Admin_TotalJob_monthly
  test/selenium/backend/total/job/TestCase_Admin_TotalJob_monthly_csv
  test/selenium/backend/total/job/TestCase_Admin_TotalJob_term
  test/selenium/backend/total/job/TestCase_Admin_TotalJob_term_csv
  test/selenium/backend/total/member/TestCase_Admin_Totalmember_monthly
  test/selenium/backend/total/member/TestCase_Admin_Totalmember_monthly_csv
  test/selenium/backend/total/member/TestCase_Admin_Totalmember_term
  test/selenium/backend/total/member/TestCase_Admin_Totalmember_term_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_all
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_all_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_member
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_member_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_unmember
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_monthly_unmember_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_all
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_all_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_member
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_member_csv
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_unmember
  test/selenium/backend/total/product/TestCase_Admin_TotalProducts_term_unmember_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_age
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_age_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_day
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_day_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_daygroup
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_daygroup_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_hour
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_hour_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_month
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_monthly_month_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_age
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_age_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_day
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_day_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_daygroup
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_daygroup_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_hour
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_hour_csv
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_month
  test/selenium/backend/total/term/TestCase_Admin_TotalTerm_term_month_csv
  test/selenium/front/TestCase_Front_Forgot
  test/selenium/front/TestCase_Front_login
  test/selenium/front/TestCase_Front_logout
  test/selenium/front/cart/TestCase_Front_Cart
  test/selenium/front/contact/TestCase_Front_Contact_login
  test/selenium/front/contact/TestCase_Front_Contact_nologin
  test/selenium/front/entry/TestCase_Front_Entry
  test/selenium/front/mypage/TestCase_Front_MypageChange_edit
  test/selenium/front/mypage/TestCase_Front_MypageDelivery_delete
  test/selenium/front/mypage/TestCase_Front_MypageDelivery_edit
  test/selenium/front/mypage/TestCase_Front_MypageDelivery_regist
  test/selenium/front/mypage/TestCase_Front_MypageFavorite_delete
  test/selenium/front/mypage/TestCase_Front_MypageFavorite_disp
  test/selenium/front/mypage/TestCase_Front_MypageHistory
  test/selenium/front/mypage/TestCase_Front_MypageHistory_download_product
  test/selenium/front/mypage/TestCase_Front_MypageRefusal
  test/selenium/front/mypage/TestCase_Front_Mypage_disp
  test/selenium/front/products/TestCase_Front_ProductsDetail_disp_image
  test/selenium/front/products/TestCase_Front_ProductsDetail_regist_favorite
  test/selenium/front/products/TestCase_Front_ProductsReview_regist
  test/selenium/front/shopping/TestCase_Front_Shopping_login
  test/selenium/front/shopping/TestCase_Front_Shopping_login_download_product
  test/selenium/front/shopping/TestCase_Front_Shopping_unmember

キャッシュ削除

/data/Smarty/templates_c/ 配下削除。

アップデート/正式版2.11/2.11.1_2.11.2.txt · 最終更新: 2012/03/19 14:37 by seasoft
© 2008-2024 Seasoft.