This is a PHP error that can be resolved by changing a setting within php.ini. The setting has to be changed to increase the memory or to "-1", which means infinite memory. Unfortunately, I don't recall the exact setting.
memory_limit = -1 Gil Vidals On 10/20/06, leo.cacheux <[EMAIL PROTECTED]> wrote: > > I have to generate an Excel workbook (in XML format) with a lot of data > from my database, so I can't use pagination or something like that, I > have to get all the data. Each worksheet display data from one DB > request, and everything works fine when I display only one worksheet. > Until know, I stored each request result in a huge array and I got > memory error. > What I'd like to do is : > - output the header of the XML document > - get result from the first request > - output the first worksheet > - free memory for the result > - get result from the second request > - output the second worksheet > - free memory > - ... > - output the XML footer > > This is what I meant when I said "rendering the view in many times" (my > english may be bad, sorry). I'd like to render the view many times, > each time with a different worksheet. > > > > > -- [EMAIL PROTECTED] --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php -~----------~----~----~----~------~----~------~--~---
