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
How to solve: Warning: open_basedir restriction in effect
This warning can appear with various functions that are related to file and directory access. It warns about a configuration issue. When ...
How to: Get thumbnail from YouTube video API from PHP and cURL
Each YouTube video has 4 generated images. They are predictably formatted as follows: http : //img.youtube.com/vi/<insert-youtube-video...
PHP 5: When to use $self or $this
From http://www.phpbuilder.com/board/showthread.php?t=10354489 : Use $this to refer to the current object. Use self to refer to the cu...
How to access PHP variables in JavaScript or jQuery
To have access to PHP variables in JavaScript or jQuerys sometimes you have to write something like this: <? php echo $variable1 ?> ...
How to: convert one date format to another (PHP)
The second parameter to date() needs to be a proper timestamp (seconds since January 1, 1970). You are passing a string, which date() ca...
No comments:
Post a Comment