I\'ve been programming in PHP for several years now and never encountered this error before.
Here\'s my widget.php file:
re
require_once('fruit.php');
This searches for fruit.php in the same directory as widget.php is in, no matter what the current working directory is.
require_once('../fruit.php');
This searches for fruit.php in a directory above the current directory, not in the directory above the one widget.php is in.