yiisoft / yii2-docker

Official Docker images suitable for Yii 2.0
https://www.yiiframework.com/
BSD 3-Clause "New" or "Revised" License
381 stars 202 forks source link

Solve problem APC ext php >= 7 #152

Closed gplaza closed 2 years ago

gplaza commented 2 years ago

pecl install apc seem deprecated, apcu alone is not compatible with apc used in yii2, solution : use apcu with backward compatibility

schmunk42 commented 2 years ago

There's still an additional i at the end ... inii.

And did you test this? So it works by loading both extensions? I did not find installation instructions here: https://github.com/krakjoe/apcu-bc

gplaza commented 2 years ago

There's still an additional i at the end ... inii.

And did you test this? So it works by loading both extensions? I did not find installation instructions here: https://github.com/krakjoe/apcu-bc

Ups other typo ... yes, i have tested . it works by loading both extensions, but : i need to load in this exactly order, fisrt one : apcu.so, second : apc.so in the other order : error "zif_apcu_store" see : https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=909752

schmunk42 commented 2 years ago

Thank you!