diff --git a/guides/v2.0/install-gde/trouble/php/tshoot_session.md b/guides/v2.0/install-gde/trouble/php/tshoot_session.md new file mode 100644 index 00000000000..d6b9ce94a8f --- /dev/null +++ b/guides/v2.0/install-gde/trouble/php/tshoot_session.md @@ -0,0 +1,33 @@ +--- +layout: default +group: install_trouble +subgroup: Errors during installation +title: During installation, exception SessionHandler::read() +menu_title: During installation, exception SessionHandler::read() +menu_node: +menu_order: 26 +github_link: install-gde/trouble/tshoot_session.md +--- + +

During last step of installation Exception - SessionHandler::read

+ +{% highlight PHP %} +exception 'Exception' with message 'Warning: SessionHandler::read(): +open(..) failed: No such file or directory (2) ../magento2/lib/internal/Magento/Framework/Session/SaveHandler.php on line 74' +in ../magento2/lib/internal/Magento/Framework/App/ErrorHandler.php:67 +{% highlight PHP %} + +### Solution: + +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 +to edit your php.ini and set + +{% highlight PHP %} +session.save_handler = files +{% highlight PHP %} + +session.save_path can be just disabled for use default parameters or set to valid folder in your file system + +{% highlight PHP %} +;session.save_path = /some/patch/here +{% highlight PHP %}