|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-12-21 08:46 UTC] carl at kittanning dot com
This error shows on the PHP website, reproduced on IE5, NS4.75, NS7.0 just coming into the site. www.php.net Parse error: parse error, expecting `')'' in /local/Web/sites/phpweb/include/mirrors.inc on line 25 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jun 15 07:00:01 2026 UTC |
Hi, The list of mirrors in /include/mirrors.inc has a wrong array layout: $MIRRORS = array( "http://au.php.net/" => array("AUS","Planet Mirror",FALSE,"http://www.planetmirror.com/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK) "http://au2.php.net/" => array("AUS","Web Hosting Australia",FALSE,"http://www.ilisys.com.au/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK) "http://au3.php.net/" => array("AUS","AusGamers",TRUE,"http://ausgamers.com/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK) must be: $MIRRORS = array( "http://au.php.net/" => array("AUS","Planet Mirror",FALSE,"http://www.planetmirror.com/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK), "http://au2.php.net/" => array("AUS","Web Hosting Australia",FALSE,"http://www.ilisys.com.au/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK), "http://au3.php.net/" => array("AUS","AusGamers",TRUE,"http://ausgamers.com/",MIRROR_STANDARD,FALSE,"en",MIRROR_OK),