Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
Marco Junior Posted January 27, 2023 Posted January 27, 2023 Hi how are you everyone ? I have an small doubt, Recently I remove my complete member list on my community, but the new members start with ID high example: ID for first member is == 1 right ? On old list have 632 members, I need restart ID for start == 2,3,4,5,6,7,8..... Is possible release this ? without reinstall complete community ?
Ryan Ashbrook Posted January 27, 2023 Posted January 27, 2023 No, it is not possible to reset the ID at this time. You would need to completely reinstall the community.
Solution Adriano Faria Posted January 27, 2023 Solution Posted January 27, 2023 If you have only one member and this member is ID = 1, you can run the following query to reset: ALTER TABLE core_members AUTO_INCREMENT = 2; You would need to make sure you have NO other data related to member IDs in your entire database, table per table, that’s why a reinstall is recommended. Use at your own risk and make a backup of your database before if you’re willing to try it.
Marco Junior Posted January 27, 2023 Author Posted January 27, 2023 I understand, then I will make a new db and transfer only data of topics ! Is better and more security. Thanks !
Miss_B Posted January 27, 2023 Posted January 27, 2023 (edited) 4 hours ago, Marco Junior said: Recently I remove my complete member list on my community Did you make a backup of your database beforehand? Edited January 27, 2023 by Miss_B
Marc Posted January 28, 2023 Posted January 28, 2023 20 hours ago, Marco Junior said: I understand, then I will make a new db and transfer only data of topics ! Is better and more security. Thanks ! You should import using the converters if you are doing it in this manner It is worth noting, the IDs really should be treated as such. They are nothing more than something to identify the user programmatically. So it shouldn't really matter what that number is visually. Ryan Ashbrook 1
Recommended Posts