Re: ローカル環境でログアウトすると「予期せぬエラー」
2014年9月18日 at 11:16
5701で試してみてください。色々バグ修正が入ってると思いますので…。
また、エラーメッセージを表示させるには…。
http://notnil-creative.com/blog/archives/3268
Re: ローカル環境でログアウトすると「予期せぬエラー」
2014年9月18日 at 22:24
そうなんですよね…。Whoopsのエラー表示は詳細で便利なんですが、コピペしてもらう時困りますな…。とりあえず、右サイドにどのファイルのどの行でエラーになったのか表示されていると思います。
Re: ローカル環境でログアウトすると「予期せぬエラー」
2014年9月20日 at 3:27
右サイドの各エラー文をコピペします。
一部左サイドからコピペしたものもあり、それには(左サイド)と明記しています。
一部左サイドからコピペしたものもあり、それには(左サイド)と明記しています。
/updates/concrete5.7.0.1/concrete/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php
77. return (bool) $this->handler->write($sessionId, $data);
Whoops\Run handleError(左サイド)
<#unknown> :0
(上の2つが2回)
/updates/concrete5.7.0.1/concrete/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/NativeSessionStorage.php
213. session_write_close();
/updates/concrete5.7.0.1/concrete/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Session.php
175. return $this->storage->regenerate($destroy, $lifetime);
/updates/concrete5.7.0.1/concrete/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Session.php
167. return $this->migrate(true, $lifetime);
/updates/concrete5.7.0.1/concrete/src/Support/Facade/Facade.php
110. return $instance->$method();
/updates/concrete5.7.0.1/concrete/src/User/User.php
369. Session::invalidate();
(2回)
/updates/concrete5.7.0.1/concrete/controllers/single_page/login.php
340. $u->logout();
Concrete\Controller\SinglePage\Login logout(左サイド)
<#unknown>0
/updates/concrete5.7.0.1/concrete/src/Controller/AbstractController.php
149. return call_user_func_array(array($this, $action), $parameters);
/updates/concrete5.7.0.1/concrete/src/Routing/DispatcherRouteCallback.php
146. $controller->runAction($requestTask, $requestParameters);
/updates/concrete5.7.0.1/concrete/src/Application/Application.php
284. $response = $callback->execute($request);
/updates/concrete5.7.0.1/concrete/bootstrap/start.php
245. $response = $cms->dispatch($request);
/updates/concrete5.7.0.1/concrete/dispatcher.php
36. $cms = require $__DIR__ . '/bootstrap/start.php';
/concrete/bootstrap/configure.php
66. require(DIR_BASE . '/' . DIRNAME_UPDATES . '/' . $updates['core'] . '/' . DIRNAME_CORE . '/' . 'dispatcher.php');
/concrete/dispatcher.php
18. require $__DIR__ . '/bootstrap/configure.php';
/index.php
2. require('concrete/dispatcher.php');
Re: ローカル環境でログアウトすると「予期せぬエラー」
2014年9月26日 at 4:35
右サイドの一番上は
です。
Whoops \ Exception \ ErrorException (E_WARNING)
SessionHandler::write(): Parent session handler is not open
/updates/concrete5.7.0.1/concrete/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Storage/Proxy/SessionHandlerProxy.php
77. return (bool) $this->handler->write($sessionId, $data);
です。
Re: ローカル環境でログアウトすると「予期せぬエラー」
2014年9月26日 at 7:45
ググってみたらこれがヒットしました
SessionHandler::write(): Parent session handler is not open
http://stackoverflow.com/questions/18381544/sessionhandlerwrite-parent-session-handler-is-not-open
PHP自体のバグらしいです。5.4.xを使っている場合は、5.4.11以上にアップデートした方がいいみたいです。MAMPのバージョンが古いかな?
SessionHandler::write(): Parent session handler is not open
http://stackoverflow.com/questions/18381544/sessionhandlerwrite-parent-session-handler-is-not-open
PHP自体のバグらしいです。5.4.xを使っている場合は、5.4.11以上にアップデートした方がいいみたいです。MAMPのバージョンが古いかな?
Your post has been saved and will be published after approval by the forum moderator.
mokeco
Re: ローカル環境でログアウトすると「予期せぬエラー」
すみません、5.7.0.1でも状況は変わらずでした。