Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
any advice on auto increment logic issue with vanilla (category issues)!?
so, my install is humming along - just updated to RC3 - but i'm still having this precise issue: unable to add new categories
when i looked at the GDN_Category table in phpMyAdmin, i see that the auto increment number is crazy high, like in the kazillions, but this appears in no other table.
i have already tried to change int(11) to 22, didn't work, tried to manually change the auto increment number, tried (even) to change from innodb to myisam (since it's just me adding cats, seemed okay)...tried to even manually command sql to reset the increment back to 15 (from kazillions) - and not a single thing is working.
again, nothing else is wrong, every other table is fine, just this one particular table and the associated logic seems absolutely screwy and so as a result, i am simply unable to add any new category, period.
any ideas or thoughts about what may be causing this? this is running on latest php and mysql, and again, not a single issue other than that the auto increment seems to be running out of room because the numbers are soooo high!
when i looked at the GDN_Category table in phpMyAdmin, i see that the auto increment number is crazy high, like in the kazillions, but this appears in no other table.
i have already tried to change int(11) to 22, didn't work, tried to manually change the auto increment number, tried (even) to change from innodb to myisam (since it's just me adding cats, seemed okay)...tried to even manually command sql to reset the increment back to 15 (from kazillions) - and not a single thing is working.
again, nothing else is wrong, every other table is fine, just this one particular table and the associated logic seems absolutely screwy and so as a result, i am simply unable to add any new category, period.
any ideas or thoughts about what may be causing this? this is running on latest php and mysql, and again, not a single issue other than that the auto increment seems to be running out of room because the numbers are soooo high!
Tagged:
0
Answers
ALTER TABLE `GDN_Category` AUTO_INCREMENT=1
?grep is your friend.
you might need to set the right permissions for that mysql user.
grep is your friend.
grep is your friend.
grep is your friend.