🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-08-07 18:15:20 | PHP 8.2.32
📂
/ (Root)
/
home
/
eliteewa
/
public_html
/
wp-content
/
plugins
/
mailchimp-for-wp
/
includes
/
admin
/
migrations
📍 /home/eliteewa/public_html/wp-content/plugins/mailchimp-for-wp/includes/admin/migrations
🔄 Refresh
✏️
Editing: 4.8.2-move-debug-log-to-subdirectory.php
Writable
<?php defined('ABSPATH') || exit; // get old filename $upload_dir = wp_upload_dir(null, false); $old_filename = trailingslashit($upload_dir['basedir']) . 'mc4wp-debug-log.php'; // if old file exists, move it to new location if (is_file($old_filename)) { $new_filename = $upload_dir['basedir'] . '/mailchimp-for-wp/debug-log.php'; $dir = dirname($new_filename); if (! is_dir($dir)) { wp_mkdir_p($dir); } rename($old_filename, $new_filename); // phpcs:ignore WordPress.WP.AlternativeFunctions.rename_rename }
💾 Save Changes
❌ Cancel