The “Data too long for column” error occurs when you insert more data for a column that does not have the capability to store that data. For Example - If you have data type of varchar(6) that means it stores only 6 characters. Therefore, if you will give more than 6 characters, then it will give an error.View attachment 59299
Whenever a player disconnects with some condition (poisoned, paralyzed, flaming) that error pops up, any solution?
phpmyadmin/players and then retryALTER TABLE `players` CHANGE `conditions` `conditions` BLOB NOT NULL;
dosen't work .Insert this query in yourphpmyadmin/playersand then retry
SQL:ALTER TABLE `players` CHANGE `conditions` `conditions` BLOB NOT NULL;