Viewing file: configuration.php (4.3 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("version.php");
$_Config_absolute_path = '/var/www/html/manage';
//$_Config_live_site = 'http://localhost/managev3'; // localhost
//$_Config_live_site = 'http://managepi.scphc.ac.th'; // sub-domain
$_Config_live_site = "http://".$_SERVER["SERVER_ADDR"]."/manage"; // server test
//$_Config_live_site = "http://localhost/manage"; // server test
$_Config_sitename = 'ระบบสารสนเทศเพื่อการบริหาร';
$_Config_shownoauth = '0';
$_Config_useractivation = '1';
$_Config_uniquemail = '1';
$_Config_usecaptcha = '0';
$_Config_offline_message = 'This site is down for maintenance.<br /> Please check back again soon.';
$_Config_error_message = 'This site is temporarily unavailable.<br /> Please notify the System Administrator';
$_Config_debug = '0';
$_Config_lifetime = '900';
$_Config_MetaDesc = 'This site uses project - Content Management System';
$_Config_MetaKeys = 'Management Information Systems, MIS, Management, Information, System, Manage, Info';
$_Config_MetaTitle = '1';
$_Config_MetaAuthor = '1';
$_Config_locale_debug = '0';
$_Config_locale_use_gettext = '0';
$_Config_locale = 'en';
$_Config_charset = 'utf-8';
$_Config_offset = '0';
$_Config_hideAuthor = '0';
$_Config_hideCreateDate = '0';
$_Config_hideModifyDate = '0';
$_Config_hidePdf = '0';
$_Config_hidePrint = '0';
$_Config_hideEmail = '0';
$_Config_enable_log_items = '0';
$_Config_enable_log_searches = '0';
$_Config_enable_stats = '0';
$_Config_sef = '0';
$_Config_vote = '0';
$_Config_gzip = '0';
$_Config_multipage_toc = '1';
$_Config_allowUserRegistration = '1';
$_Config_link_titles = '0';
$_Config_error_reporting = '-1';
$_Config_register_globals = '1';
$_Config_list_limit = '50';
$_Config_caching = '0';
//$_Config_cachepath = '/home/emanage/cache'; // localhost
$_Config_cachepath = 'http://emanage.scphc.ac.th/cache'; // server
$_Config_cachetime = '900';
$_Config_mailer = 'mail';
$_Config_mailfrom = 'comsit_4@hotmail.com';
$_Config_fromname = 'MIS!';
$_Config_sendmail = '/usr/sbin/sendmail';
$_Config_smtpauth = '0';
$_Config_smtpuser = '';
$_Config_smtppass = '';
$_Config_smtphost = 'localhost';
$_Config_back_button = '0';
$_Config_item_navigation = '0';
$_Config_secret = 'D5HHHjWy80rf0dR8';
$_Config_pagetitles = '1';
$_Config_readmore = '1';
$_Config_hits = '1';
$_Config_icons = '1';
$_Config_favicon = 'favicon.ico';
$_Config_fileperms = '';
$_Config_dirperms = '';
$_Config_helpurl = 'http://docs.mambo-foundation.org';
$_Config_mbf_content = '0';
setlocale (LC_TIME, $_Config_locale);
//-- MIS Version --//
$_Config_version = $MISVersion;
//--- paging
$_Config_limit = '10';
$_Config_scroll = '20';
//-- DocNo. Config --//
$docNo = "สธ.0203.0919/" ; // ตั้งค่าเลขที่หนังสือของหน่วยงาน
//-- Personal picture path --//
$personalPicPath = "../personal_pic/"; //Path เก็บรูปภาพบุคลากร
$defaultPicFile = "lodo.gif"; //ค่าตั้งต้นไฟล์รูปภาพบุคลากร(ใช้ในกรณีการเพิ่มบุคลากรใหม่)
//-- Doc Path --//
$PlanPicPath = "../Plan_pic/"; //Path เก็บเอกสารข้อมูลแผนการสอน
$AbsentPicPath = "../Absent_pic/"; //Path เก็บเอกสารใบลา
$ResearchPicPath = "../Research_pic/"; //Path เก็บเอกสารงานวิจัย
$QAPicPath = "../Qa_pic/"; //Path เก็บเอกสารงานประกันุณภาพ
$ManPicPath ="../Man_pic"; //Path รูปวัสดุ
$EduPicPath ="../Edu_pic/" ; // Path วิชาการ
//-- NUSOAP Parameter ----//
$_Config_college_code = "21"; // IDENTIFY CLIENT
$_Config_server_path = "http://118.174.12.15/manage/nusoap/server.php"; // PATH TO PI SOAP LIB
//-- Curl Parameter ----//
$_Config_curl_ip = "118.174.12.15";
$_Config_curl_path = "http://$_Config_curl_ip/manage/Dev/devCurl.php"; // PATH TO PI CURL
//-- Curl Parameter ----//
$_Config_curl_ip = "118.174.12.15";
$_Config_curl_path = "http://$_Config_curl_ip/manage/Research/resCurl.php"; // PATH TO PI CURL
//-- Research Curl Parameter ----//
$_Config_research_curl_ip = "118.174.12.15";
$_Config_research_curl_path = "http://$_Config_curl_ip/manage/Research/resCurl.php"; // PATH TO RESEARCH CURL
//-- MIS Database ----//
$_Config_MISDBHost = "localhost";
$_Config_MISDBUser = "root";
$_Config_MISDBPass = "@14012518";
$_Config_MISDBName = "manage";
//-- REG Database ----//
$_Config_REGDBHost = "localhost";
$_Config_REGDBUser = "root";
$_Config_REGDBPass = "@14012518";
$_Config_REGDBName = "regist_view";
?>
|