Just to update IA-Outdoors,The problem was simple...I was missing some of the formula in the database.php file
if (is_array($backups) AND $index > 0) { krsort($backups); $backups = array_slice ($backups, 0, 10); reset($backups); The above is what should have been there but here is what I was missing... $backups = array_slice ($backups, 0, 10); After I added it, it worked like it should. thanks for the help John, http://jdaw.net http://tesn.net http://slpff.org