How do I increase PHP's memory?

I got the same error, while trying to query for the last 7 days.

The logs show this:

The computer has 2GB. There is 1.3GB available:

There is also a lot of swap available:

Here is my debug token if helps https://tricorder.pi-hole.net/pv8rsyd4lh

Increase the amount of memory to PHP, you've got plenty to spare.

1 Like
pi@ph5:~ $ sudo nano /etc/php/*/cgi/php.ini
[..]
; Maximum amount of memory a script may consume (128MB)
; http://php.net/memory-limit
memory_limit = 128M
[..]

pi@ph5:~ $ sudo service lighttpd restart
pi@ph5:~ $

pi@ph5:~ $ php-cgi -i | grep memory_limit
<tr><td class="e">memory_limit</td><td class="v">128M</td><td class="v">128M</td></tr>
2 Likes

Thanks for the help! I found the php.ini file and after increasing it to 512M and restarting the lighttpd as you show the problem was gone.

2 Likes

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.