On Jan 14, 2011, at 23:28, [email protected] wrote: > getting error on first attempt to access the user page,... after > all,... refresh,... it getting thru and working... why...? Did anyone > know why...? > > Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to > allocate 311296 bytes) in /home/zipmaniak/zippopeople.com/html/app/ > views/users/show.ctp on line 344
As the error message says, your PHP process ran out of memory. Your php.ini is currently configured to allow each PHP process only 8MB of memory, and this was clearly not enough. Allow each PHP process to have more memory, by editing the appropriate value in your php.ini. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. 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] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
