|
From: Rene R. <re...@gr...> - 2003-12-05 09:09:59
|
> Installed BOBS on RH9 and backed up largest SMB share fine. When
> attempting a test restore of a 25kb file, response was:
> Error: not enough free diskspace on remote server. Error: 100MB plus
> the size of the file you wish to restore is needed.
>
> I've got 900MB free on the server and share in question.
>
> Thanks for your help,
> Michael...
In inc/class_restore.php find the line:
if ( ($serv_free_size/1024) > (($filesize/1024/1024)+100) ) {
and try replacing it with this:
if ( ($serv_free_size/1024) > ($filesize/1024/1024) ) {
or this if the above still fails:
if ( true ) {
Sorry, I'm too pressed for time to get further into it. Please file a bug
report on the project page. If you do, please also state that "4GB
problems will mess the filesize calculation. Check if where the 32 bit
limitation is, php or dba." (just a reminder to me)
Cheers
Rene
Mail again if this doesn't help.
|