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
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
プラグインを削除する際に、以下のfatal errorが発生する場合がある
apcu /opcache有効環境で以下発生します(頻度は不定期)
プラグインの削除処理は問題なく完了しており、一覧画面へリダイレクトし、プラグインをロードするタイミングで発生している。
ec-cube/src/Eccube/Application.php
Line 827 in bc1f947
の箇所で、プラグインのconfig情報を取得しているが、その際に更新したはずのconfig情報が読み込まれている。
おそらく、
ec-cube/src/Eccube/Application.php
Line 1142 in bc1f947
の箇所で、config情報がapc/opcache上にキャッシュされてしまっており、そちらを参照しているようす。
The text was updated successfully, but these errors were encountered: