MTインストール時のmt-staticが見つからない問題について
MTのインストール時にこんな画面がでて先に進めなくなったのでなんぞやと思って調べたんですが、どうやらサーバー側からHTTPリクエストでディレクトリがあるかを確かめているらしく、basic認証かけてたのが問題でした。ちょっとはまった。
AuthUserFile /path/to/.htpasswd
AuthGroupFile /dev/null
AuthName "Please enter your ID and password"
AuthType Basic
require valid-user
Satisfy any
order deny,allow
allow from 127.0.0.1
deny from all
hostsに設定書く必要もあるかも。
127.0.0.1 mydomain
- Prev Entry:sfFormのformtterで出力結果のHTMLを変更する
- Next Entry:sfThumbnailPluginでサムネイル画像を作る