Home > PHP | eticket | ホームページ作成 > eticketのバグ修正

eticketのバグ修正

eticketのバグで基本設定のメール送信方法でSendmailとかSMTP ServerとPHP mail()があるのですが、PHP mail()を選択したりすると、バグで選択できなかったりします。
そこで下記のファイルの赤文字の部分をsmtpからmailへ修正します。
inc/admin_pref.html.php
の124行目付近

修正済み

<select name=”mail_method”>

<option value=”local”<?php echo htmlspecialchars($db_settings['mail_method']) == ‘local’ ? ‘ selected’ : ”; ?>>Sendmail</option>

<option value=”smtp” <?php echo htmlspecialchars($db_settings['mail_method']) == ‘smtp’ ? ‘ selected’ : ”; ?>>SMTP Server</option>

<option value=”mail” <?php echo htmlspecialchars($db_settings['mail_method']) == ‘mail‘ ? ‘ selected’ : ”; ?>>PHP mail()</option>

</select>

これで、普通に使えます!

Comments:0

Comment Form
Remember personal info

Trackbacks:0

Trackback URL for this entry
http://webcross01.net/archives/422.html/trackback
Listed below are links to weblogs that reference
eticketのバグ修正 from WEB in the morning

Home > PHP | eticket | ホームページ作成 > eticketのバグ修正

The Associates
Search
Feeds
Meta
一番大好きなドラマー後藤マスヒロ氏のホムペ

Return to page top