さくらインターネットでの運用(7)config.php の設定
だいたい、これで、一通り、インストール編は、
終了かと(続くのかよ?! 笑)。
先に、config.phpの最低限必要な部分を
変更しましたが、その他の部分も、ちょっと変更しておきましょう。
1.メンバーの新規登録をさせない
$_CONF['disable_new_user_registration'] = true;
2.自分でアカウントの削除をさせない
$_CONF['allow_account_delete'] = 0;
とりあえず、それだけ。
あとは、フォーラムの設定で、
「投稿するためにはアカウントの登録を必要とする」 はい
にしておこうかな。
---*---*---*---*---*---
8月24日追加 config.php
$_CONF['submitloginrequired'] = 1;
$_CONF['commentsloginrequired'] = 1;
$_CONF['calendarloginrequired'] = 1;
$_CONF['statsloginrequired'] = 1;
$_CONF['searchloginrequired'] = 0;
$_CONF['profileloginrequired'] = 1;
$_CONF['emailuserloginrequired'] = 1;
$_CONF['emailstoryloginrequired'] = 1;
$_CONF['directoryloginrequired'] = 0;
http://www.geeklog.jp/docs/config.html 参照
---*---*---*---*---*---
8月25日追加
$_CONF['show_fullname'] = 1;
$_CONF['theme'] = 'test'; // default theme
---*---*---*---*---*---
8月25日さらに追加
confing.php に、日本語訳の間違いを発見しました。
たぶん、ずれてるんだと思うんですけど。
// hides the list of authors from the preferences
//@@@@@ Who's Online に表示される名前を本名にするなら1ユーザー名にするなら0
$_CONF['hide_author_exclusion'] = 0;
// Used by COM_displayName to return Members's Full Name else username (1 = yes, 0 = no)
$_CONF['show_fullname'] = 0;
Who's Online に表示される名前を~というのは、
show_fullname です。日本語訳が、ずれていると
思われます。
