| Revision 16100,
960 bytes
checked in by adachi, 19 years ago
(diff) |
|
set property
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Id
-
Property svn:mime-type set to
text/x-httpd-php; charset=UTF-8
|
| 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エラーメール送信先 |
|---|
| 15 | define ("DB_ERROR_MAIL_TO", "[email protected]"); |
|---|
| 16 | |
|---|
| 17 | // DBエラーメール件名 |
|---|
| 18 | define ("DB_ERROR_MAIL_SUBJECT", "OS_TEST_ERROR"); |
|---|
| 19 | |
|---|
| 20 | if(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 |
|---|
| 26 | define ("ZIP_DSN", DEFAULT_DSN); |
|---|
| 27 | |
|---|
| 28 | define ("USER_URL", SITE_URL."user_data/"); // ユーザー作成ページ等 |
|---|
| 29 | |
|---|
| 30 | // 認証用 magic |
|---|
| 31 | define ("AUTH_MAGIC", "31eafcbd7a81d7b401a7fdc12bba047c02d1fae6"); |
|---|
| 32 | |
|---|
| 33 | ?> |
|---|
Note: See
TracBrowser
for help on using the repository browser.