2008-06-12から1日間の記事一覧

URL から index.php を除く

すっかり忘れていたので、備忘録として残す。 RewriteEngine on RewriteBase /myapplication/ RewriteCond $1 !^(index\.php|images|robots\.txt) RewriteRule ^(.*)$ index.php/$1 [L] .htaccess ファイルを作成し、Kohana のトップディレクトリに配置する…

my.cnf の InnoDB の設定を変更してエラーが発生した場合

MySQL は普通に起動した。 phpMyAdmin から InnoDB で作成したテーブルにアクセスをすると、下記のエラーが表示された。 #1033 - Incorrect information in file: ./ InnoDB に係わる設定の内容は次のとおり。 # less /etc/my.cnf # Uncomment the following…