Yes, the miracle of miracles has been pulled off and through many late nights of coding the STAMP developers have pulled of a release.
NEW things STAMP v1.0 includes:
Secure setup: only the admin can see team passwords etc
Match prediction: You input the teams, we tell you who the data says will win (yes, data can lie)
REVAMPED Robot Information Summary & Robot Summary Pages
Printerfriendly Robot Summary page
Explanations of: Strength of Schedule, Consistency, and Improvement Trend calculations
I am unable to give you a demo site or screen shots as it is 1am here and I need to pack because I am leaving for regionals tomorrow!
It appears there may be an issue with the “database_setup.php” file.
If you can do a little code hacking you CAN make the STAMP app fully functional. Open “database_setup.php” and replace
<?
include 'stamp_includes.php';
connectToDatabase();
//only allow if accounts have not been made yet
$result = mysql_query("SELECT * FROM user")
or die ("Query error: ".mysql_error());
$rows = mysql_num_rows($result);
if ($rows > 0) {
die("This page is not accessible after accounts have been made.");
}
?>
with
<?
include 'stamp_includes.php';
?>
Then run “database_setup.php” and create your first account. After that change “database_setup.php” BACK to the original. Then wah-la, you have a fully functional STAMP install.
We will have a 1.0.1 release out ASAP with a fix for this so you don’t have to hack it up.