If you have errors related to the database (such as table not found or other SQL exceptions), you may be able to recover by rerunning the setup routines. The setup is designed to be robust against reruns, and it should be safe to click on the button below.
configure(); if ($installer->verifyCfg()) { $ret = $installer->install(); extract($ret); } if (!is_array($success)) { $success = array($success); } if (!is_array($errors)) { $errors = array($errors); } if (!is_array($message)) { $message = array($message); } $sMsg = $eMsg = ""; foreach ($success as $s) { if (!empty($s)) { $sMsg .= "Succeeded in executing $s SQL statements.\n"; } } if (!empty($sMsg)) { EZ::showSuccess($sMsg, true); } foreach ($errors as $e) { if (!empty($e)) { $eMsg .= "Error in executing $e SQL statements.\n"; } } foreach ($message as $m) { if (!empty($m)) { $eMsg .= "Error message: $m\n"; } } if (!empty($eMsg)) { EZ::showError($eMsg); } } require 'promo.php'; require 'footer.php';