php7 oauth illegal memory allocation

后端 未结 3 1415
粉色の甜心
粉色の甜心 2021-02-20 15:16

Intro

While running inside a complex web application, a spawned php7 process tries to allocate illegal amount of memory (18446744069414584466 bytes) whe

3条回答
  •  广开言路
    2021-02-20 15:28

    An alternative to @shlm answer is to disable opcache all together.

    In my project the decrease in response time was minimal, so for me it didn't make any notable difference, if I blacklisted the file or disabled opcache.

    I disabled it with the following line in a .htaccess file.

    php_flag opcache.enable Off
    

提交回复
热议问题