Just FYI: I did email the solution added it here for anyone else potentially looking.
I found the issue. During the create table on line 199 of plugins/cookie-law-info/admin/modules/cookie-scaner/cookie-scaner.php with this line of code
'description' TEXT NULL DEFAULT '',
in MySql 5.7 there can be no text with a default. In MySql 8 you can declare it as a literal but still would need (”)
I hope this helps. Once i removed DEFAULT from that line of code and refreshed the admin page it all worked fine.
-
This reply was modified 3 years, 10 months ago by olyjake.