You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix for MySQL general error 1419
In Mysql.php line 110:
SQLSTATE[HY000]: General error: 1419 You do not have the SUPER privilege an
d binary logging is enabled (you *might* want to use the less safe log_bin_
trust_function_creators variable), query was: CREATE TRIGGER update_visit_s
tat AFTER INSERT ON amasty_faq_view_stat FOR EACH ROW
BEGIN
UPDATE amasty_faq_category SET visit_count = visit_count + 1 WHERE category
_id = NEW.category_id;UPDATE amasty_faq_question SET visit_count = visit_co
unt + 1 WHERE question_id = NEW.question_id;
END
In Mysql.php line 91:
SQLSTATE[HY000]: General error: 1419 You do not have the SUPER privilege an
d binary logging is enabled (you *might* want to use the less safe log_bin_
trust_function_creators variable)
0 commit comments