Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a bunch of client point of sale (POS) systems that periodically send new sales data to one centralized database, which stores the data into one big database for report generation.

The client POS is based on PHPPOS, and I have implemented a module that uses the standard XML-RPC library to send sales data to the service. The server system is built on CodeIgniter, and uses the XML-RPC and XML-RPCS libraries for the webservice component. Whenever I send a lot of sales data (as little as 50 rows from the sales table, and individual rows from sales_items pertaining to each item within the sale) I get the following error:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 54 bytes)

128M is the default value in php.ini, but I assume that is a huge number to break. In fact, I have even tried setting this value to 1024M, and all it does is take a longer time to error out.

As for steps I've taken, I've tried disabling all processing on the server-side, and have rigged it to return a canned response regardless of the input. However, I believe the problem lies in the actual sending of the data. I've even tried disabling the maximum script execution time for PHP, and it still errors out. Thank you so much for your help!

share|improve this question
1  
I'm a bit confused... where does the error occur - in the client or server? And at which stage... client sending, server receiving, server processing, server sending, client receiving or client processing? – Greg Feb 18 '09 at 13:39
How/where are you setting the memory_limit to 1024M? – James Socol Feb 18 '09 at 14:20
The error seems to occur either during the client sending, or the server receiving. I've tried disabling all serverside processing, and rigging it to send a canned response regardless of the data sent. The error occurs if I send over a certain amount of data. I am changing the PHP.ini setting. – ArcticZero Feb 18 '09 at 16:04
Here is the code I am using... I have included the XML-RPC library used for the client as well: yousendit.com/download/U0d4SlIzcVg4aVBIRGc9PQ (Client) yousendit.com/download/U0d4SlIzcVhPSHhMWEE9PQ (Codeigniter Controller) Thanks for your time, in advance. :) – ArcticZero Feb 19 '09 at 4:54

9 Answers

ini_set('memory_limit', '-1'); overrides the default PHP memory limit.

share|improve this answer
where should one change that?! I only find that line in php.ini – Alisso Mar 22 at 8:28
15  
Great idea, no way that could backfire! – Jasper Kennis Apr 29 at 14:08
5  
above comment is ironic – Prozi May 21 at 11:39

It's very easy to get memory leaks in a PHP script - especially if you use abstraction, such as an ORM. Try using Xdebug to profile your script and find out where all that memory went.

share|improve this answer
I'll go try Xdebug. I have never used it before, so I'll have to read up on it. Thank you for replying! Hope I find the answer to this soon... – ArcticZero Feb 18 '09 at 15:53
11  
Remember that PHP uses reference counting for managing memory. So if you have circular references, or global variables, those objects won't get recycled. That's usually the root of memory leaks in PHP. – troelskn Feb 18 '09 at 16:08
Xdebug shows that CI's Xmlrpc.php library is responsible for my memory leak. By any chance, would there be any issues with CodeIgniter's XML-RPC libraries that I should know about? I have tried disabling all processing server-side, and it still runs out of memory if I feed it enough data. – ArcticZero Feb 18 '09 at 17:19
1  
I don't know/use CI, so I don't know. But you should probably try to find an object that isn't freed up after use - most likely because of a cyclic reference. It's detective-work. – troelskn Feb 18 '09 at 21:58

I fixed this bug. See: http://codeigniter.com/forums/viewthread/143001/

share|improve this answer

For Drupal users, this Chris Lane's answer of:

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

works but we need to put it just after the opening

<?php

tag in the index.php file in your site's root directory.

share|improve this answer

As with user1421312(their answer was 08:00 Jul 11, 2012), I got this error because of a stupid mistake. My code WAS this:

for($i=0;$i<$res;$i++){
    //stuff
}

When it should have been this:

for($i=0;$i<sizeof($res);$i++){
    //stuff
}

The only difference is that I was not iterating my loop to the length of the $res array. Essentially, I had an infinite loop like user1421312. Make sure you aren't doing the same thing we did.

Side note: My error was: "Fatal Error: Allowed memory size of 67108864 exhausted(tried to allocate 71 bytes)".

share|improve this answer

The correct way is to edit your php.ini

edit memory_limit to your desire value

As from your question, 128M (which is the default limit) has been exceeded, so there is something seriously wrong with your code as it should not take that much

if you know why it takes that much and you want to allow it set memor_limit=512M or higher and you should be good

share|improve this answer

I had the same error, but the reason for it was just a stupid programming-error:

for($i=3;$i>=$min;$i++)
    $dec[$i]=0;

I created an endless-loop which expands an array. (This is only a simplyfied code) The solution would be

for($i=3;$i>=$min;$i--)
    $dec[$i]=0;

Thought I should post it - althoug it's an rookie mistake

share|improve this answer

In Drupal 7, you can modify the memory limit in the settings.php file located in your sites/default folder. Around line 260, you'll see this:

ini_set('memory_limit', '128M');

Even if your php.ini settings are high enough, you won't be able to consume more than 128MB if this isn't set in your Drupal settings.php file.

share|improve this answer
Not in Drupal7 there is no such string of code in settings.php – FLY 9 hours ago

I had a similar problem. I made a very silly mistake that was different than the other two posts.

   for($m=1; $m<=12; $m++){

      if($m == 1){

        $m = 'jan'; 
    /* I was setting $m equal to a string 'jan' after I originally set 
       $m equal to a number... so each time it would go through the loop
       it would try to increment $m by 1 but m was no longer a number. 
       So the loop ran forever and therefore ate up all the memory. 
       I should have changed the name of the variable inside the if 
       statement to $month = 'jan'. Problem solved! 
       Hope this helps someone!!! :-)
    */

     }
     ........ //elseif for the rest of the months
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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