ID: 13455
Updated by: yohgaki
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Suspended
Bug Type: Scripting Engine problem
Operating System: Any Linux with any Apache
PHP Version: 4.0.6
New Comment:
I understand what you've explained. But I'll set status to Suspended. Please work
around this problem.
Previous Comments:
------------------------------------------------------------------------
[2001-09-26 12:37:33] [EMAIL PROTECTED]
HOW TO REPRODUCE
1. You must run Apache in any version on a Linux system and have setup an VirtualHost
entry with
an example domain "www.domain.com".
2. Configure an .htaccess file like
ErrorDocument 404 http://www.domain.com/notfound.html
3. The notfound.html file MUST NOT exist and you MUST use an external path
4. Write a php script like
<?php
include("http://www.domain.com/any_file_that_does_not_exist.html");
?>
WHAT HAPPENS
The include() function tries to get the specified document but cannot find it. So the
Apache webserver
sends an 404 error together with a HTTP redirection. The include() tries to catch this
address which
leads into an infinite loop. The webserver will die shortly.
HOW TO SOLVE
The include() function should have a limit on how many levels it tries to catch since
the webserver is not
able to determine if the caller runs into an infinite loop.
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=13455&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]