Hello Arta-
Thanks for the question, and thanks for using the Total Upkeep WordPress backup plugin.
That’s a pretty unusual error. The disk_total_space()
function is a part of PHP’s core functionality and it looks like you’re on PHP 8.0.8 which is up-to-date. disk_total_space()
isn’t even an optional Apache module, it should be in the main PHP package.
Have you been using the plugin successfully before this error, or is it newly installed?
One thing we might want to do a simple sanity check, like creating a small PHP file and executing it manually from the command line. A file like this, named disk-check.php
for example:
<?php echo disk_total_space( __DIR__ ); ?>
And then execute it from the command line, with a command like:
$ php ./disk-check.php
236080816128
In the example I used, I found I have 236GB total space in the directory I created the file in.