Files
uf2/config.php
PioDer a542813c8f implemented buildURL() function (and fixed redirecting on https page)
added comments block (file description) in each PHP file
2015-02-15 14:33:02 +01:00

21 lines
442 B
PHP

<?php
//uForum config
//don't modifiy this file!
ini_set('display_errors', '1');
define('DB_HOST','localhost');
define('DB_USER','root');
define('DB_PASSWD','');
define('DB_NAME','uf2');
define('DB_PREFIX','uf_');
define('VERSION','2.0.0');
define('UF_INSTALLED',true);
define('FORUM_DOMAIN', 'localhost');
define('FORUM_PATH', '/uf2');
define('HTTP_PORT', 81);
define('HTTPS_PORT', 443);
define('USE_HTTPS', true);
?>