Mysqli statement execute error : Duplicate entry

Slate

New member
Hello,

I'm seeking assistance. Recently my site encountered this error:

Mysqli statement execute error : Duplicate entry 'RecentNews' for key 'module_name'

File:
library/Zend/Db/Statement/Mysqli.php:214

From line 207-214:
// execute the statement
$retval = $this->_stmt->execute();
if ($retval === false) {
/**
* @see Zend_Db_Statement_Mysqli_Exception
*/
require_once 'Zend/Db/Statement/Mysqli/Exception.php';
throw new Zend_Db_Statement_Mysqli_Exception("Mysqli statement execute error : " . $this->_stmt->error, $this->_stmt->errno);
}

In my library/zend/db/statement/
there is one mysqli.php and then a mysqli folder with an exception.php.

If anyone has any idea, please share! Our site is offline atm =/ Thanks for helping! If anyone needs more information please let me know what to include. Thank you very much.
 
Top Bottom