Reply To: PHP has encountered a Stack overflow

Home Forums Support Forum PHP has encountered a Stack overflow Reply To: PHP has encountered a Stack overflow

#364

Eli Scheetz
Member

I believe this is due to a lack of memory allocated to your PHP processes. You could try increasing the memory limit. Here are three examples of how to do that:
in your php.ini file
memory_limit = 256M
in your .htaccess file
php_value memory_limit 256M
in your php script
ini_set('memory_limit', '256M');

Let me know how that works. If you need more help you can email me admin credentials to your site and I’ll take look. You can send emails to registrations at gotmls dot com