Reputation: 35
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
Reputation: 56442
You're trying to allocate 34GB of data.
Obviously, your memory limit of 1256Mb won't be enough.
You either need to :
Upvotes: 3