That's because after you doOutPut() the script exits (in vBulletin dooutput() is only used at the end of every file, to echo the page and stop).
You also don't need to get the header, headinclude and footer templates because that is done by default in global.php.
Try using this (not tested):
PHP Code:
<?php
error_reporting(7);
require('./global.php');
echo dovars($headinclude);
echo dovars($header);
include ("mignews3.php");
echo dovars($footer);
?>