Error while Confuguring the Knowledgetree Document Managemen

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
vijay_777
Forum Newbie
Posts: 2
Joined: Mon Sep 19, 2005 6:17 am

Error while Confuguring the Knowledgetree Document Managemen

Post by vijay_777 »

Hi,

I am configuring the Knowledgetree documentmanagement application on
Windows 2000 professional. I have installed the EasyPHP1.8 version. I
have done all the changes according to installationguide. I have
configured the Database in Mysql. when I am logging into the
application it is giving the following error.

Fatal error: Cannot redeclare class folder in c:\program files
\easyphp1-8\www\knowledgetree\lib\foldermanagement\Folder.inc on line 30

please help me in this issue.

thanks & regards,
vijay.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

your code uses include() or require() two or more times using 'Folder.inc' ... either fix your code logic or change them to include_once()/require_once()
vijay_777
Forum Newbie
Posts: 2
Joined: Mon Sep 19, 2005 6:17 am

Error while Confuguring the Knowledgetree Document Managemen

Post by vijay_777 »

I am using require_once() and I have tried with include_once() also but still the same problem.
User avatar
feyd
Neighborhood Spidermoddy
Posts: 31559
Joined: Mon Mar 29, 2004 3:24 pm
Location: Bothell, Washington, USA

Post by feyd »

the only other way that will happen is if your script defined the class name again..
Post Reply