Server IP : 103.119.228.120 / Your IP : 3.140.198.201 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/smf20/ |
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 = '[[site_name]]'; # The name of your forum. $language = '[[language]]'; # The default language file set for the forum. $boardurl = '[[softurl]]'; # URL to your forum's folder. (without the trailing /!) $webmaster_email = '[[board_email]]'; # Email address to send emails from. (like noreply@yourdomain.com.) $cookiename = '[[cookie_name]]'; # Name of the cookie to set for authentication. ########## Database Info ########## $db_type = 'mysql'; $db_server = '[[softdbhost]]'; $db_name = '[[softdb]]'; $db_user = '[[softdbuser]]'; $db_passwd = '[[softdbpass]]'; $ssi_db_user = ''; $ssi_db_passwd = ''; $db_prefix = '[[dbprefix]]'; $db_persist = 0; $db_error_send = 1; ########## Directories/Files ########## # Note: These directories do not have to be changed unless you move things. $boarddir = '[[softpath]]'; # The absolute path to the forum's folder. (not just '.'!) $sourcedir = '[[softpath]]/Sources'; # Path to the Sources directory. $cachedir = '[[softpath]]/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'; $image_proxy_secret = '[[image_proxy_secret]]'; $image_proxy_maxsize = '5190'; $image_proxy_enabled = '0'; $auth_secret = '[[auth_secret]]'; $db_character_set = 'utf8'; ?>