Installation Error
I get this error during the database creation step:
Mysqli statement execute error : Table 'account_logs' already exists
But when I check the database, the table was created. It is like it is trying to create the table twice.
Any ideas?
Larry,
We need a little more information about your situation such as what operating system you are using and what version of OpenFISMA.
I get this error during the database creation step:
Mysqli statement execute error : Table 'account_logs' already exists
But when I check the database, the table was created. It is like it is trying to create the table twice.
Any ideas?
Are you running any type of lamp package such as WAMP or XAMPP or have you installed the stand alone version of apache and mysql?
I am running Apache on Windows 2003 Server. I have the latest version of OpenFISMA, 2.3.
Larry,
We need a little more information about your situation such as what operating system you are using and what version of OpenFISMA.
I get this error during the database creation step:
Mysqli statement execute error : Table 'account_logs' already exists
But when I check the database, the table was created. It is like it is trying to create the table twice.
Any ideas?
This seems to be a bug that only effects versions installed on windows, we will have a technician try to reproduce on Windows.
Standalone versions of Apache, PHP, MySQL. It seems like an issue with the SQL import because the table gets created, and then the installer seems to try to create the table a second time, hence the error.
I had the same issue trying to install on Xampp on Windows XP. I worked around it by manually running the database install script ([openfisma-dir]\application\config\db\base.sql).
Then I edited [openfisma-dir]\application\controllers\InstallController.php so it wouldn't attempt to run the db script, by commenting out lines 248 and 250:
#if ($ret = $this->importSql($db, $initFiles)) {
$checklist['schema'] = 'ok';
#}
so, this unconditionally sets $checklist['schema'] to OK. That's an ugly workaround, but it should at least get you through the install.
OpenFISMA's a neat piece of software!

I am running Apache on Windows 2003 Server. I have the latest version of OpenFISMA, 2.3.
Larry,
We need a little more information about your situation such as what operating system you are using and what version of OpenFISMA.
I get this error during the database creation step:
Mysqli statement execute error : Table 'account_logs' already exists
But when I check the database, the table was created. It is like it is trying to create the table twice.
Any ideas?