Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /AppServ/www/app/webroot/news/forum/ |
Upload File : |
<?php /** * Simple Machines Forum (SMF) * * @package SMF * @author Simple Machines http://www.simplemachines.org * @copyright 2011 Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * * @version 2.0 */ ########## 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 = 'Maintenance Mode'; # Title for the Maintenance Mode message. $mmessage = 'Okay faithful users...we\'re attempting to restore an older backup of the database...news will be posted once we\'re back!'; # Description of why the forum is in maintenance mode. ########## Forum Info ########## $mbname = 'My Community'; # The name of your forum. $language = 'english'; # The default language file set for the forum. $boardurl = 'http://itsc.co.th/dev/nhrc/forum'; # URL to your forum's folder. (without the trailing /!) $webmaster_email = 'bunyiamkadphab@gmail.com'; # Email address to send emails from. (like noreply@yourdomain.com.) $cookiename = 'SMFCookie400'; # Name of the cookie to set for authentication. ########## Database Info ########## $db_type = 'mysql'; $db_server = 'localhost'; $db_name = 'itsc_nhrc'; $db_user = 'itsc_nhrc'; $db_passwd = 'p@$$w0rd'; $ssi_db_user = ''; $ssi_db_passwd = ''; $db_prefix = 'smf_'; $db_persist = 0; $db_error_send = 1; ########## Directories/Files ########## # Note: These directories do not have to be changed unless you move things. $boarddir = '/var/www/clients/client113/web129/web/dev/nhrc/forum'; # The absolute path to the forum's folder. (not just '.'!) $sourcedir = '/var/www/clients/client113/web129/web/dev/nhrc/forum/Sources'; # Path to the Sources directory. $cachedir = '/var/www/clients/client113/web129/web/dev/nhrc/forum/cache'; # Path to the cache directory. ########## Error-Catching ########## # Note: You shouldn't touch these settings. $db_last_error = 0; # Make sure the paths are correct... at least try to fix them. if (!file_exists($boarddir) && file_exists(dirname(__FILE__) . '/agreement.txt')) $boarddir = dirname(__FILE__); if (!file_exists($sourcedir) && file_exists($boarddir . '/Sources')) $sourcedir = $boarddir . '/Sources'; if (!file_exists($cachedir) && file_exists($boarddir . '/cache')) $cachedir = $boarddir . '/cache'; $db_character_set = 'utf8'; ?>