Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted August 16, 20231 yr Likely silly question but what is the database prefix used by IPS, notably for forum topics. Is it core_ or ipb_ Thanks
August 16, 20231 yr Community Expert You can find it in the conf_global.php file under sql_tbl_prefix option. Ouch, you meant prefixes for specific apps. core_ is for everything under the System part. forums_ - forums app, gallery_ gallery app. It's an app key in most cases.
August 16, 20231 yr Community Expert Likely silly question but what is the database prefix used by IPS, notably for forum topics. Is it core_ or ipb_ Thanks The database prefix can be seen in the aforementioned file as mentioned above and it is the same for all tables in the database. You can't have tables with different prefixes. Ouch, you meant prefixes for specific apps. core_ is for everything under the System part. forums_ - forums app, gallery_ gallery app. It's an app key in most cases. That is the case if the database prefix is left empty, but if it has a prefix, that prefix will preceed all database tables.
August 16, 20231 yr Author Thanks. So, in conf_global.php it's blank single quotes, so nothing. What I actually need are forums and users. Forums: forums_ ?? Users: ?? Anyone know? Thx.
August 16, 20231 yr Community Expert Thanks. So, in conf_global.php it's blank single quotes, so nothing. In that case it means that your database doesn't have a defined prefix. What I actually need are forums and users. For forums it is called: forums_forums, and for members: core_members. Hope it helps.
August 16, 20231 yr Community Expert Thanks. I will give that a try and revert. Much much appreciated!! You are welcome 😊 What are you going to revert, if I may ask?