PHP Code:
<?php include '../community/cforumstats.php'; ?>
That is your answer, you have to remove the "../". PHP does not call directories like HTML or other languages do. Remove that small snippet and put your full root path and it should work

. Or at least that is my understanding, I remember when I transferred from HTML to PHP I was baffled at why my images and whatnot were not being displayed properly. I was told it was due to the ../ not moving directories as it does with HTML.
Should look like:
PHP Code:
<? include "/home/***/public_html/community/cforumstats.php';" ?>