Server IP : 103.119.228.120 / Your IP : 3.145.59.244 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/cftp/ |
Upload File : |
<?php /** * ProjectSend personal configuration file * * This file contains the database connection information, the language * definition, the maximum allowed filesize for uploads and the encoding * that will be used on the sent e-mails (for new client, new user and * new file). * * It must be renamed to sys.config.php for ProjectSend to recognize * it, and the database information must be completed before installing * the software. * The filesize value and the character encoding can be changed at anytime. * * When downloading a new ProjectSend version, this file will not be * overwritten, as the version included by default is named * sys.config.sample.php * * @package ProjectSend * */ /** * Enter your database connection information here * If you have doubts about this values, consult your web hosting provider. */ /** * Database driver to use with PDO. * Possible options: mysql, mssql */ define('DB_DRIVER', 'mysql'); /** Database name */ define('DB_NAME', '[[softdb]]'); /** Database host (in most cases it's localhost) */ define('DB_HOST', '[[softdbhost]]'); /** Database username (must be assigned to the database) */ define('DB_USER', '[[softdbuser]]'); /** Database password */ define('DB_PASSWORD', '[[softdbpass]]'); /** * Prefix for the tables. Set to something other than tbl_ for increased * security onr in case you want more than 1 installations on the same database. */ define('TABLES_PREFIX', 'tbl_'); /* * Global site language definition * * For this setting to work on the back-end (log-in, administration, * and the installation pages, and the e-mails sent by the system), a file named * x.mo (where x is the value that you define here) must exist on the folder * /lang. * * The uploader language strings are loaded from the file x.mo (see above) that * is located on the folder /includes/plupload/js/i18n/ * * If you want to apply this setting to the client's file lists, you must * have a file named x.mo (see above) on your selected template folder * (eg: /templates/default/lang). * * English language files are included by default. * * This setting can be changed at anytime and the language will be applied * immediately. * */ define('SITE_LANG','en'); /** * Define a maximum size (in mb.) that is allowed on each file to be uploaded. */ define('MAX_FILESIZE','2048'); /** * Encoding to use on the e-mails sent to new clients, users, files, etc. */ define('EMAIL_ENCODING', 'utf-8'); /** * DEBUG constant effects: * - Changes the error_reporting php value */ define('DEBUG', false);