I get this, when I try to run my PHP.
When I comment out the database execute() method it is going without errors. But this is not helping me a lot. Please Help 🙂
I get this, when I try to run my PHP. When I comment out
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Generally you should optimize your query/execute(), for example do not use SELECT * FROM or any ORM can make memory problems too.
Workaround set the memory size higher:
ini_set(“memory_limit”,”5M”);
The 5M sets the limit to 5 megabytes.
If this doesn’t work, try to set the value in php.ini.
Cheers.