Hi
in a php script run from a command window, not an html page, I'm getting the following error:
[in part]
message => Allowed memory size of 67108864 bytes exhausted (tried to allocate 34304631 bytes)
Is there a maximum value that I can use to increase the memory_limit for my script? I don't want to add some value too large that may wreck havoc on the server. I'm not sure how that all works. I don't need to set the php.ini file permanently. I can use the ini_set("memory_limit", some-value-here);
Thanks for any help.