Installland.to
提供: GeeklogJpWiki
land.to
- UTF-8で運用できます。
- 非公開領域使えます。
- 公開領域に以下を記述した .htaccess を設置します。
<IfModule mod_php4.c> php_value default_charset UTF-8 php_value mbstring.internal_encoding UTF-8 php_flag mbstring.encoding_translation On </IfModule>
- public_html/fckeditor に以下を記述した .htaccess を設置する。
LayoutIgnoreURI *.html LayoutIgnoreURI *.php
- PHPブロック:提供バージョンによっては、サイトカレンダの曜日が文字化けする場合があります。その場合、次のファイルを修正してください。
public_html/mycal/main.php
修正前:
for ($i = 0; $i < 7; $i++)
{
$BlockDisplay .= "<td align='center' valign='top' width='14%' class='mycalTitle'><font size='1'><b>"
. ucfirst(strftime("%a", $firstdaytodisplay + ($i * _MYCAL_DAY_)))
. "</b></font></td>";
}
修正後:
$wdays = array('日', '月', '火', '水', '木', '金', '土');
for ($i = 0; $i < 7; $i++)
{
$BlockDisplay .= "<td align='center' valign='top' width='14%' class='mycalTitle'><font size='1'><b>"
. $wdays[$i]
. "</b></font></td>";
}
掲示板を参考