sivanesan
sivanesan

Reputation: 35

Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 34467037488 bytes) in Unknown on line 0

When I load the myDBR URL through IFRAME. I getting the the following error.

Fatal error: Allowed memory size of 1073741824 bytes exhausted (tried to allocate 34467037488 bytes) in Unknown on line 0

I have set php.ini memory_limit 1256M ans also I tried .htaccess file php_value memory_limit -1. But i did get any improvement please help me.

Upvotes: 1

Views: 3648

Answers (1)

blue112
blue112

Reputation: 56442

You're trying to allocate 34GB of data.

Obviously, your memory limit of 1256Mb won't be enough.

You either need to :

  • Reconsider how much ram your application need (recommended)
  • Increase the memory limit to 34GB (not recommended).

Upvotes: 3

Related Questions