It looks like the memory limit might still be an issue despite your current setting. The error message shows that the allowed memory size is 32MB (33554432 bytes), not the 256MB you've set.
Try increasing the memory limit in your php.ini file to match your desired value:
memory_limit = 256M
If that doesn’t work, check whether your server has any other memory limits or if you're editing the correct php.ini file. You can also add this line to your .htaccess file:
php_value memory_limit 256M
Let me know if this helps!
Try increasing the memory limit in your php.ini file to match your desired value:
memory_limit = 256M
If that doesn’t work, check whether your server has any other memory limits or if you're editing the correct php.ini file. You can also add this line to your .htaccess file:
php_value memory_limit 256M
Let me know if this helps!
Statistics: Posted by Softprodigy23 — Thu Oct 10, 2024 12:34 pm