Ошибка в вордпрессе PHP Warning: strpos() — как исправить?

В логах вордпресса ошибка

PHP Warning: strpos(): Empty needle in /home/site/site.org/www/wp-includes/plugin.php on line 687

И из-за этого ложится сервер, показывает нагрузку на процессор.

В самом в plugin.php

arsort( $wp_plugin_paths );
  foreach ( $wp_plugin_paths as $dir => $realdir ) {
    if ( strpos( $file, $realdir ) === 0 ) { // строка 687
      $file = $dir . substr( $file, strlen( $realdir ) );
    }
  }

Ответы (0 шт):