Hi all,
I got an error after installing Acid with php... After trying to open acid.php file, I got next problem in the browser:
PHP ERROR: Incomatible version: Version 5.0.0b4 of PHP is too old. Please upgrade to version 4.04 or later.
Anybody who can give me a hand with this issue? any clue?
Thanx i.a.
tSu
[SOLVED] Version 5.0.0b4 of PHP is too old...
Moderator: General Moderators
Line 67 of acid_db_common.php (from the latest version at http://www.andrew.cmu.edu/~rdanyliw/sno ... tacid.html) has the following code :
as a quick fix for PHP 5 you could just slap :
if($version[0] != 5) before that line above.
Code: Select all
if ( !( ($version[0] >= 4) && ( ( ($version[1] == 0) && ($version[2] >= 4) ) || ($version[1] > 0) ) ) )if($version[0] != 5) before that line above.