Quote:
Originally posted by glenn001
Running php3 and have modified the files appropriately and the installation was successful, even checked all the files to make sure. However when browsing to the forum home page I get the following error...
Call to unsupported or undefined function array_reverse() in ./vbs_counter.php3 on line 53
Have also called the include function for vbs_counter.php3
Anyone have any ideas? If php3 is unsupported is there an equivalent install script for this hack?
Thanks!
|
Actually I have found the solution. If anyone else is running php3 and has this problem you can replace the function,
array_reverse($rhost);
with,
for (end($rhost); $key = key($rhost); prev($rhost) ) {
$value = $rhost[$key];
}
Awesome hack