Backup does not work
Status: Beta
Brought to you by:
linuxtuxie
I can´t say where the problem is, Postgresql or
personalbackup.
I get in the log this entry:
Nov 16 14:34:50 personalbackupc[9193]: Unable to execute dml operation: UPDATE shares SET progress = CEIL(?) WHERE id = ? Error: FEHLER: ungültige Eingabesyntax für Typ double precision: »14,2857142857143«
Is there something wrong in postgres or in personalbackup?
psql (PostgreSQL) 8.1.5
PersonalBackup v1.05
Thanx for help..
Logged In: NO
I changed in personalbackupc this:
$pct = 100 / $backup_file_count * $file_count;
to
$pct = CEIL(100 / $backup_file_count * $file_count);
Now it seems to run.
Perhaps my postgresql had a problem with ceil and 14,28...
It should have been 14.28....