Header Missing from Install / Upgrade
When installing / upgrading VaultWiki, if the server has output buffering enabled AND vBulletin has GZIP compression enabled, the header will be missing from some install/upgrade steps, and the background will be unsettlingly white.
Fixed in the current ZIP. In
vault/install/installcore.php and
vault/install/upgradecore.php, find:
Replace with:
Code:
// This will destroy all previous output buffers that could have been stacked up here.
while (ob_get_level())
{
@ob_end_clean();
}
ob_start();