masaruさま
ありがとうございます。
大変感謝しております。
htaccessへの記載は削除してください。
削除いたしました。
現在は
<files async-upload.php>
AddHandler application/x-httpd-phpcgi .php
</files>
<Files plugin-install.php>
AddHandler application/x-httpd-phpcgi .php
</Files>
<Files update.php>
AddHandler application/x-httpd-phpcgi .php
</Files>
<Files update-core.php>
AddHandler application/x-httpd-phpcgi .php
</Files>
<Files admin.php>
AddHandler application/x-httpd-phpcgi .php
</Files>
<Files options-general.php>
AddHandler application/x-httpd-phpcgi .php
</Files>
となっており、FFFTP上でファイメル名を.htaccessとしてアップしております。
管理画面に入れないってさくらのですかね?WordPressのですかね?
さくらならFTPでルート直下?にphp.iniがあると思うので
(なければ探して見てください。)直接編集してみてください。
WordPressならさくらの管理画面から再度修正してみてください。
入れないのはwordpressです。
さくらのコントロールパネルには入れますので記述もphp_value memory_limit = 64MBに書き換えました。
さくらはPHPファイルのパーミッションを705か755にする必要があるみたいですが変更されていますかね?
FFFTPのオプション→環境設定→転送3で確認しましたところ現在は属性705となっておりました。
これはdefine('WP_MEMORY_LIMIT', '32M');とかが記載されいるのですかね?
//define('WP_MEMORY_LIMIT', '32M');
としてコメントアウトしてみてください。
下記のようになっております。
* @package WordPress
*/
if ( !defined('WP_MEMORY_LIMIT') )
define('WP_MEMORY_LIMIT', '32M');
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
@ini_set('memory_limit', WP_MEMORY_LIMIT);
下記のように変更しました
* @package WordPress
*/
if ( !defined('WP_MEMORY_LIMIT') )
//define('WP_MEMORY_LIMIT', '32M');
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
@ini_set('memory_limit', WP_MEMORY_LIMIT);
以上箇所を変更したところ
wordprssのログイン画面の上に
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 290
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 302
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 304
アカウント
と表示されます。アカウント部分は変更してます。
そしてパスワード入力してログインすると
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 290
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 302
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-login.php on line 304
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-includes/pluggable.php on line 662
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-includes/pluggable.php on line 663
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-includes/pluggable.php on line 664
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-includes/pluggable.php on line 666
Warning: Cannot modify header information - headers already sent by (output started at /home/アカウント/www/wordpress/wp-settings.php:694) in /home/アカウント/www/wordpress/wp-includes/pluggable.php on line 865
と表示されるようになり、依然管理画面には入れません。
私の為に時間を割いてアドバイス頂きありがとうございます。
長くて申し訳ございませんがどうぞよろしくお願いします。