
さくらのレンタルサーバ・スタンダードで動作しました。
sakuraはDBサーバーが別なのを除けば、ほとんどマニュアル通りでした。
ちょっとつまずいた点、
サーチエンジンフレンドリーの設定をOnにしたときに.htaccess設定をしなければならないのですが、Sakuraでは、Optionsやphp-valueを利用できないので困りました。(参考:.htaccess - 設定例と制限事項
http://faq.sakura.ne.jp/wiki/wiki.cgi?.htaccess)
試行錯誤して、以下の設定で動きました。
sakuraのディレクトリ構成は
/home/ユーザー名/www/バーチャルドメイン名/joomla(インストールディレクトリ)
のようになっています。
以下のphp.iniをテキストファイルで新規作成>上記wwwディレクトリにアップ
php.ini
------------------------ここから
default_charset UTF-8
mbstring.language Japanese
mbstring.internal_encoding UTF-8
mbstring.encoding_translation OFF
mbstring.http_input auto
mbstring.http_output pass
ここまで------------------------
joomlaインストールディレクトリにあるhtaccess.txtを以下の内容に書き換え.htaccessにリネーム。
.htaccess
------------------------ここから
##
# @version $Id: htaccess.txt 1005 2005-11-13 17:33:59Z stingrey $
# @package Joomla
# @copyright Copyright (C) 2005 Open Source Matters. All rights reserved.
# @license
http://www.gnu.org/copyleft/gpl.html GNU/GPL
# Joomla! is Free Software
##
# Options +FollowSymLinks
#(↑コメントアウト)
#
# mod_rewrite in use
#
RewriteEngine On
# Uncomment following line if your webserver's URL
# is not directly related to physical file paths.
# Update YourJoomlaDirectory (just / for root)
RewriteBase /joomla
#
# Rules
#
RewriteCond %{REQUEST_FILENAME} !\.(jpg|jpeg|gif|png|css|js|pl|txt)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php
# (↓以下をコメントアウト)
#jp
#php_value default_charset UTF-8
#php_value mbstring.language Japanese
#php_value mbstring.internal_encoding UTF-8
#php_value mbstring.encoding_translation OFF
#php_value mbstring.http_input auto
#php_value mbstring.http_output pass
##php_value session.save_path './tmp'
ここまで------------------------
私もPHP等さっぱりわかりませんが、同じことで困る人もいるかも・・・ということで。
とりいそぎ、メモでした。