You need increase PHP memory limit for this method.
You can get the current memory limit with ini_get() function, for example:
print_r(ini_get('memory_limit'));
After you can increment the memory_limit value with ini_set() function, for
example:
ini_set('memory_limit', '128M');
The second parameter must be greater than that obtained with the function
ini_get().-- Murgan, Alexis Germán Desarrollador & Diseñador Web: german.murgan.com.ar Email: [email protected] MSN: [email protected] Móvil: +5493424663813 -- You received this message because you are subscribed to the Google Groups "CakePHP" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. Visit this group at http://groups.google.com/group/cake-php?hl=en-US.
