Menu
Home
Recent 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.
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Development and programming answers
Search articles
Popular Posts
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: Redirect to another page with jQuery and JavaScript
jQuery is not necessary, and window.location.replace(...) will best simulate an HTTP redirect. It is better than using window.location.h...
How to: save activity state in Android App
I've been playing around with the Android SDK, and I am a little unclear on saving an application's state. So given this minor re-to...
How to access and process nested objects, arrays or JSON
Preliminaries In JavaScript there are only two (actually one) data types which can contain other data types: objects and arrays (a special...
How to: Parse JSON in JavaScript
Most browsers support JSON.parse() , which is defined in ECMA-262 5th Edition (the specification that JS is based on). Its usage is simple: ...
No comments:
Post a Comment