Undefined array key “is_running”
-
I am running 1.16.8 of Total Upkeep. I turned on debugging on my WordPress site and noted the following in my debug.log after running a backup and copying it to my local disk:
[16-Feb-2025 21:15:46 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508
[16-Feb-2025 21:15:51 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508
[16-Feb-2025 21:15:56 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508
[16-Feb-2025 21:16:01 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508
[16-Feb-2025 21:16:06 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508
[16-Feb-2025 21:16:11 UTC] PHP Warning: Undefined array key “is_running” in /volume1/web_packages/wordpress/wp-content/plugins/boldgrid-backup/admin/class-boldgrid-backup-admin-in-progress.php on line 508and thought that you might be interested.
In the following, Line 508 is the one that begins “$response[‘is_killed’
if ( Boldgrid_Backup_Admin_Test::is_getpgid_supported() ) {
$response['is_running'] = self::is_running();
$log->add( 'Backup process running: ' . ( ! $response['is_running'] ? 'No' : 'Yes (pgid = ' . self::getpgid() . ')' ) );
}
$response['is_killed'] = false === $response['is_running'] && ! is_bool( $response['is_success'] ) && empty( $response['boldgrid_backup_error'] );
if ( $response['is_killed'] ) {
- You must be logged in to reply to this topic.