Skip to main content

Allowed memory size of 134217728 bytes exhausted (tried to allocate 71 bytes)

Allowed memory size of 134217728 bytes exhausted (tried to allocate 71 bytes)

To get rid of this error all u need to do is call

ini_set('memory_limit', '-1');
this lets the program use infinite amount of resources on ur machine. U shud include this in ur php code file. :)

Comments