Re: [PHP] Why do i get this error message?

2007-04-24 Thread Richard Lynch
On Sun, April 22, 2007 5:47 pm, H.T wrote: > I get this error message when i try to check my site on localhost > running > IIS and PHP 5.1.2 : > > Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to > allocate 24576 bytes) in ... > > and it points to the line which is pure html co

Re: [PHP] Why do i get this error message?

2007-04-23 Thread Edward Vermillion
On Apr 22, 2007, at 5:47 PM, H.T wrote: I get this error message when i try to check my site on localhost running IIS and PHP 5.1.2 : Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 24576 bytes) in ... and it points to the line which is pure html code! What co

RE: [PHP] Why do i get this error message?

2007-04-22 Thread Buesching, Logan J
Could you also send the code? Maybe 5 lines before and 5 lines after the line it is pointing to? It also means it tried to allocate 2KB of memory, which put you over your 8MB in whatever script you are running. You can set the maximum amount of memory a PHP script can use in your PHP.ini file. -