• An active PHP session was detected
    Performance
    A PHP session was created by a session_start() function call. This interferes with REST API and loopback requests. The session should be closed by session_write_close() before making any HTTP requests.

Viewing 1 replies (of 1 total)
  • Hello,

    This error can be resolved by replacing two items with the following code

    Go to unyson/framework/includes/hooks.php and replace the session_start code found twice with

    session_start( [‘read_and_close’ => true,] );

    This resolves the issue.

Viewing 1 replies (of 1 total)
  • The topic ‘Plugin critical issue’ is closed to new replies.