0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Picklesが動かないときのチェック項目

Last updated at Posted at 2014-03-06

Pickles設置後、ブラウザから閲覧できなかった場合のチェック項目。

apacheのVirtualHost設定

httpd.conf
<VirtualHost _default_:0000>
 DocumentRoot "{$path}"
 ErrorLog logs/error.log
 CustomLog logs/access.log common
	<Directory "{$path}">
		Options Indexes MultiViews ExecCGI Includes
		AllowOverride All  ←★これがAllになっていないとだめ
		Order allow,deny
		Allow from all
	</Directory>
</VirtualHost>

Pickles htdocs配下の .htaccess

Pickles前バージョンと .htaccessの内容を比較したところ
どうやらオプション設定に「FollowSymLinks」の設定のあるなしが影響している可能性あり。
このシンボリックリンク設定を記載すると問題なく閲覧できる。
FollowSymLinks設定がどう影響しているのかは要調査。

.htaccess
Options -MultiViews +FollowSymLinks




pickles.png Picklesについてはこちら

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?