Hi ALL... I facing this error Can anyone tell me about it???////// Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 6291456 bytes) in C:\Program Files\wamp\www\dialedge\dialedge\admin.php on line 4617
Your script appears to be exceeding the memory limit. Try increasing the memory size by adding something like this to your script: ini_set("memory_limit","XM"); //replace X with a numeric value Code (markup): Or try to optimize your script. EDIT: Or do what Kwaku suggested.
change memory_limit option in it to whatever you want: memory_limit = 8M sometimes when I run large download script, I have to raise it to 1GB. Peace,
I would focus more on optimizing the script if this is one of your pages. THat is an awful lots of memory use for each thread to use. If its a one off though, all the posts here provided the right answer