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
PHP: Convert date to timestamp
PHP's strtotime() gives $timestamp = strtotime ( '22-09-2008' ); Which does work with the Supported Date and Time Formats D...
HTML: Removing spaces between inline-block elements
Given this HTML: <p> <span> Foo </span> <span> Bar </span> </p> and this CSS: span { ...
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...
How to: Calculate the difference between 2 dates in PHP
Input: Start Date : 2007 - 03 - 24 End Date : 2009 - 06 - 26 Output: 2 years , 3 months and 2 days Use strtotime() to conve...
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...