This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # 選用SMTP模式 | |
| $g_phpMailer_method = PHPMAILER_METHOD_SMTP; | |
| $g_smtp_host = 'smtp.gmail.com'; | |
| $g_smtp_username = '帳號@gmail.com'; | |
| $g_smtp_password = '密碼'; | |
| $g_smtp_port = 465; | |
| $g_smtp_connection_mode = 'ssl'; | |
| ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| # 時區設定,不加首頁會有warning | |
| date_default_timezone_set("Asia/Taipei"); | |
| # 設定語系為繁體中文 | |
| $g_default_language = "chinese_traditional"; | |
| # 設定是否讓人註冊帳號(系統使用者都加入帳號以後可以改成OFF) | |
| $g_allow_signup = ON; | |
| ?> |