How exactly does ini_set() work? I have the following code .
ini_set('memory_limit', '4G');
Which throws this
PHP Fatal error: Allowed memory size of 31457280 bytes exhausted
However
ini_set("memory_limit","30M");
works just fine. How is that possible? The second value is lower than the first.
HI Try following Code in your php ini_set function