Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 11520 bytes) in /public_html/top_level.inc.php on line 12 in php
on line 12 it is
$login_arr = array("allotted file names");
if(in_array($curr_file, $login_arr) && !isset($HTTP_COOKIE_VARS["COOKIE_NAME"]))
Can you help me plz
Fatal error
Moderator: General Moderators
take a look at http://de2.php.net/manual/en/ini.core.p ... mory-limit
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Is this the actual code:
Code: Select all
<?php
$login_arr = array("allotted file names");
if(in_array($curr_file, $login_arr) && !isset($HTTP_COOKIE_VARS["COOKIE_NAME"]))
?>Re: Fatal error
Use PHP bbCode tags when posting PHP code, use Code bbCode tags when posting code or use the very useful Syntax... dropdown for other code language variants. Thank you.
mang wrote:Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 11520 bytes) in /public_html/top_level.inc.php on line 12 in php
on line 12 it isCan you help me plzCode: Select all
$login_arr = array("allotted file names"); if(in_array($curr_file, $login_arr) && !isset($HTTP_COOKIE_VARS["COOKIE_NAME"]))