From: Joe Z. <joe...@za...> - 2005-04-21 16:32:12
|
James W. Beauchamp wrote: > Thanks Joe. > I'll pull down and install the cvs version. I'll also look into the > rsynch bug you spoke of. When I ran the backup.php by hand I saw this > error message a number of times for a bunch of files: > > <b>Warning</b>: stat failed for > /backup/bobsdata/incremental/main/webbackup/acimsdb.zip.2005.110 > (errno=75 - Value too large for defined data type) in > <b>/backup/bobsdata/current/process/cmd/cmd.3424.php</b> on line > <b>38</b><br /> > > > These files are about 1GB in size each. > > Any ideas on this?? > > Thanks > James I'm aware of that one. It comes from backup_create_databases.php. lstat() in php gets that error when a file size is too big to fit in the return value for size. It doesn't harm the backup, but it probably affects the restore information for that file. That's on my todo list. |