Increate PHP memory limit

I get a out of memory error when I try to add items to a shopping cart, this fixes it. 256mb isn't enough.
This commit is contained in:
Mike Creuzer 2024-04-23 09:57:53 -04:00 committed by Franck Nijhof
parent 6ff0289196
commit c520753bcf

View file

@ -8,3 +8,4 @@ opcache.revalidate_freq=0
opcache.validate_timestamps=0 opcache.validate_timestamps=0
php_admin_value[post_max_size] = 64M php_admin_value[post_max_size] = 64M
php_admin_value[upload_max_filesize] = 64M php_admin_value[upload_max_filesize] = 64M
memory_limit = 384M