Categories: オープンソース

Nextclodのログアウトが遅い問題

NextcloudをChromeブラウザで使用する際、ログアウトに異常に時間がかかる場合がある。その場合の対処法だ。

下記のファイル

core/Controller/LoginController.php

$response->addHeader('Clear-Site-Data', '"cache", "storage", "executionContexts"');

の部分を下記のようにコメントアウトする。

   $this->session->set('clearingExecutionContexts', '1');
   $this->session->close();
  //$response->addHeader('Clear-Site-Data', '"cache", "storage", "executionContexts"');
   return $response;
  }

以下のサイトを参考にした。

https://github.com/nextcloud/server/issues/9179#issuecomment-509361586

国産部部長

Recent Posts

Web会議システム Openmeetings

Apacheが開発しているWe…

4年 ago

OpenStack

いわゆる仮想環境を構築するため…

4年 ago

Limesurvey

オープンソースのアンケートサイ…

4年 ago

Grafana Alert with image renderer

Grafanaで以前、ハードウ…

4年 ago

Lychee

写真サーバのLycheeをイン…

4年 ago

systemctl自動起動

以下のサイトで詳細が記載されて…

4年 ago