From f2f4b722bc8df74f22d77c140c94ec1ed9d87aae Mon Sep 17 00:00:00 2001 From: Skjalf <47818697+Nyeriah@users.noreply.github.com> Date: Sat, 8 Jan 2022 20:13:40 -0300 Subject: chore: Make ACE00023 more user friendly (#674) --- docs/common-errors.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'docs/common-errors.md') diff --git a/docs/common-errors.md b/docs/common-errors.md index 10c7139..303e680 100644 --- a/docs/common-errors.md +++ b/docs/common-errors.md @@ -83,7 +83,9 @@ Disable MySQL strict mode, read [How to turn on/off MySQL strict mode in localho ``` ERROR 2013 (HY000) at line 4: Lost connection to MySQL server during query ``` -This is most likely due to your MySQL server's max_allowed_packet setting is too low. See [this](https://docs.oracle.com/cd/E19509-01/820-6323/gicxk/index.html) or run the command `set global max_allowed_packet=XXXX (some high value)` to update your max_allowed_packet. +This is most likely due to your MySQL server's max_allowed_packet setting is too low. See [this](https://docs.oracle.com/cd/E19509-01/820-6323/gicxk/index.html) or run the command `SET GLOBAL max_allowed_packet=1073741824;` in your SQL client (HeidiSQL, SQLyog, etc.) to update your max_allowed_packet. + +**This value will reset the next time your SQL server restarts and it may be necessary to run this query again in the future.** ## Core-related Errors -- cgit