• hello I have performance problems with this plugin and wordpress 5.8. When I activate the plugin I get 2 critical errors, a rest api and a loopback request error (error 28). When I deactivate the plugin the error is gone again. Apparently other users have the same problem as I have read in forums. Is there an update in sight that solves the problem? I could use the plugin very well

Viewing 4 replies - 1 through 4 (of 4 total)
  • I have the exact same error – is there any update on this issue??

    Quick fix until they will update plugin:
    1) Find through FTP:
    cost-calculator-contactform7.php

    2) Find:
    if ( !session_id() ) {
    session_start();
    }

    then change it to:

    if ( !session_id() ) {
    session_start( [
    ‘read_and_close’ => true,
    ] );
    }
    Then you are done. In most cases, this will fix the issue. Good luck!

    Same problem here. I tried @nordbjaergs fix but couldn’t find this code my version (1.0). I don’t have

    if ( !session_id() ) {

    before

    session_start();

    Hopefully someone will find a fix soon!

    Same as @marjolein64 I don’t have the “if ( !session_id() ) {…” If I try to replace session_start only it get a bigger error ^-^

    I hope it get fix soon. It is the only one paid plugin we use and it is the only one who generate 2 health errors on the welcome screen.

    Not nice…

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘performance error with wp5.8’ is closed to new replies.