Norivive Backup Tools for Vivid Backup is an independent backup bundle management plugin.
Norivive Backup Tools for Vivid Backup は、独立したバックアップバンドル管理プラグインです。
This plugin allows administrators to:
このプラグインでは、管理者が以下を行えます:
Bulk download backup ZIP files
バックアップ ZIP ファイルの一括ダウンロード
Upload backup bundles
バックアップバンドルのアップロード
Restore multiple backup archives into WPvivid backup storage
複数のバックアップアーカイブを WPvivid バックアップストレージへ復元
Manage backup bundles more efficiently
バックアップバンドルを効率的に管理
Features:
主な機能:
Bulk ZIP bundle download
ZIP バンドルの一括ダウンロード
ZIP bundle upload/import
ZIP バンドルのアップロード / インポート
No recompression mode for faster processing
高速処理のための再圧縮なしモード
ZIP bomb protection
ZIP Bomb 保護
WordPress coding standards friendly
WordPress コーディング規約に配慮
Lightweight admin integration
軽量な管理画面統合
This plugin is an independent third-party add-on and is not affiliated with any backup plugin vendor.
このプラグインは独立したサードパーティ製アドオンであり、いかなるバックアッププラグインベンダーとも提携していません。
This plugin uses readfile() in the download endpoint intentionally for ZIP stream downloads.
このプラグインでは、ZIP ストリームダウンロードのために intentionally readfile() を使用しています。
The plugin handles potentially large backup bundle files generated from WPvivid backups.
本プラグインは、WPvivid バックアップから生成される大容量バックアップバンドルを扱います。
Using WP_Filesystem::get_contents() would load the entire ZIP into memory and may cause memory exhaustion on large backup archives.
WP_Filesystem::get_contents() を使用すると ZIP 全体をメモリへ読み込むため、大容量バックアップではメモリ不足を引き起こす可能性があります。
The implementation:
実装では以下を行っています:
validates user capability
ユーザー権限の検証
validates download token
ダウンロードトークンの検証
validates file existence
ファイル存在確認
sends appropriate download headers
適切なダウンロードヘッダー送信
deletes the temporary ZIP after download
ダウンロード後の一時 ZIP 削除
The file is generated temporarily and removed immediately after streaming.
ファイルは一時生成され、ストリーミング後に即時削除されます。