Page 1 of 1

Strange Error on Memory Allocation,...

Posted: Sat May 24, 2008 2:14 pm
by keremg
Hi Folks,

i dont know how i have to understand this:

"Fatal error:  Allowed memory size of 16777216 bytes exhausted (tried to allocate 84177 bytes) in /home/user_keremg/http/www/modules/nuSOAP/classes/nusoap.php on line 6089"

because IMHO 84177 is less than 16777216, so whats the deal here? ???

If this is really a memory allocation problem, how can i increase the memory size
available for PHP. I dont have access to the Server/PHP environment. Soething
i can do in any config file?

Regards

Kerem

Re: Strange Error on Memory Allocation,...

Posted: Sat May 24, 2008 2:32 pm
by Wiedmann
because IMHO 84177 is less than 16777216, so whats the deal here?
Allowed are 16777216 bytes, but your script needs 16861393 bytes. (84177 additional bytes are missing)
I dont have access to the Server/PHP environment. Soething
i can do in any config file?
At the top of the file  "include.php", add a line with:

Code: Select all

ini_set('memory_limit', '32M');
If this does not help, you must ask your ISP for help (or you can't use CMSMS).

Re: Strange Error on Memory Allocation,...

Posted: Sat May 24, 2008 3:12 pm
by keremg
Hi Wiedmann,

doesnt work, but i contacted the administrative stuff directly.
I am sure that they will help me,...some way,...they always
did in the past,...some way,...:)

Regards

Kerem