PHP with APC: Fatal errors: Cannot redeclare class

后端 未结 7 1973
甜味超标
甜味超标 2020-12-24 07:57

Since I installed APC for PHP with PECL I get sometimes these errors: Cannot redeclare class xxx

xxx changes from time to time. I could disable APC but

7条回答
  •  [愿得一人]
    2020-12-24 08:14

    The combination of the following configs fixed it for me:

    apc.include_once_override = 0
    apc.canonicalize = 0
    apc.stat = 0
    

    Without all 3, I'd constantly get the error, but with all three I seem to no longer get the error :)!

提交回复
热议问题