Mini Shell
<?php
// DEBUG
error_reporting(0);
// URL
define('URL_APP', 'https://www.emypro.com.br/');
define('URL_ADMIN', 'https://www.emypro.com.br/admin/');
define('URL_IMG', 'https://www.emypro.com.br/img/');
// DIR
define('DIR_APP', __DIR__.'/../');
define('DIR_CORE', DIR_APP.'admin/core/');
define('DIR_ADMIN', DIR_APP.'admin/');
define('DIR_IMG', DIR_APP.'img/');
// DB
/*
define('DB_HOST', '189.1.1.158');
define('DB_NAME', 'emypro_site');
define('DB_USER', 'emypro_site');
define('DB_PASS', 'emyp5369');
*/
define('DB_HOST', 'mysql06-farm88.kinghost.net');
define('DB_NAME', 'emypro');
define('DB_USER', 'emypro_add1');
define('DB_PASS', 'Recife2020');
// APP
define('APP_SALT', 'deb0a885505c0f54d9e6a82b31b45b953391336a');
// Load classes
function __autoload($class)
{
$file = DIR_CORE . $class .'.php';
if(file_exists($file)) {
require_once($file);
}
}
Zerion Mini Shell 1.0