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
How to: use arrays in C++
Arrays on the type level An array type is denoted as T[n] where T is the element type and n is a positive size, the number of elemen...
How to: Preload images with jQuery
Quick and easy solution: function preload ( arrayOfImages ) { $ ( arrayOfImages ). each ( function (){ $ ( '<img/...
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...