Fatal Error: Allowed Memory Size of 134217728 Bytes Exhausted (CodeIgniter + XML-RPC)

前端 未结 29 2566
天涯浪人
天涯浪人 2020-11-21 22:57

I have a bunch of client point of sale (POS) systems that periodically send new sales data to one centralized database, which stores the data into one big database for repor

29条回答
  •  走了就别回头了
    2020-11-21 23:28

    I kept getting this error, even with memory_limit set in php.ini, and the value reading out correctly with phpinfo().

    By changing it from this:

    memory_limit=4G
    

    To this:

    memory_limit=4096M
    

    This rectified the problem in PHP 7.

提交回复
热议问题