OK… I installed older version… No problems.
When I tried to upgrade I got message that it failed as there was a problem with removing old plugin.
Via FTP I can see that some files and directories left.
However I installed some “troubleshooting plugin” which shown me this error message:
———————————————————-
Warning: fopen(/www/mywebsite/wp-content/plugins/wp-cerber/wp-cerber.php): failed to open stream: No such file or directory in /www/mywebsite/wp-includes/functions.php on line 4848
Warning: fread() expects parameter 1 to be resource, boolean given in /www/mywebsite/wp-includes/functions.php on line 4851
Warning: fclose() expects parameter 1 to be resource, boolean given in /www/mywebsite/wp-includes/functions.php on line 4854
———————————————————-
I see that the file exists and here is a part of it- lines 4846 to 4854:
————————————
function get_file_data( $file, $default_headers, $context = ” ) {
// We don’t need to write to the file, so just open for reading.
$fp = fopen( $file, ‘r’ );
// Pull only the first 8kiB of the file in.
$file_data = fread( $fp, 8192 );
// PHP will close file handle, but we are good citizens.
fclose( $fp );
—————————————-
Thanks,
Marcin