2

wp-admin/options-general.phpPHP 5.3 でインストールした Wordpress に読み込まれない理由について、誰か提案をいただけますか? デバッグを有効にしてから PHP にエラーを報告させると、非推奨エラーが表示されますが、関連性はないようです。さらに、これらのエラーを修正しても、ページはまだ読み込まれません。

トップバーといくつかのナビゲーションボックスが読み込まれますが、中央のフレームには何もありませんか?

dotdeb の PHP 5.3 を実行しています

WP_DEBUGとで出力error_reporting(0):

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/cache.php on line 103

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/pomo/mo.php on line 171

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/l10n.php on line 407

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/query.php on line 61

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/theme.php on line 1133

Deprecated: Assigning the return value of new by reference is deprecated in /home/willyum/willyum.info/blog/wp-includes/taxonomy.php on line 617
4

3 に答える 3

2

私が正しく覚えていれば、wordpressはエラーの表示を避けるために多くの@演算子を使用しています...したがって、それらの多くは表示されません、event iferror_reportingがアクティブ化 されています:-
((これが@演算子が悪である理由の1つです... )。

たぶん、@演算子を無効にするために、テストマシンでscream拡張機能を使用すると役立つでしょうか?

それでも、PHP 5.3でwordpressを試したところ、そのページは正常に読み込まれるようです...2.8.xバージョンを使用しています。

于 2009-08-07T04:36:28.233 に答える
1

インストールしたすべてのプラグインを無効にしてみてください。問題が解決した場合は、各プラグインを 1 つずつ有効にして、問題のあるプラグインを見つけてください。

wp-devel Plugin を使用して、関数のトレースを見つけることもできます。http://wordpress.org/extend/plugins/wp-devel/

于 2009-08-10T09:31:06.503 に答える
0

たぶん、Wordpress デバッグ (Pear など) プラグインですか? 役立つだろう?(私自身は使用していません。)

于 2009-08-07T14:25:29.750 に答える