Ich verwende XAMPP unter Windows und hatte das gleiche Problem. Ich dachte, es wäre die Timeout-Variable, aber es war max_allowed_packet
.
Dies hat es behoben:
# note the change was made at this section
[mysqld]
port= 3306
socket= "/xampp/mysql/mysql.sock"
basedir="/xampp/mysql"
tmpdir="/xampp/tmp"
datadir="/xampp/mysql/data"
skip-locking
key_buffer = 16M
# it was 1M by default
max_allowed_packet = 2M
table_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
Diese Konfigurationsdatei befindet sich im «XAMPP-Installationsverzeichnis, das ist C:\XAMPP
standardmäßig» \mysql\bin\my.ini
.