View Single Post
Old 12-27-2013, 08:24 AM   #173
Ben E Lou
Morgado's Favorite Forum Fascist
 
Join Date: Oct 2000
Location: Greensboro, NC
Quote:
Originally Posted by WheelsVT View Post
Ok standby. Testing the install script and will see what's needed to allow an allocation draft to import as well.
I'm guessing that the install script problem is something here:
PHP Code:
/*
// Got here, so let's run the sql script
$queries = explode(";\n", file_get_contents("includes/mysql/install.sql"));
foreach($queries as $query) {
  if ($query) {
    mysql_query($query);
    if (mysql_error()) {
      echo "".$query;
      echo "
".mysql_error();
      exit;
    }
  }
}
*/ 

To make it work, I commented out this section, copied the text from install.sql, ran it in phpMyAdmin, then re-ran install.php with this section commented out.
__________________
The media don't understand the kinds of problems and pressures 54 million come wit'!

Last edited by Ben E Lou : 12-27-2013 at 08:24 AM.
Ben E Lou is offline   Reply With Quote