Fix Nextcloud Error: The PHP memory limit is below the recommended value of 512MB:
Default memory limit in Ubuntu 24.04 is 128MB, you can increase it to a higher value by:
sudo nano /etc/php/8.3/apache2/php.ini
*Get an updated php.ini by my page.
Find the line memory_limit = 128M
Change it to:
memory_limit = 1024M
Save the file and run:
sudo systemctl restart apache2
You should now be good!
Source | Date: June 11th 2024
Back