Try to change code
line 225 really-simple-captcha.php
from
if ( @is_file( $file ) ) {
unlink( $file );
}
to
if ( @is_file( $file ) ) {
@unlink( $file );
}
Try to change code
line 225 really-simple-captcha.php
from
if ( @is_file( $file ) ) {
unlink( $file );
}
to
if ( @is_file( $file ) ) {
@unlink( $file );
}