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
PHP Code:
<?
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
PHP Code:
<?
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.