You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
<h2>During last step of installation Exception - SessionHandler::read</h2>
13
+
14
+
{% highlight PHP %}
15
+
exception 'Exception' with message 'Warning: SessionHandler::read():
16
+
open(..) failed: No such file or directory (2) ../magento2/lib/internal/Magento/Framework/Session/SaveHandler.php on line 74'
17
+
in ../magento2/lib/internal/Magento/Framework/App/ErrorHandler.php:67
18
+
{% highlight PHP %}
19
+
20
+
### Solution:
21
+
22
+
This happens when your session.save_handler php parameter set to some another session storage that "files" (redis, memcached etc.), to fix that you need
23
+
to edit your php.ini and set
24
+
25
+
{% highlight PHP %}
26
+
session.save_handler = files
27
+
{% highlight PHP %}
28
+
29
+
session.save_path can be just disabled for use default parameters or set to valid folder in your file system
0 commit comments