PHP 4.4.2RC2 Released
Yesterday I released PHP 4.4.2RC2, which should be the final release candidate for PHP 4.4.2. The major fixes in this release will be the problems with current() and key() , the problem with Apache 2 subrequests and we modified the behavior of header() so that it does not allow more than one header to be set at once. This prevents header injection. Please test !
Shortlink
This article has a short URL available: https://drck.me/php-4-released-4n3
It would be nice if the header() function would be able to bring up an actual 404 (or whatever) page that is set in apache.
For instance if i would do
ErrorDocument 404 /error/404.php
and in my php script I would do: header("HTTP/1.0 404 Not Found"); then it would be nice if it showed the actual 404 error page...
Add Comment