Elodie
Chevereto Member
Website URL
<private>
Chevereto version
3.10.8
Description of the issue
Hello again,
Could you add a @ in front of realpath() at line 76 inside /lib/G/G.php for next release please ?
When a webhosting is secure, the website can't access manually to the session folder, because session are managed by PHP functions.
To make simple :
Instead to have :
$session_save_path = realpath(session_save_path());
Could you write this instead :
$session_save_path = @realpath(session_save_path());
Thank you in advance.
<private>
Chevereto version
3.10.8
Description of the issue
Hello again,
Could you add a @ in front of realpath() at line 76 inside /lib/G/G.php for next release please ?
When a webhosting is secure, the website can't access manually to the session folder, because session are managed by PHP functions.
To make simple :
Instead to have :
$session_save_path = realpath(session_save_path());
Could you write this instead :
$session_save_path = @realpath(session_save_path());
Thank you in advance.