From: <ru...@us...> - 2010-11-10 08:47:41
|
Revision: 7737 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7737&view=rev Author: rurban Date: 2010-11-10 08:47:34 +0000 (Wed, 10 Nov 2010) Log Message: ----------- support php-4.3.9, Red Hat Enterprise Linux ES release 4. We use that. Modified Paths: -------------- trunk/INSTALL trunk/lib/main.php Modified: trunk/INSTALL =================================================================== --- trunk/INSTALL 2010-11-09 15:14:11 UTC (rev 7736) +++ trunk/INSTALL 2010-11-10 08:47:34 UTC (rev 7737) @@ -1,7 +1,8 @@ REQUIREMENTS -PhpWiki requires a web server with at least PHP version 4.3.10. -PhpWiki was tested with 4.4.7 (centos4), 4.3.10, 4.4.9, 5.0.3, +PhpWiki requires a web server with at least PHP version 4.3.9 +(Red Hat Enterprise Linux ES release 4). +PhpWiki was tested with 4.4.7 (centos4), 4.3.9, 4.3.10, 4.4.9, 5.0.3, 5.1.6 (centos5), 5.2.10, 5.3.2, 5.3.3. All users of PHP are strongly encouraged to upgrade to PHP 5.2.14 Modified: trunk/lib/main.php =================================================================== --- trunk/lib/main.php 2010-11-09 15:14:11 UTC (rev 7736) +++ trunk/lib/main.php 2010-11-10 08:47:34 UTC (rev 7737) @@ -1327,8 +1327,9 @@ function main () { - if (version_compare(PHP_VERSION, '4.3.10', '<')) { - exit(_("Your PHP version is too old. You must have at least PHP 4.3.10")); + // latest supported: Red Hat Enterprise Linux ES release 4 + if (version_compare(PHP_VERSION, '4.3.9', '<')) { + exit(_("Your PHP version is too old. You must have at least PHP 4.3.9")); } if ( !USE_DB_SESSION ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |