安裝紀錄:
可參考: http://plog.hlps.tcc.edu.tw/plog/post/1/2691
- .htaccess 加入 DirectoryIndex summary.php
- 新註冊的中文網誌名稱為亂碼的解決方法
修改 class/data/textfilter.class.php
第 119行
return htmlentities( $string ); 改成 return htmlspecialchars( $string ); - 在註冊時所寄出的註冊確認信的標題會出現亂碼的解決方法
1.修改 /class/mail/emailmessage.class.php
38行
$this->_charset = 'iso-8859-1'; 改成
$this->_charset = "utf-8";
2.修改 /class/mail/phpmailer/class.phpmailer.php
第36行
var $CharSet= "iso-8859-1"; 改成
var $CharSet= "utf-8"; - 歡迎文字: /locale/admin/locale_zh_TW.php 裡面找到 $messages['summary_welcome_paragraph']修改即可
- 修改templates/summary/agreement.template 註冊條款
- 修改styles/summary.css
裡面的textarea , line-height改為1.5em, height改為16em (加大條款顯示區)