Thanks for using Woffice! If you have any issue or question, feel free to open a ticket at https://woffice.io/support/

Fixing Unyson 2.7.24 Session Error

Within the Tools>Site Health section you will notice such an error caused by the Unyson plugin:

"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."



In order to fix it, you will need to add the following code within the functions.php file of your child theme:

if (!function_exists('_disable_fw_use_sessions')) { add_filter('fw_use_sessions','_disable_fw_use_sessions');

 function _disable_fw_use_sessions(){ 

return false;

 }

 }



If you have any issue or question, feel free to open a ticket at https://woffice.io/support/