Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from andrzejenne/master
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)
- Loading branch information