diff options
| author | Kitzunu <24550914+Kitzunu@users.noreply.github.com> | 2022-01-04 01:32:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-04 01:32:08 +0100 |
| commit | 376d608273735cfcaf26cb65fddc885cf5e87341 (patch) | |
| tree | 72b2aa9c70bef4c0d474671a5c23e8fc48278aad | |
| parent | b97b387e789c1f36b07770a34c3be0eaef3bee39 (diff) | |
| download | wiki-376d608273735cfcaf26cb65fddc885cf5e87341.tar.gz wiki-376d608273735cfcaf26cb65fddc885cf5e87341.tar.bz2 wiki-376d608273735cfcaf26cb65fddc885cf5e87341.zip | |
chore: More common errors
| -rw-r--r-- | docs/common-errors.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/common-errors.md b/docs/common-errors.md index 5553ca8..10c7139 100644 --- a/docs/common-errors.md +++ b/docs/common-errors.md @@ -77,6 +77,14 @@ ERROR 1067 (42000) at line 181: Invalid default value for 'start_time'. ``` Disable MySQL strict mode, read [How to turn on/off MySQL strict mode in localhost (xampp)? StackOverflow](https://stackoverflow.com/questions/40881773/how-to-turn-on-off-mysql-strict-mode-in-localhost-xampp). +------------------------------------------------------------------------------------------------------------------ + +**ACE00023** My Worldserver closes when autoupdater, I get: +``` +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. + ## Core-related Errors **ACE00040** Core doesn't start, I get: |
