I found solution for the plugin.
Can you please change
if ( ! defined( 'ABSPATH' ) )
exit; //Exit if accessed directly
if ( version_compare( PHP_VERSION, '5.4.0' ) >= 0 ) {
if ( session_status() == PHP_SESSION_NONE ) {
session_start();
}
} else {
if ( session_id() == '' ) {
session_start();
}
}
to
if ( ! defined( 'ABSPATH' ) )
exit; //Exit if accessed directly
if ( version_compare( PHP_VERSION, '5.4.0' ) >= 0 ) {
if ( session_status() == PHP_SESSION_NONE ) {
session_start(['read_and_close' => true]);
}
} else {
if ( session_id() == '' ) {
session_start(['read_and_close' => true]);
}
}
And send plugin update so I can keep my plugin upto date with your SVN Repository