source: branches/comu-utf8/data/conf/core.php @ 15099

Revision 15099, 960 bytes checked in by Yammy, 17 years ago (diff)

UTF-8変換済みファイルインポート
1.3.4ベース

Line 
1<?php
2/*
3 * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved.
4 *
5 * http://www.lockon.co.jp/
6 */
7
8///////////////////////////////////////////////////////////
9/*
10    サイトごとに必ず変更する設定
11*/
12///////////////////////////////////////////////////////////
13
14// DBエラーメール送信先
15define ("DB_ERROR_MAIL_TO", "error-ml@lockon.co.jp");
16
17// DBエラーメール件名
18define ("DB_ERROR_MAIL_SUBJECT", "OS_TEST_ERROR");
19
20if(defined('DB_TYPE') && defined('DB_USER') && defined('DB_PASSWORD') && defined('DB_SERVER') && defined('DB_PORT') && defined('DB_NAME')) {
21    // サイト用DB
22    define ("DEFAULT_DSN", DB_TYPE . "://" . DB_USER . ":" . DB_PASSWORD . "@" . DB_SERVER . ":" .DB_PORT . "/" . DB_NAME);
23}
24
25// 郵便番号専用DB
26define ("ZIP_DSN", DEFAULT_DSN);
27
28define ("USER_URL", SITE_URL."user_data/"); // ユーザー作成ページ等
29
30// 認証用 magic
31define ("AUTH_MAGIC", "31eafcbd7a81d7b401a7fdc12bba047c02d1fae6");
32
33?>
Note: See TracBrowser for help on using the repository browser.