Reputation: 31
Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 262144 bytes) in /vqmod/vqcache/vq2-storage_modification_system_engine_action.php on line 69
Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 262144 bytes) in /system/library/session.php on line 81
Event memory limit is sufficient it is throwing above error. Any solution welcome! Thank you
Upvotes: 0
Views: 1550
Reputation: 1584
I have found the solution on my website.
In my admin folder, I have a php.ini file
I have changed my
memory_limit = 64M;
to
memory_limit = 128M;
You have to change the php.ini file on line 18 memory_limit = 64M; to 64 x 2 = 128 or 64 x 4 = 256 but wait to ask your hosting provider do they support higher limit size if yes then it will work otherwise you are wasting your energy.
Now it works fine.. I didn't get Fatal Error.
Upvotes: 0