Add-on Fix an error when installing addon

Its simple. Edit the file /upload/library/Waindigo/Install/20140226.php
Go to Line 634 or search for $sql = "ALTER IGNORE TABLE `" . $tableName . "` ";
delete the IGNORE so you have only $sql = "ALTER TABLE `" . $tableName . "` ";

The problem is an old SQL syntax. Read more..
 
Top Bottom