https://www.icyphoenix.com/viewtopic.php?f=35&t=8595&p=56028#p56028 ----------------------------------- Informpro Tue 31 Jul, 2012 00:19 Fix Emergency.php ----------------------------------- Hey, I don't know if this file is still used but here's ow to fix it : OPEN[code]emergency.php[/code] FIND[code]define('IN_ICYPHOENIX', true);[/code] AFTER, ADD[code]define('PHP_EXT', substr(strrchr(__FILE__, '.'), 1));[/code] FIND[code]include(IP_ROOT_PATH . 'includes/db/' . $dbms . '.' . PHP_EXT);[/code] REPLACE WITH[code]include(IP_ROOT_PATH . 'includes/db.' . PHP_EXT);[/code] (please excuse if there's any mistake, I'm on my phone)