본문 바로가기
카테고리 없음

Text Cube 에서의 domain 처리

by jjerryhan 2008. 5. 13.
반응형
설치경로상에 config.php 를 참조.
--------------------------------------------
<?php
ini_set('display_errors', 'off');
$database['server'] = 'localhost';
$database['database'] = '?';
$database['username'] = '?';
$database['password'] = '?';
$database['prefix'] = 'tc_';
$service['type'] = 'single';
$service['domain'] = '127.0.0.1';
$service['path'] = '/tc';
$service['skin'] = 'coolant';
$service['favicon_daily_traffic'] = 10; // 10MB
//$serviceURL = 'http://127.0.0.1/tc' ; // for path of Skin, plugin and etc.
//$service['reader'] = true; // Use Textcube reader. You can set it to false if you do not use Textcube reader, and want to decrease DB load.
//$service['debugmode'] = true; // uncomment for debugging, e.g. displaying DB Query or Session info
//$service['pagecache'] = false; // uncomment if you want to disable page cache feature.
//$service['debug_session_dump'] = true; // session info debuging.
//$service['debug_rewrite_module'] = true; // rewrite handling module debuging.
//$service['session_cookie_path'] = $service['path']; // for avoiding spoiling other textcube's session id sharing root.
//$service['allowBlogVisibilitySetting'] = true; // Allow service users to change blog visibility.
?>
------------------------------------------------------------