c4ni
Forum Replies Created
-
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backuped but not uploadI debugged the process and the problem is in method boot_backup()
Last parameter is $options with defaut value set as empty array.
When action updraft_backupnow_backup_all is called without args this function will get empty string as $options value, so the default empty array value will not be set. This is the reason why assigning at class-updraftplus.php:3194 will not work.
Solution for this is passing empty array when calling do_action:
do_action('updraft_backupnow_backup_all', []);
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backuped but not uploadHi,
log: https://pastebin.com/aiCqRtM0
In log is message “No remote despatch: user chose no remote backup service)” but remote backup is configured and works with dabate only cron backup.
Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backuped but not uploadPHP Warning: Illegal string offset ‘remote_storage_instances’ in /var/www/vhosts/****/httpdocs/wp-content/plugins/updraftplus/class-updraftplus.php on line 3155
PHP Warning: Illegal string offset ‘remote_storage_instances’ in /var/www/vhosts/****/httpdocs/wp-content/plugins/updraftplus/class-updraftplus.php on line 3158
PHP Warning: array_keys() expects parameter 1 to be array, string given in /var/www/vhosts/****z/httpdocs/wp-content/plugins/updraftplus/class-updraftplus.php on line 3158Forum: Plugins
In reply to: [UpdraftPlus: WP Backup & Migration Plugin] Backuped but not uploadHi,
I have a same problem as mentioned. Version: 1.16.43
When I run backup with cron it is not uploaded to remote server.
This problem occurs only on ful backup. When I run DB backup with cron, there is no problem with uploading to remote server.
Also if full backup is runned manually from WP dashboard, it will uploads to remote server.
A.D.: updraft_backup_database works as expected, problem is only with full backup.
A.D2: tested on 1.16.34 and works without problem