On my site, http://fbcyouth.elementfx.com, I keep getting an error message when trying to load the main page of my MediaWiki. It says that posix_uname is disabled for security reasons. However, I have PHP v3. Why is this not working?
Yes, I have version 3 of PHP.I have PHP v3.
/home/diez2/public_html/wiki/includes/setup.php
$wgIP = false; # Load on demand
# Can't stub this one, it sets up $_GET and $_REQUEST in its constructor
$wgRequest = new WebRequest;
if ( function_exists( 'posix_uname' ) )
{
$wguname = posix_uname();
$wgNodeName = $wguname['nodename'];
} else {
$wgNodeName = '';
}