ID: 19512 User updated by: [EMAIL PROTECTED] Reported By: [EMAIL PROTECTED] -Status: Feedback +Status: Closed Bug Type: Variables related Operating System: Linux PHP Version: 4.2.3 New Comment:
Sorry, my mistake. It wasn't a PHP bug, but an error in my coding! There was a loop where a function called itself again and again infinitely until the script simply quits... Sorry about that, now I have fixed it. Please erase this bug report. Thank you. Previous Comments: ------------------------------------------------------------------------ [2002-09-20 02:45:12] [EMAIL PROTECTED] Thank you for this bug report. To properly diagnose the problem, we need a backtrace to see what is happening behind the scenes. To find out how to generate a backtrace, please read http://bugs.php.net/bugs-generating-backtrace.php Once you have generated a backtrace, please submit it to this bug report and change the status back to "Open". Thank you for helping us make PHP better. ------------------------------------------------------------------------ [2002-09-20 01:03:06] [EMAIL PROTECTED] Here is the code that crashes: global $HTTP_COOKIE_VARS; $cvar=$HTTP_COOKIE_VARS["user_name"]; ...so far, everything works OK. But after some more code that uses $cvar, like: if (empty($cvar)), etc, PHP crashes and I get Page Not found! I was able to fix this, by simply adding unset() like this: global $HTTP_COOKIE_VARS; $cvar=$HTTP_COOKIE_VARS["user_name"]; unset($HTTP_COOKIE_VARS["user_name"]); ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=19512&edit=1
