简体   繁体   中英

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.

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).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM