Including facebook.php in a wordpress page template?

Try replacing this:

require_once TEMPLATEPATH.'/include/facebook.php';

…with this:

get_template_part( '/include/facebook.php' );

And if that doesn’t work, try this:

locate_template( 'include/facebook.php', true );