• Hello.

    There are several similar plugins, but none are better than this one.

    I think there is still time until WordPress officially supports PHP8, but there are some parts where problems are occurring due to the lack of a new release.

    I would be grateful if you could update it. I look forward to working with you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Yes please

    For everyone wondering: You can fix this if you are not afraid to go into the code:

    /wp-content/plugins/invisible-recaptcha/includes/utils/MchIPUtils.php

    There, change line 197 replace the { } with [ ].

    from:

    foreach($ip as $index => $seg) {
    			while ($seg {0} == '0')

    to:

    foreach($ip as $index => $seg) {
    			while ($seg[0] == '0')
    (..)
    • This reply was modified 2 years, 2 months ago by Fabian.

    @fabeylous Thanks man, appreciated.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Request’ is closed to new replies.