Quantcast
Channel: updraftplus – WordPress.org Forums
Viewing all 1086 articles
Browse latest View live

eddie1972 on "Updraft Plus Back up not working with Godaddy"

$
0
0

I just tested the plugin in a blue host account for another site I own, and it works ok. So why GoDaddy.... I have 90% of my sites with them.


eddie1972 on "Updraft Plus Back up not working with Godaddy"

emilygraham on "[Plugin: UpdraftPlus Backup and Restoration] You have less than 35 MB of free disk space on the disk"

$
0
0

Hi there, i am trying to backup using UpdraftPlus, but get the error 'You have less than 35 MB of free disk space on the disk which UpdraftPlus is configured to use to create backups. UpdraftPlus could well run out of space. Contact your the operator of your server (e.g. your web hosting company) to resolve this issue'

According to the company that host the website, "this is down to the storage of the application that you are using in Building your website" and that the issue is not with their server since we have a maximum 50GB storage of you website files.

Any other ideas on what could be causing the issue?

https://wordpress.org/plugins/updraftplus/

David Anderson on "[Plugin: UpdraftPlus Backup and Restoration] You have less than 35 MB of free disk space on the disk"

$
0
0

Hi Emily,

this is down to the storage of the application that you are using in Building your website"

That's not correct - it doesn't refer to remote storage (e.g. Dropbox. Google Drive). This message is the result of calling PHP's disk_free_space function - https://secure.php.net/disk_free_space - and refers to space on the physical disk that your website is on (i.e. not to your web hosting account quota - but the physical bit of hardware that the site is on).

If it persists, you'll want to point your web hosting company to that link, and then they should understand the issue.

Best wishes,
David

Mighty Good on "Wordfence & UpDraftPlus"

$
0
0

Yes -- plugins work fine in various other sites -- all of which have a different host.

emilygraham on "[Plugin: UpdraftPlus Backup and Restoration] You have less than 35 MB of free disk space on the disk"

$
0
0

Thanks David, much appreciated. They have since come back and suggested that i try installing the development version of the plugin (http://updraftplus.com/faqs/devversion), so that if the disk_free_space() check fails, it doesn't treat that as 0Mb free - since it is reporting 35Mb free (as opposed to 0, which is what the devversion checks for), would this potentially fix the issue and would you recommend installing this as a solution?

David Anderson on "[Plugin: UpdraftPlus Backup and Restoration] You have less than 35 MB of free disk space on the disk"

$
0
0

Hi Emily,

That reply you've had from them isn't making much sense... that part of the code is both a) identical in the release and development versions and b) also doesn't trigger if the disk_free_space() check fails. Here's the code (in both versions - it's not had any changes for a long time):

if ($this->disk_space_check(1048576*35) === false) add_action('all_admin_notices', array($this, 'show_admin_warning_diskspace'));

        private function disk_space_check($space) {
                global $updraftplus;
                $updraft_dir = $updraftplus->backups_dir_location();
                $disk_free_space = @disk_free_space($updraft_dir);
                if ($disk_free_space == false) return -1;
                return ($disk_free_space > $space) ? true : false;
        }

The PHP manual - https://secure.php.net/disk_free_space - says that disk_free_space() "Returns the number of available bytes as a float or FALSE on failure." Note that the function disk_space_check() above returns -1 both if the disk reports zero bytes free, or a failure - and doesn't trigger the dashboard notice. The dashboard notice can only trigger if disk_free_space() returns something that's both greater than zero, and less than 35Mb.

Do you have a vaguely current version of UD installed?

emilygraham on "[Plugin: UpdraftPlus Backup and Restoration] You have less than 35 MB of free disk space on the disk"

$
0
0

Thanks David, i will go back to them with that. Yes it is the most up to date version, i only installed it (and WordPress) this week.


Hardeep Asrani on "Wordfence & UpDraftPlus"

$
0
0

That's a weird issue. Sorry but I don't have any other solution.

gertvankruiningen on "UpdraftPlus reporting "increasing resumption interval" after change in router"

$
0
0

Hi.
This is a question related to the UpdraftPlus plugin.

I have a server running at home and using UpdraftPlus for backups. These backups worked fine, until one day I made a mistake in the switch I have for my home network. I started setting up the switch so the website would become visible for the outside world, when I made a mistake and locked myself out from browsing into the admin pages of this Dlink switch.
Only option I had was factory reset for the Dlink.
After setting it up again with the help of my internet service provider, I can work again with Wordpress and continue adding posts and pages to my website.

I haven't finished making changes to the switch to make the website visible to the outside world, because I noticed two things going wrong:

1: The UpdraftPlus backups now show this "increasing resumption interval" message in log. And looking at the warning it gives me in the plugin: https://updraftplus.com/faqs/why-am-i-getting-warnings-about-my-site-not-having-enough-visitors/
it tells me to keep the page open where the plugin does its backup, and doing that makes it finish the whole backup nicely. But the backup takes more then an hour so its not really practical.
Were in the past I could just logout of Wordpress, or add context to my Wordpress site, and the backup would continue until finished.
2: The second piece of evidence, and I think its related is that the Jetpack plugin reported this message:
Jetpack could not contact WordPress.com: register_http_request_failed. This usually means something is incorrectly configured on your web host. Operation timed out after 15000 milliseconds with 0 bytes received

I have no idea where to start looking for clues on what to change. Might be in Wordpress, my Apache server, or my Dlink switch.
I just hope that you have seen this before, and can point me in the right direction.

Regards
Gert van Kruiningen

skygazer on "[Plugin: UpdraftPlus WordPress Backup Plugin] Updraft no longer does anything when I hit BackUp"

$
0
0

I had downloaded the free version a few months ago when I just started my site and it used to work fine. I'm not sure what has caused it to stop working. When I hit BACKUP it says "back up has begun" but it just sits there and the line below the "backing up" says for example: "Scheduling a resumption (3) after 300 seconds (1464121129) in case this run gets aborted" etc...

It does not make any progress at all no matter how long I leave it and come back. It used to work so great :(

I also tried to use the debug backup and I get a Error 520 (server error).

Very frustrating as it used to work so nicely before, help!

https://wordpress.org/plugins/updraftplus/

David Anderson on "[Plugin: UpdraftPlus WordPress Backup Plugin] Updraft no longer does anything when I hit BackUp"

$
0
0

Please can you paste a link to your most recent backup log file?

What's logged in your server PHP + Apache erorr logs at the time of the server error?

David

skygazer on "[Plugin: UpdraftPlus WordPress Backup Plugin] Updraft no longer does anything when I hit BackUp"

$
0
0

Hi David, thank for responding.

Okay here are some of the plugin messages:

"The current run is resumption number 9, and there was nothing useful done on the last run (last useful run: ) - will not schedule a further attempt until we see something useful happening this time (May 24 17:35:22)"

I'm not sure what's logged on the server but I'm using cloud flare and it just shows three stages (Me + Cloudflare + Server and only the server is in red with 520 error)

As for the plugin error log message, would it be okay if I copy pasted it to here?

jonharrisphotography on "[Plugin: UpdraftPlus WordPress Backup Plugin] Google Drive authorised but uploads failing"

$
0
0

Hi,

My backups are performing OK and mostly uploading to my Google Drive, but everytime the chunked upload reaches or nearly reaches 100%, my log gives me an error like this:

40572.215 (11) ERROR: Google Drive upload error (Google_Service_Exception): Error calling PUT https://www.googleapis.com/upload/drive/v2/files?uploadType=resumable&upload_id=AEnB2UoHTn9PQ4OW9j3vzN2wTV5e1AINDwFvxCalipLrVoVBhW4c57kIPPGYh2KSTo9QCam5IQG4AWaAmbC4oIY2Vt5v7nGoSA: (404) File not found: 0ByUVS_WT9nzHU1VLTDNaZG9uemM (line: 110, file: /home/cyclery/public_html/dev/wp-content/plugins/updraftplus/includes/Google/Http/REST.php)

Any suggestions?

Thanks!
Jon

https://wordpress.org/plugins/updraftplus/

skygazer on "[Plugin: UpdraftPlus WordPress Backup Plugin] Updraft no longer does anything when I hit BackUp"

$
0
0

Hey David, GREAT NEWS! Just literally a minute ago I logged in to my WP dash to prepare to do some work and I noticed an update alert for your plugin and so I clicked okay to update and it completed the update with no issues and then in a naive wishful kind of way I say to myself, "maybe the update has fixed the problem I was having" and VOILA!!! it seems to have done just that.

I don't now if it's just co-incidence but either way I'm happy it works again :)

I like your plugin so much that if my site stays afloat after a year and I'm financially able to, I will like to get your pro version.

I hope this good fortune of it working properly continues.

BEST BACKUP PLUGIN IMHO


DNutbourne on "[Plugin: UpdraftPlus WordPress Backup Plugin] Google Drive authorised but uploads failing"

$
0
0

Hi Jon,

Could you post a full copy of the backup log? It will be too long to post directly, but you can use an online service such as pastebin, and post the link here.

jonharrisphotography on "[Plugin: UpdraftPlus WordPress Backup Plugin] Google Drive authorised but uploads failing"

David Anderson on "[Plugin: UpdraftPlus WordPress Backup Plugin] Google Drive authorised but uploads failing"

$
0
0

Does this happen every time? Is it a site that's just been setup, or one that previously worked?

David

jonharrisphotography on "[Plugin: UpdraftPlus WordPress Backup Plugin] Google Drive authorised but uploads failing"

$
0
0

David Anderson, it does happen everytime.

The site was previously backing up to Google Drive fine, but since I moved the remote storage to a new Google Drive account (following the UpdraftPlus instructions) I've been having this issue.

Since the move to the new Google Drive account, I have also mirrored this site into a dev environment, which I also tried to setup to backup to the same location. Same issues.

thomyum on "cant find updraftplus folder in my google drive"

Viewing all 1086 articles
Browse latest View live