LetoDMS Community Forum
(Resolved) Error in Backup tools "A non well formed numeric value encountered - Printable Version

+- LetoDMS Community Forum (https://community.letodms.com)
+-- Forum: LetoDMS Support (https://community.letodms.com/forumdisplay.php?fid=4)
+--- Forum: Bugs/Errors (https://community.letodms.com/forumdisplay.php?fid=11)
+--- Thread: (Resolved) Error in Backup tools "A non well formed numeric value encountered (/showthread.php?tid=269)



(Resolved) Error in Backup tools "A non well formed numeric value encountered - Daniel - 03-26-2011

I got the following message after running backup.

"A non well formed numeric value encountered in /volume1/web/docu/inc/inc.Utils.php"

As i was not able to find an entry related to the file mentioned in the known bugs i wonder if this is a new one or caused by another bug.

Thanks
Daniel


RE: Error in Backup tools "A non well formed numeric value encountered - Doudoux - 03-26-2011

Hi

In "out.BackupTools.php" file change line 118 and 173
PHP Code:
print "<td>".getLongReadableDate($entry)."</td>\n"
to
PHP Code:
print "<td>".getLongReadableDate(filemtime($settings->_contentDir.$entry))."</td>\n"

Doudoux


RE: Error in Backup tools "A non well formed numeric value encountered - Daniel - 03-27-2011

This fixed it, message gone.

Thanks