Session conflict happens when you have hosted more than 1 WordPress site on a single domain
Here’s how you can fix this issue:
Please add the following code in your wp.config.php file located in the site root folder of your website:
if ( ! session_id() ) {
session_name( ‘PHPSESSID_1’ );
}