• in error.log I had a notification, which has always been the same, for more than 2400 times and this is it:

    [13-Apr-2021 01:19:44 UTC] PHP Warning: “continue” targeting switch is equivalent to “break”. Did you mean to use “continue 2”? in /home2/ckajedre/public_html/wp-content/plugins/seo-ultimate/modules/class.su-module.php on line 1195

    thank you already if you can give me some indication of how to solve

Viewing 1 replies (of 1 total)
  • Hi Z!
    Its a harmess error, just disable WP debug error reporting and/or php error reporting. Its caused by a php version bump up that doesn’t support ‘continue.’
    In the alternative, since this plugin is no longer being maintained/supported, use a file editor or the built-in WP editor and edit:
    seo-ultimate/modules/class.su-module.php line 1195
    from:
    case 'auto-draft': continue; continue;
    to:
    case 'auto-draft': break; break;
    Regards,
    -Brian

Viewing 1 replies (of 1 total)
  • The topic ‘PHP Warning in error.log’ is closed to new replies.