Quote:
Originally Posted by Huijting
I like the work U did but it doesn't work @ my site, getting the next error testing the test pages:
Fatal error: Call to undefined function: key_exists() in /home/httpd/vhosts/huijting.nl/httpdocs/vbul/view.php on line 568
|
Edit view.php and replace all "key_exists" term with "array_key_exists" and that should fix it.
key_exists is a function that exists in old PHP versions and array_key_exists is a function that exists in the recent PHP versions. I used to use array_key_exists in the previous releases of this hack but it caused problems with servers that has old PHP versions so in this release, I changed it with key_exists. Now we have problems with new PHP versions.