Menu
Home
Recent Posts
Showing posts with label
Memory
.
Show all posts
Showing posts with label
Memory
.
Show all posts
Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in PHP
8:47 AM
0
Share
ini_set('memory_limit', '-1');
With this line will take unlimited memory usage of server.
Read More
Older Posts
Home
Subscribe to:
Comments (Atom)
Development and programming answers
Search articles
Popular Posts
CouchDB vs MongoDB
After posting about Scott Motte’s comparison of MongoDB and CouchDB , I thought there should be some more informative sources out there, so ...
PHP: Curly braces strings usage
They're used to escape variable expressions. From Strings : Complex (curly) syntax This isn't called complex because the syntax i...
iOS: performSelector may cause a leak because its selector is unknown
Here's what I'm doing: [ _controller performSelector : NSSelectorFromString (@ "someMethod" )]; The solution for this e...
How to solve: Parse error: syntax error, unexpected '['
This error comes in two variatians: Variation 1 $arr = [ 1 , 2 , 3 ]; This array initializer syntax was only introduced in PHP 5.4;...
How to solve: Warning: Division by zero
The warning message 'Division by zero' is one of the most commonly asked questions among new PHP developers. This error will not ca...