diff options
| author | Skjalf <47818697+Nyeriah@users.noreply.github.com> | 2022-01-08 20:13:40 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-09 00:13:40 +0100 |
| commit | f2f4b722bc8df74f22d77c140c94ec1ed9d87aae (patch) | |
| tree | 4dbe505f3506d1f6afaae09a90fd3cae81761ce6 | |
| parent | d479d9b5f8669738f4bfe1c72f5384ea7f2a2f28 (diff) | |
| download | wiki-f2f4b722bc8df74f22d77c140c94ec1ed9d87aae.tar.gz wiki-f2f4b722bc8df74f22d77c140c94ec1ed9d87aae.tar.bz2 wiki-f2f4b722bc8df74f22d77c140c94ec1ed9d87aae.zip | |
chore: Make ACE00023 more user friendly (#674)
| -rw-r--r-- | docs/common-errors.md | 4 |
1 files changed, 3 insertions, 1 deletions
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 |
