Menu
Home
Recent Posts
Showing posts with label
exhausted
.
Show all posts
Showing posts with label
exhausted
.
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
HTML5: Change placeholder input color with CSS
Implementation to change placeholder color There are three different implementations: pseudo-elements, pseudo-classes, and nothing. Web...
Including another XHTML in XHTML using JSF 2.0 Facelets
Most basic way is <ui:include> . The included content must be placed inside <ui:composition> . Kickoff example of the master...
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...