diff --git a/assets/php/config-FER_SURFACE.php b/assets/php/config-FER_SURFACE.php deleted file mode 100644 index cf47986..0000000 --- a/assets/php/config-FER_SURFACE.php +++ /dev/null @@ -1,61 +0,0 @@ -get_prefix(); - - /** - * Initialize the application: - */ - include_once($prefix.'assets/php/dao.php'); - require_once('aplication.php'); - $app = Aplicacion::getSingleton(); - $app->init(array('host'=>BD_HOST, 'bd'=>BD_NAME, 'user'=>BD_USER, 'pass'=>BD_PASS)); - - /** - * @see http://php.net/manual/en/function.register-shutdown-function.php - * @see http://php.net/manual/en/language.types.callable.php - */ - register_shutdown_function(array($app, 'shutdown')); - - //Depuración (BORRAR): - ini_set('display_errors', 1); - ini_set('display_startup_errors', 1); - error_reporting(E_ALL); -?>