File: /home/api/public_html/charlottesville/php/config.php
<?php
date_default_timezone_set ( "America/New_York" );
ini_set( "max_execution_time", 60 );
ini_set( "include_path", ini_get( "include_path" ) . ":/home/api/public_html/php:" . substr( __FILE__, 0, strrpos(__FILE__, "/") ) );
spl_autoload_register( function ( $sClass ) { include( "class." . $sClass . ".php" ); } );
require( "config.db.php" );
$mysqli->select_db( "avaxe_charlottesville" );
$oMLS = new oMLS();
$oMLS->aXlate = [ "MlsNum" => "L_ListingID" ];
global $oMLS;
$oAuth = new Authenticate( __FILE__ );
global $oAuth;