Anyone know how to solve this error?
Fatal error: Cannot redeclare class pear in c:\inetpub\wwwroot\core\pear\PEAR.php on line 68
this is what is on line 68
$t->parse('output', 'viewone');
thanks!
If you are calling classes the error may be on line 68 of the class code.
$t->parse('output', 'viewone'); may be what's on line 68 of your script, but the error is reported in PEAR.php.
Make sure you use
require_once 'PEAR.php';
instead of just include or require.