31 lines
688 B
PHP
31 lines
688 B
PHP
|
<?php
|
||
|
|
||
|
// Change this in a live environment!
|
||
|
error_reporting(-1);
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Display Debug backtrace
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| If set to TRUE, a backtrace will be displayed along with php errors.
|
||
|
|
|
||
|
*/
|
||
|
define('SHOW_DEBUG_BACKTRACE', TRUE);
|
||
|
|
||
|
|
||
|
// Set the default paths
|
||
|
define('SYS_PATH', __DIR__.'/sys/');
|
||
|
define('MOD_PATH', __DIR__.'/modules/');
|
||
|
define('APP_PATH', __DIR__.'/app/');
|
||
|
|
||
|
// Require the most important files
|
||
|
require(SYS_PATH . "miniMVC.php");
|
||
|
require(SYS_PATH . 'db.php');
|
||
|
|
||
|
$MM =& get_instance();
|
||
|
|
||
|
$MM->db = new MM_db('pgsql');
|
||
|
|
||
|
echo $MM->__toString();
|