Earlier today I updated our test site, in preparation for rolling updates out to the main site. This involved updating several plugins and replacing the “BeforeTheDeadline” plugin with Jetpack. After completing the updates I found I was getting several error messages on the dashboard, im Rahmen der "eingehenden Links" Dashboard-Widget, und noch mehr Fehler, als ich versuchte, die W3 Total Cache Caches zu leeren.
The most common error was as below or similar to below (which was the error shown on the dashboard)
Veraltete: Zuweisen der Rückgabewert der neuen durch Bezugnahme in veralteten ... / wp-includes / klassen simplepie.php
Ich war in der Lage, die Fehler durch Deaktivieren alle Plugins deaktivieren, und wieder aktiviert 1 zu einer Zeit, mich zum Täter führen - ein Update der "WP Auto Affiliate Links” plugin we use to insert links to amazon for some products. A bit more research and a comparison of the code between the old plugin and new version led me to a fix fairly swiftly — the plugin contains some code near the top which turns on PHP Fehler.
[php]error_reporting(E_ALL & ~E_NOTICE);[/php]
Entfernen Sie diese Zeile (oder kommentieren sie) das Problem vollständig behoben.
Als weiterer Hinweis - diese Warnungen PHP are normal for anyone running wordpress on an up-to-date PHP5 because wordpress includes lots of legacy code which uses functions which are now deprecated. The reason they aren’t normally shown is because non fatal errors are usually suppressed. It’s high time wordpress updated this legacy code, but that is a discussion for another time. In the meantime — if you start to get these errors after a plugin update you need to check the plugin code and edit out any lines that include the error_reporting() Funktionsaufruf.
In the process of resolving this issue I also discovered something else quite useful. When I wanted to obtain the previous version of the auto affiliate links plugin I discovered that these are all archived on the wordpress.org downloads page. The current version (zum Zeitpunkt der schrift-lich) ist 2.3.2 which can be downloaded from https://downloads.wordpress.org/plugin/wp-auto-affiliate-links.2.3.2.zip. My previous version was 2.2.2 — so I guessed the download link would be https://downloads.wordpress.org/plugin/wp-auto-affiliate-links.2.2.2.zip if old versions were retained. Hey presto — using that address worked perfectly, Lob an Wordpress für die Aufbewahrung alten Versionen.
“Hi James I realise it has been a long while, but I just checked this on windows 11 (build 23H2)…”