Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php

any suggestion

share|improve this question
What is the script doing when it fails? can you post the code? – Neil Aitken Jan 6 '09 at 9:43
we are trying to read a .txt file – panidarapu Jan 7 '09 at 5:06
1  
Looks like a very huge txt file. – macbirdie Jan 22 '09 at 10:07
3  
Conventionally, you read files that are of potentially large or arbitrary size one line at a time, over-writing the previous line memory with each line read. Or you may just want to tail or head the file to get the latest entries. Upping your memory allocation as the file grows is not the answer. – ekerner May 21 '11 at 1:12

9 Answers

up vote 94 down vote accepted

At last I found the answer:

ini_set('memory_limit', '-1');

It will take unlimited memory usage of server, it's working fine.

Thanks for giving suggestion friends.

share|improve this answer
22  
You still should check why the memory is exhausted. Maybe you don't need to read the whole file, maybe read it sequentially. – macbirdie Jan 22 '09 at 10:12
Worked great. I know why memory was being exhausted - I'm using Zend-Feed to consume a rather large-ish Atom feed. I can't control the size of it or do anything other than swallow the whole feed in one pull, so bumping the memory limit for that one operation solved it. Cheers! – Don Jones Oct 13 '09 at 20:53
2  
- @panidarapu and @Don Jones: Depending on the amount of memory, and how this script is used, it could be dangerous to allow the change in memory usage in this way. Don, in your case, you can likely break the feed down into smaller chunks and parse what you need. Glad it works, but be careful. – anonymous coward Jun 11 '10 at 20:51
1  
This suggestion worked for me. Dynamically increasing memory limit in the script is done via function ini_set(): ini_set('memory_limit', '128M'); – mente Feb 12 '11 at 4:16
1  
If this doesn't work, add 'php_value memory_limit 50M' in your .htaccess. Replace 50M with your own value. – mixdev Mar 2 '11 at 21:24
show 8 more comments

Your script is using too much memory. This can often happen in PHP if you have a loop that has run out of control and you are creating objects or adding to arrays on each pass of the loop.

Check for infinite loops.

If that isn't the problem, try and help out PHP by destroying objects that you are finished with by setting them to null. eg. $OldVar = null;

Check the code where the error actually happens as well. Would you expect that line to be allocating a massive amount of memory? If not, try and figure out what has gone wrong...

share|improve this answer

Here are 2 simple methods to increase the limit on shared hosting:

1) If you have access to your PHP.ini file, change the line in PHP.ini If your line shows 32M try 64M: memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)

2) If you don't have access to PHP.ini try adding this to an .htaccess file: php_value memory_limit 64M

Hope this is helpful...

Regards, Haider Abbas Professional PHP Programmer

share|improve this answer

If you want to read large files, you should read them bit by bit instead of reading them at once.
It’s simple math: If you read a 1 MB large file at once, than at least 1 MB of memory is needed at the same time to hold the data.

So you should read them bit by bit using fopen & fread.

share|improve this answer

It is unfortunately easy to program in PHP in a way that consumes memory faster than you realise. Copying strings, arrays and objects instead of using references will do it, though PHP 5 is supposed to do this more automatically than in PHP 4. But dealing with your data set in entirety over several steps is also wasteful compared to processing the smallest logical unit at a time. The classic example is working with large resultsets from a database: most programmers fetch the entire resultset into an array and then loop over it one or more times with foreach(). It is much more memory efficient to use a while() loop to fetch and process one row at a time. The same thing applies to processing a file.

share|improve this answer

Increase your maximum memory limit to 64MB in your php.ini file.

Google search

But could I ask why you are trying to allocate that much memory? What line of code does it fail at?

share|improve this answer
PHP can be very inefficient with memory usage, I have often seen simple datagrids blow well into 80mb with a mere couple hundred records. This seems to especially happen when you go the OOP route. – TravisO Jan 6 '09 at 17:16
1  
It's not necessarily a language problem - it's an algorithm problem, too. Too many PHP programmers do repeated actions on a whole dataset rather than doing all processing on one item at a time. – staticsan Jan 6 '09 at 22:26
PHP is efficient if you use it right. It is hard though to keep track of all of your objects due to the managed nature of the runtime - not unlike C#. But too many high-level programmers period (including C#) do not have an appreciation of how their code affects the resources it runs on. – nlaq Jan 7 '09 at 17:08

We had a similar situation and we tried out given at the top of the answers ini_set('memory_limit', '-1'); and everything worked fine, compressed images files greater than 1MB to KBs.

share|improve this answer

If you are trying to read a file, that will take up memory in PHP. For instance, if you are trying to open up and read an MP3 file ( like, say, $data = file("http://mydomain.com/path/sample.mp3" ) it is going to pull it all into memory.

As Nelson suggests, you can work to increase your maximum memory limit if you actually need to be using this much memory.

share|improve this answer

@ Haider Abbas:

if ini overriding is not permissible then it will generate a 5000 internal server error. Need to follow safe option or ask hosting to increase memory to the php.ini file

share|improve this answer

protected by Community Aug 28 '11 at 9:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.