0

私はApacheのアップグレードを行ったばかりで、おそらくPHPも更新しました(ただし、100%確実ではありません。サイト、どんな助けでも本当に感謝しています。私の一般的なコーディング能力はかなり限られています。ありがとうグレッグ
以下はエラー/警告です:

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

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

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

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/village/public_html/blog/wp-includes/cache.php:36) in /home/village/public_html/includes/inc_functions.php on line 22
4

2 に答える 2

1

あなたは間違いなくWordpressを使用しています: http://www.villagedrinks.co.uk/blog/

WordPress のインストールが古いため、警告が表示されます。

<meta name="generator" content="WordPress 2.2.1" />

/blog/Wordpress (現在のバージョンは 3.5) をアップグレードするか、フォルダーを完全に削除します。

古いバージョンをインストールすると安全ではなく、パッチが適用されていない数多くのバグの 1 つを介して誰かがサイトに侵入する可能性があります。

于 2013-01-08T14:30:02.547 に答える
1

error_reportingphp.ini の PHP 変数を、運用E_ALL & ~E_DEPRECATEDサーバーに推奨されるように変更します。次に、Web サーバーを再起動します。これにより、非推奨の通知が抑制され、問題が修正されますsession_start()

于 2013-01-08T14:27:18.543 に答える