Forum Moderators: coopster
Release Notes [php.net]
Changelog [php.net]
This release is a major stability and security enhancement of the 5.X branch.
dc
Prevent search engines from indexing the phpinfo() page.
That's kind of neat :)
Something else to consider is locating and comparing directives that are not specifically set or overridden in your php.ini settings. Here is a small application to describe what I mean and get you started. You can take it from here by comparing values, etc. but at least you might get an idea what I am referring to. Comparisons such as this have come in handy for me on more than one occasion:
<html><head>
<title>Configuration Directives Not Specifically Set In php.ini</title>
</head><body>
<h1>Configuration Directives Not Specifically Set In php.ini</h1>
<pre>
<?php
$file = '/path/to/php.ini';
$phpinfo = array_keys(ini_get_all());
$php_ini = array_keys(parse_ini_file($file));
foreach($phpinfo as $directive) {
if (!in_array($directive, $php_ini)) {
print "$directive\n";
}
}
?>
</pre></body></html>
[08-Feb-2007] The news on the front page of php.net has changed, the conference announcements [php.net] are now located on their own page. The idea is to keep php.net specific news clear and also opens the door for additional news entries, like for RC releases. More changes are on the way so keep an eye out.