It has to do with the php settings on your server.
You can eliminate some of the errors with some easy editing.
Make a backup first...
Then where there is an Undefined Variable error, you can do this:
Add a @ in front of the variable name.
For example, in graphnew.php on line 199, change:
PHP Code:
$curpdiff=sizeof($patternmatched) - $curpmsize;
to
PHP Code:
@$curpdiff=sizeof($patternmatched) - $curpmsize;
Tim
Mousel's Self-Defense Academy