Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

プラグインの削除時に、fatal errorが発生することがある #1888

Closed
chihiro-adachi opened this issue Oct 26, 2016 · 0 comments
Labels
Milestone

Comments

@chihiro-adachi
Copy link
Contributor

chihiro-adachi commented Oct 26, 2016

プラグインを削除する際に、以下のfatal errorが発生する場合がある

PHP Warning:  require(/path/to/app/Plugin/Recommend/ServiceProvider/RecommendServiceProvider.php): failed to open stream: No such file or directory in /path/to/vendor/symfony/class-loader/ApcClassLoader.php on line 110
PHP Fatal error:  require(): Failed opening required '/path/to/app/Plugin/Recommend/ServiceProvider/RecommendServiceProvider.php' (include_path='.:/usr/share/pear:/usr/share/php') in /path/to/vendor/symfony/class-loader/ApcClassLoader.php on line 110

apcu /opcache有効環境で以下発生します(頻度は不定期)

  • ec-cube 3.0.12
  • php 5.4.45
  • apcu 4.0.11

プラグインの削除処理は問題なく完了しており、一覧画面へリダイレクトし、プラグインをロードするタイミングで発生している。

$pluginConfigs = $this->getPluginConfigAll();

の箇所で、プラグインのconfig情報を取得しているが、その際に更新したはずのconfig情報が読み込まれている。

おそらく、

return require $pluginConfigCache;

の箇所で、config情報がapc/opcache上にキャッシュされてしまっており、そちらを参照しているようす。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants