Quote:
Originally Posted by Ozidoggy
Any idea how to fix this error?
|
I fixed the problem. There is an error in one sql query when you have a table prefix. In the class_ibwidgets.php file search for this code:
Code:
$check = "SHOW TABLES LIKE " . TABLE_PREFIX . "'ibportal'";
and replace with this:
Code:
$check = "SHOW TABLES LIKE '" . TABLE_PREFIX . "ibportal'";
There's a misplaced single quote in that statement. Just moving the single quote to the other side of the TABLE_PREFIX fixes the issue.