Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted March 22Mar 22 There are some problems with your database. Normally it is safe to try to fix these problems automatically however if your community is large, you may want to run the necessary queries manually. If so, the queries to run are:ALTER TABLE `core_pfields_content` DROP INDEX `field_1`;What is this - some tips?
March 22Mar 22 Community Expert There are some problems with your database. Normally it is safe to try to fix these problems automatically however if your community is large, you may want to run the necessary queries manually. If so, the queries to run are:ALTER TABLE `core_pfields_content` DROP INDEX `field_1`;What is this - some tips?Did you get this at the Support section of your Admin Panel? What it says is to drop the index from the profile fields table. Although indexes play an essential role in optimizing query performance by speeding up the retrieval of data, they can also slow down data modification operations for commands such as INSERT, UPDATE and DELETE due to the overhead of maintaining them. In that case indexes are no longer required as they have becomes redundant. That said, it would be best to make a backup of the aforementioned table, or better yet of the whole database, before you manipulate the database, especially deleting stuff from it. Hope it helps.
March 22Mar 22 Author Did you get this at the Support section of your Admin Panel? What it says is to drop the index from the profile fields table. Although indexes play an essential role in optimizing query performance by speeding up the retrieval of data, they can also slow down data modification operations for commands such as INSERT, UPDATE and DELETE due to the overhead of maintaining them. In that case indexes are no longer required as they have becomes redundant.That said, it would be best to make a backup of the aforementioned table, or better yet of the whole database, before you manipulate the database, especially deleting stuff from it. Hope it helps.Yes that was in mt Admin cp - support section! what was wrong?
March 22Mar 22 Community Expert Solution what was wrong?Hard to say from the outside. But if the software recommended it then I'm sure it had good reasons.
March 22Mar 22 Author Hard to say from the outside. But if the software recommended it then I'm sure it had good reasons.Latest i made field "Address"
March 22Mar 22 Author But if the software recommended it then I'm sure it had good reasons.Fixed - thanks