• Resolved heikodietze

    (@heikodietze)


    Dear support,

    I repeatedly get error emails from WordPress like the one shown in the screenshot.

    The PHP version running is 8.1 (despite the note in the image).
    What could cause the error?

    Thanks in advance. And keep up with the good work on this plugin ????.

    Best wishes,
    Heiko Dietze

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter heikodietze

    (@heikodietze)

    Plugin Author Matthias Nordwig

    (@matthiasnordwig)

    Hi.

    Thanks for that. It seems, that syntax rules have changed for PHP v. 8.1. I’ll fix it during this week.

    Cheers, Matthias

    Plugin Author Matthias Nordwig

    (@matthiasnordwig)

    Hi.


    You wrote that you are using PHP version 8.1, but on the screenshot you provide, it seems that you are using version 5.6.4 instead. The plugin currently runs from version 7.1. I’ll make an update to support the older PHP version too, but it is a very unsecure version of PHP. Therefore I stopped testing for that version in the younger past.

    Cheers, Matthias

    Plugin Author Matthias Nordwig

    (@matthiasnordwig)

    Hi.

    I’ve just published a new version that supports the older PHP versions again. Nevertheless I would strongly recommend to update the PHP version, as this very old version is pretty insecure.

    If you like the plugin, please leave me a rating:
    [GDPR-compliant ReCaptcha for all forms and logins] Reviews | www.remarpro.com

    Cheers, Matthias

    Thread Starter heikodietze

    (@heikodietze)

    Hi Matthias,

    that’s awesome and super-quick support ????! Just installed your update.

    The installation at first run under PHP 5.6, then under 8.1.

    Now I’ll monitor it and let you know if there should be still be an issue.

    Keep up with the good work! ????

    Cheers, Heiko

    Thread Starter heikodietze

    (@heikodietze)

    Hi Matthias,

    somehow there are still errors, yesterday again a WP error (“…experiencing a technical issue”). This time is was another plugin and I could read PHP version 5.6 in the WP email.

    So I’ve checked the WP installation again and it shows PHP 8.1. ??
    But: In the error log of your plugin a lot of small issues are shown.

    I haven’t got enough server knowledge to understand if the server causes it, but maybe you recognize that quicker: I made a short Loomvideo for you to see the log (and the PHP version 8.1).

    Thanks for your help!

    Best wishes,

    Heiko

    • This reply was modified 1 year, 5 months ago by heikodietze.
    Thread Starter heikodietze

    (@heikodietze)

    Here’s the video again for you.

    Best wishes, Heiko

    Plugin Author Matthias Nordwig

    (@matthiasnordwig)

    Hi.

    Thank you. This is rather a hint, than an error. It says that the order of the parameters are not ideal. But it should not have any technical implications so far.

    I will change it with the next release. If you want to fix it now in order to stop the hints, you can just change class-stamp.php in the includes-folder of the plugins directory. Therefore you need to change

    line 445 from:

    public function check_submit( $wp = null, $fields, $ajax_handler = null  ){

    to:

    public function check_submit( $fields, $wp = null, $ajax_handler = null  ){

    and line 102 from:

    return $this->check_submit( $wp, $fields, $ajax_handler );

    to

    return $this->check_submit( $fields, $wp, $ajax_handler );

    Cheers, Matthias

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Plugin throws error’ is closed to new replies.