49 lines
2.7 KiB
PHP
49 lines
2.7 KiB
PHP
<?php
|
|
/******************************************************************************
|
|
* Settings.php *
|
|
*******************************************************************************
|
|
* SMF: Simple Machines Forum *
|
|
* Open-Source Project Inspired by Zef Hemel (zef@zefhemel.com) *
|
|
* =========================================================================== *
|
|
* Software Version: SMF 1.0 *
|
|
*******************************************************************************
|
|
* This program is free software; you may redistribute it and/or modify it *
|
|
* under the terms of the provided license as published by Lewis Media. *
|
|
* *
|
|
* This program is distributed in the hope that it is and will be useful, *
|
|
* but WITHOUT ANY WARRANTIES; without even any implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
|
* *
|
|
* See the "license.txt" file for details of the Simple Machines license. *
|
|
* The latest version can always be found at http://www.simplemachines.org. *
|
|
******************************************************************************/
|
|
|
|
########## Maintenance ##########
|
|
# Note: If $maintenance is set to 2, the forum will be unusable! Change it to 0 to fix it.
|
|
$maintenance = 0; # Set to 1 to enable Maintenance Mode, 2 to make the forum untouchable. (you'll have to make it 0 again manually!)
|
|
$mtitle = 'Извините, форум временно закрыт'; # Title for the Maintenance Mode message.
|
|
$mmessage = 'Мы тут шаманим немного. Скоро всё будет. Быстрее, лучше и всё такое'; # Description of why the forum is in maintenance mode.
|
|
|
|
########## Forum Info ##########
|
|
$mbname = 'www.rock.ru'; # The name of your forum.
|
|
$language = 'russian'; # The default language file set for the forum.
|
|
$boardurl = 'http://rock.ru/forum'; # URL to your forum's folder. (without the trailing /!)
|
|
$boarddir = '/var/www/rock/forum';
|
|
$sourcedir = '/var/www/rock/forum/Sources';
|
|
$webmaster_email = 'noreply@rock.ru'; # Email address to send emails from. (like noreply@yourdomain.com.)
|
|
$cookiename = 'SMFCookie10'; # Name of the cookie to set for authentication.
|
|
|
|
########## Database Info ##########
|
|
#$db_server = '127.0.0.1:3306';
|
|
$db_server = 'localhost';
|
|
$db_name = 'rock';
|
|
$db_user = 'rock';
|
|
$db_passwd = 'nla3YjQ0pL';
|
|
$db_prefix = 'smf_';
|
|
$db_persist = 0;
|
|
$db_error_send = 1;
|
|
|
|
|
|
$db_last_error = 1300052612;
|
|
?>
|