Hi all
I have installed a forum on one of the sites I am working on.
I get the following error
Fatal error: Cannot instantiate non-existent class: phpver in
Anyone have any idea what it is and how to fix it.
Thanks in advance
Dereck
you're trying to use a class that's not defined on the file you're working, you should include the file that have the definition of your class
www.oksonora.com
Hi,
Thanks for your reply.
should have stated that I am new'ish to PHP. Can you expand on what you have said so far.
Thanks
in some part of your script you have something like this $myObject = new phpver();
phpver is a class defined in other file. You should include (with a include ()) the file that contains the definition of the phpver class.
www.oksonora.com OKSonora