Hello dear,
I just get an idiot error from mysql now that is such a bull-shit!
I searched about it and, I found a solution for it;
Just run this query in your sql and it will be all clear and work again.
ALTER TABLE `table_name` AUTO_INCREMENT =1
And the reason for error is, it is trying to increase beyond the limit with auto increment, that’s why we get this.
——————————————-
2 sene öncesinde İngilizce olarak yazmışım, Türkçe’sini de yazayim.
Failed To Read Auto-Increment Value From Storage Engine şeklinde bir hata alıyorsanız ve Google’da arama yapıyorsanız, hala sorunun çözümünü bulamıyor olabilirsiniz.
Bu hatanın sebebi otomatik artış gösteren ID’nizin bir anda saçma bir değere gelmesinden dolayı olabilir.
Bu hatayı çözmek için alt satırdaki sorguyu istediğiniz bir SQL çalıştırıcıda çalıştırmalısınız.
ALTER TABLE `tablo_ismi` AUTO_INCREMENT =1
Bu sorguyu çalıştırdıktan sonra hatanız büyük ihtimalle çözülmüş olacaktır.
Bol şans.