I was facing same issue.
I replaced the code
session_start();
with
if (!isset($_SESSION)) {
session_start(['read_and_close' => true]);
}
I was facing same issue.
I replaced the code
session_start();
with
if (!isset($_SESSION)) {
session_start(['read_and_close' => true]);
}
I was facing same issue.
I replaced the code
session_start();
with
if (!isset($_SESSION)) {
session_start(['read_and_close' => true]);
}
Thanks, Solved now by my self.