Brandon Olivares
Forum Replies Created
-
@castoruk, yes, this will be in 3.4.1, to be released very soon.
@bbhank, the number of retries won’t matter if your maximum script execution time is too high. As Daniel said above, set it to 30 seconds or even 25, and see if it works. I understand you are frustrated but it does take time to archive a large number of files, which it sounds like you have.
Glad it helped you, @pembo13. 🙂 Let us know if you need anything else.
@mrlaw that helps, thanks. Can you try (1) deleting your authentication to Dropbox, and (2) reauthenticating?
If that doesn’t work, then please check the following:
In backwpup/inc/class-destination-dropbox.php, on 901, you’ll see this:
curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query( $args ) );Change it to this:
curl_setopt( $ch, CURLOPT_POSTFIELDS, http_build_query( $args, null, '&' ) );Then try reauthenticating.
Hi @mongia, yes we’ll definitely need more information than that. What errors do you get?
@andy_fraley, thanks for contacting us. I’m just confirming here that we got the issue fixed.
@castoruk, if you’d like the fix prior to release, here’s basically what you do:
In the file backwpup/inc/class-jobtype-file.php, you’ll find this on line 216:
'backuprootexcludedirs' => array( 'filter' => FILTER_SANITIZE_URL, 'flags' => FILTER_FORCE_ARRAY ),Simply add the following after the above line:
'backupcontentexcludedirs' => array( 'filter' => FILTER_SANITIZE_URL, 'flags' => FILTER_FORCE_ARRAY ),That should fix the issue for you. Please confirm here whether it does work for you.
Hi @mrlaw,
Can you generate a debug log? You can do that by going to BackWPup > Settings > Logging and setting Logging Level to Debug (not translated). Then rerun the job and post the log file.
@all, this will be fixed in the new release hopefully later this week. If you’d like a fix earlier than that, you may contact us at support [at] backwpup.com. It’s been confirmed to fix this issue for other users.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] Error while writing fileHi @donnajanke, I’m very glad your issue was resolved. 🙂 Feel free to let us know if you need anything else.
If you are happy with our free plugin and support, please make us happy and take 30 seconds to leave a review. 🙂 We’d really appreciate that.
Hi @kuphd1, I’ve tried to give alternative solutions in this thread. If you’re comfortable enough with code, it’s a one-line fix.
In inc/class-job.php, on line 2514 or so, you’ll see this:
$regex = "/^" . str_replace( $datevars, $dateregex, preg_quote( self::sanitize_file_name( $this->job['archivename'] ) ) ) . "$/i";It must be changed to:
$regex = "/^" . str_replace( $datevars, $dateregex, preg_quote( self::sanitize_file_name( BackWPup_Option::normalize_archive_name( $this->job['archivename'], $this->job['jobid'] ) ) ) ) . "$/i";Or else you may ask us for the beta, which has fixed this issue as well.
@marc1980, this is an issue we know exists for some users, but as of yet cannot reproduce it ourselves and so are not entirely sure yet what is causing it.
Have you tried enabling WP_DEBUG to see if any error messages are triggered when you save the form with excludes enabled?
Hi @wpfreund14, this is a known issue and will be resolved in the next release. The dump is still perfectly valid however.
Thanks @castoruk, I certainly understand.
@andy_fraley, if you are still having the issue, it’d certainly be helpful if you could grant us access as described above. Feel free to email us and we’ll take care of it.