<?php
/*-----------------------------------------------------------------------
| Phoenix FS v. 1.0.1 |
| Created by Gian_PHP |
| Based on PHP & MySQL |
-------------------------------------------------------------------------
| This program is free software: you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation, either version 3 of the License, or |
| any later version. |
| |
| This program is distributed in the hope that it will be useful, |
| but WITHOUT ANY WARRANTY; without even the implied warranty of |
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| GNU General Public License for more details. |
| |
| GNU GPL License: http://www.gnu.org/licenses/gpl.txt |
-------------------------------------------------------------------------
| config.inc.php |
-----------------------------------------------------------------------*/
if(!defined('ACCESS')) {
die('Access Denied');
}
// email info
define('ADMIN_MAIL', 'hide@address.com');
// mysql info
define('DB_HOST', 'localhost'); // mysql host name (usually localhost)
define('DB_USER', 'your_db_user'); // mysql username
define('DB_PASS', 'your_db_pass'); // mysql user password
define('DB_NAME', 'your_db_name'); // mysql database name
define('DB_PREF', 'pfs_'); // mysql table prefix
// main folders
@define('SCRIPT_INC_DIR', SCRIPT_BASE_PATH.'/includes/');
@define('SCRIPT_ADMIN_DIR', SCRIPT_BASE_PATH.'/manage/');
@define('SCRIPT_STYLES_DIR', SCRIPT_BASE_PATH.'/styles/');
?>