• Resolved Robbo870

    (@robbo870)


    Hello,

    Line 25 of storage.php – you have session_start(); which causes a critical issue in WordPress and is known bad practice.

    Rather than

    if (!session_id())
         {
         @session_start();
         }
    }

    You might want to use

    if ( !session_id() ) {
        session_start( [
        'read_and_close' => true,
        ] );
    }

    Seems to work OK.
    Best regards
    Robbo870

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support mediawebster

    (@mediawebster)

    Hello Robbo870

    Thank you for cooperation!

    I passed it to developers.

    Plugin Author RealMag777

    (@realmag777)

    @robbo870

    Hello Robbo870

    Thank you for cooperation! I preparing update, and checked the code – it is doesn work, currency value not saves into session …

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘session_start(); causing WP error’ is closed to new replies.