Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php
any suggestion
|
Allowed memory size of 33554432 bytes exhausted (tried to allocate 43148176 bytes) in php any suggestion |
|||||||||||||
|
|
At last I found the answer:
It will take unlimited memory usage of server, it's working fine. Thanks for giving suggestion friends. |
|||||||||||||||||||
|
|
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. 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... |
|||
|
|
|
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 |
|||
|
|
|
If you want to read large files, you should read them bit by bit instead of reading them at once. So you should read them bit by bit using |
|||
|
|
|
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 |
|||
|
|
|
Increase your maximum memory limit to 64MB in your php.ini file. But could I ask why you are trying to allocate that much memory? What line of code does it fail at? |
|||||||||
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
@ 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 |
|||
|
|
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.