0

wordpressをローカルにインストールしています。

権限を正しく設定するという悪夢に見舞われています。

すべてを 777 に設定するとエラー 500 になります。644 に設定しましたが、それでも同じです。

apache2の下で正確に正しい設定は何ですか

4

2 に答える 2

0

Since it's a local version, have your tried setting your whole wordpress folder to permission 777? What operating system are you using? I used to get this under Ubuntu. Have your tried adding a simple php file to test if the link you're using is good?

Replying your question about permission: http://codex.wordpress.org/Changing_File_Permissions#Permission_Scheme_for_WordPress and http://wordpress.org/support/topic/wordpress-file-permissions will help you.

于 2012-07-18T10:08:43.630 に答える
0

まず第一にm developing wp plugins for a long time now and I、777 パーミッションで内部エラー 500 を見たことがありません。サーバー構成の詳細をお知らせいただくことをお勧めします。パーミッションについての回答は、サーバーごとに異なるためやや複雑ですが、一般的には次のように使用します。

wp-admin 755 
wp-includes 755 
wp-content 755 
wp-content/images 777 
.htaccess 644 
wp-admin/index.php 644 
wp-content/themes/your-theme/files 666 
wp-config.php 640 
Other files 640
于 2012-07-18T10:04:25.610 に答える