Hi there,
indeed, there is a bug and we already have a solution for this.
File: func_cache_control.php
Replace the lines 27, 34, and 45 as follows:
Code (PHP):$percent = ( int ) round ( $cache_memory_address / filesize ( "../log/logdb_backup.dta" ) * 100 );
with this line:
Code (PHP):$percent = ( int ) round ( (int) $cache_memory_address / filesize ( "../log/logdb_backup.dta" ) * 100 );
This patch will be part of our next update.
Thanks for your notice and best regards
Reimar