そうですかぁ~ 私の環境の個別事情のようですね。
さっそくSVN版を試してみました。リビジョンは同じくrev. 2700です。
結果、特に問題ないみたいです。
DBサーバーは「mysql2.naid.jp」です。
DBサーバはmysql3.naid.jpです。DBサーバに個別の問題がある場合もありますよ。
。Warning: strtr() [function.strtr]: The second argument is not an array. in /usr/***/modx/manager/processors/save_content.processor.php on line 859 Warning: Cannot modify header information - headers already sent by (output started at /usr/***/modx/manager/processors/save_content.processor.php:859) in /usr/***/modx/manager/processors/save_content.processor.php on line 563
AddHandler x-httpd-php504 .php
Options +FollowSymLinks
RewriteEngine On
RewriteBase /modx
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]AddHandler x-httpd-php504 .php Options +FollowSymLinks RewriteEngine On
Code: Warning: strtr() [function.strtr]: The second argument is not an array. in /usr/***/modx/manager/processors/save_content.processor.php on line 859 Warning: Cannot modify header information - headers already sent by (output started at /usr/***/modx/manager/processors/save_content.processor.php:859) in /usr/***/modx/manager/processors/save_content.processor.php on line 563
とエラーが出て、ブラウザをリロードさせて確認すると、さっき書き込んだはずの「ドキュメントエイリアス」欄に(設定なし)と表示されています・・・。これって、.htaccess起因なのでしょうか?
AddHandler x-httpd-php504 .php
suPHP_ConfigPath /xxxxx/modx/
# iniファイルを隠してるだけです
<Files ~ "\.ini">deny from all</Files>
Options +FollowSymlinks
RewriteEngine On
RewriteBase /xxxxx/modx/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]Warning: strtr() [function.strtr]: .....(1) The second argument is not an array. in /usr/***/modx/manager/processors/save_content.processor.php on line 859 Warning: Cannot modify header information - headers already sent by (output started at .....(2) /usr/***/modx/manager/processors/save_content.processor.php:859) in /usr/***/modx/manager/processors/save_content.processor.php on line 563
string strtr ( string str, string from, string to ) .....(3) string strtr ( string str, array replace_pairs ) .....(4)