This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // ---------------------- | |
| // a-blog cms | |
| // update 2022/03/15 | |
| // ---------------------- | |
| // ------------------- | |
| // 2) パスワードチェック | |
| // ------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // ---------------------- | |
| // a-blog cms バックアップ | |
| // update 2022/03/04 | |
| // ---------------------- | |
| # 指定すると DOMAIN_YYYYMMDDHHMMSS.zip で | |
| # sql , archives , archives_rev , storage , media , themes , config.system.yaml | |
| # を圧縮してバックアップします。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| ini_set('max_execution_time', 0); | |
| // ---------------------- | |
| // a-blog cms サイトコピー (XSERVER用) | |
| // update 2022/07/18 | |
| // ---------------------- | |
| // -------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // a-blog cms 環境チェック(phpinfo 不要) | |
| // 公開しない前提:確認が終わったら削除してください。 | |
| header('Content-Type: text/plain; charset=UTF-8'); | |
| function ok($label, $value) { | |
| echo "[OK] {$label}: {$value}\n"; | |
| } | |
| function ng($label, $value) { |
OlderNewer