You're changing the working directory and not changing it back to what it was... That messes up your includes big time because it doesn't automatically change back.
Do like this:
PHP Code:
// ######################### REQUIRE BACK-END ############################
$curdir = getcwd();
chdir('/home/***/public_html/community');
require_once('./global.php');
chdir($curdir);