when you use include "news/global.php", you are using a relative path... relative to the actual initial script being called.
Instead, use absolute paths, but do it dynamically so you dont have to hardcode all the absolute paths.
Try this...
For PHP 5.3.0 and above....
include __DIR__ ...