Move the db/code version check before the database connection in common.inc.php

This commit is contained in:
james 2005-05-27 21:23:16 +00:00
parent 8407f7dab9
commit f0cbb618ec

View File

@ -65,6 +65,30 @@ else
exit;
}
//first things first - make sure our DB version matches our CODE version
$dbcodeversion=@file("db/db.code.version.txt");
$dbdbversion=@file("db/db.db.version.txt");
if($dbcodeversion[0]!=$dbdbversion[0])
{
echo "<html><head><title>SFIAB ERROR</title></head><body>";
echo "<h1>Science Fair In A Box - ERROR</h1>";
echo "SFIAB database and code are mismatched";
echo "<br>";
echo "Please run the db_update.php script in order to update";
echo "<br>";
echo "your database to the same version as the code";
echo "<br>";
echo "<br>";
echo "<br>";
echo "<h2>Details</h2>";
echo "Current SFIAB codebase requires DB version: ".$dbcodeversion[0];
echo "<br>";
echo "Current SFIAB database is detected as version: ".$dbdbversion[0];
echo "<br>";
echo "</body></html>";
exit;
}
if(!mysql_connect($DBHOST,$DBUSER,$DBPASS))
{
echo "<html><head><title>SFIAB ERROR</title></head><body>";
@ -104,39 +128,8 @@ while($r=mysql_fetch_object($q))
$config['dates'][$r->name]=$r->date;
}
//first things first - make sure our DB version matches our CODE version
$dbcodeversion=@file("db/db.code.version.txt");
$dbdbversion=@file("db/db.db.version.txt");
if($dbcodeversion[0]!=$dbdbversion[0])
{
echo "<html><head><title>SFIAB ERROR</title></head><body>";
echo "<h1>Science Fair In A Box - ERROR</h1>";
echo "SFIAB database and code are mismatched";
echo "<br>";
echo "Please run the db_update.php script in order to update";
echo "<br>";
echo "your database to the same version as the code";
echo "<br>";
echo "<br>";
echo "<br>";
echo "<h2>Details</h2>";
echo "Current SFIAB codebase requires DB version: ".$dbcodeversion[0];
echo "<br>";
echo "Current SFIAB database is detected as version: ".$dbdbversion[0];
echo "<br>";
echo "</body></html>";
exit;
}
require_once("committee_auth.php");
session_start();
//detect the browser first, so we know what icons to use - we store this in the config array as well