Forums WoW Modding Support Archives WoWModding Threads [DiscordArchive] Persistent module harrasing my database

[DiscordArchive] Persistent module harrasing my database

[DiscordArchive] Persistent module harrasing my database

rektbyfaith
Administrator
0
06-23-2025, 07:47 PM
#1
Archived author: Needle • Posted: 2025-06-23T19:47:46.348000+00:00
Original source

rektbyfaith
06-23-2025, 07:47 PM #1

Archived author: Needle • Posted: 2025-06-23T19:47:46.348000+00:00
Original source

rektbyfaith
Administrator
0
06-23-2025, 07:47 PM
#2
Archived author: Needle • Posted: 2025-06-23T19:47:46.906000+00:00
Original source

Thread automatically created by JudgeFae in <#415944535718494208>
rektbyfaith
06-23-2025, 07:47 PM #2

Archived author: Needle • Posted: 2025-06-23T19:47:46.906000+00:00
Original source

Thread automatically created by JudgeFae in <#415944535718494208>

rektbyfaith
Administrator
0
06-23-2025, 07:50 PM
#3
Archived author: JudgeFae • Posted: 2025-06-23T19:50:02.237000+00:00
Original source

I was using and am now trying to uninstall BeastMaster module
https://github.com/azerothcore/mod-npc-beastmaster

I have:
Purged all files from the module folder and removed my build folder and had cmake rebuild it.

Removed the entire acore_world database to ensure total annihilation.

Still run into this error message after a successful installation of azerothcore

This is when running acoreworld and building the database. It fails at the end with this:

> [1146] Table 'acore_world.beastmaster_tames' doesn't exist
> Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.
rektbyfaith
06-23-2025, 07:50 PM #3

Archived author: JudgeFae • Posted: 2025-06-23T19:50:02.237000+00:00
Original source

I was using and am now trying to uninstall BeastMaster module
https://github.com/azerothcore/mod-npc-beastmaster

I have:
Purged all files from the module folder and removed my build folder and had cmake rebuild it.

Removed the entire acore_world database to ensure total annihilation.

Still run into this error message after a successful installation of azerothcore

This is when running acoreworld and building the database. It fails at the end with this:

> [1146] Table 'acore_world.beastmaster_tames' doesn't exist
> Your database structure is not up to date. Please make sure you've executed all queries in the sql/updates folders.

rektbyfaith
Administrator
0
06-23-2025, 07:51 PM
#4
Archived author: JudgeFae • Posted: 2025-06-23T19:51:54.795000+00:00
Original source

I don't have any beastmaster sql files on my system so I do not know why it's searching for this table, which does not exist
rektbyfaith
06-23-2025, 07:51 PM #4

Archived author: JudgeFae • Posted: 2025-06-23T19:51:54.795000+00:00
Original source

I don't have any beastmaster sql files on my system so I do not know why it's searching for this table, which does not exist

rektbyfaith
Administrator
0
06-23-2025, 08:41 PM
#5
Archived author: Kaev • Posted: 2025-06-23T20:41:30.779000+00:00
Original source

There is still some code in your core that tries to use that table. Seems like you didn't delete the module correctly or it didn't recompile properly.
rektbyfaith
06-23-2025, 08:41 PM #5

Archived author: Kaev • Posted: 2025-06-23T20:41:30.779000+00:00
Original source

There is still some code in your core that tries to use that table. Seems like you didn't delete the module correctly or it didn't recompile properly.

rektbyfaith
Administrator
0
06-23-2025, 09:09 PM
#6
Archived author: JudgeFae • Posted: 2025-06-23T21:09:00.757000+00:00
Original source

It should not be trying to recompile at all. Am I wrong that a typical uninstall is just removing the folder in the modules folder and then recompiling? I know you need to rebuild the build folder too
rektbyfaith
06-23-2025, 09:09 PM #6

Archived author: JudgeFae • Posted: 2025-06-23T21:09:00.757000+00:00
Original source

It should not be trying to recompile at all. Am I wrong that a typical uninstall is just removing the folder in the modules folder and then recompiling? I know you need to rebuild the build folder too

rektbyfaith
Administrator
0
06-23-2025, 09:53 PM
#7
Archived author: JudgeFae • Posted: 2025-06-23T21:53:24.428000+00:00
Original source

This is the list of modules it's trying to install via cmake.

But error persists
[Image: Screenshot_from_2025-06-23_17-40-46.png?...a8a55344f&]
rektbyfaith
06-23-2025, 09:53 PM #7

Archived author: JudgeFae • Posted: 2025-06-23T21:53:24.428000+00:00
Original source

This is the list of modules it's trying to install via cmake.

But error persists
[Image: Screenshot_from_2025-06-23_17-40-46.png?...a8a55344f&]

rektbyfaith
Administrator
0
06-24-2025, 06:51 AM
#8
Archived author: Kaev • Posted: 2025-06-24T06:51:39.559000+00:00
Original source

You need to recompile or else the world server .exe will still contain the module code. Removing the module folder, running cmake again and then recompile should in theory be correct (i haven't used AC in a long time so i can't give more clues on what you might did wrong - It's also possible that they copy the module files somewhere in setup process but i doubt it).
Try to clone the AC repo to a different location and redo all the initial steps that you've done for setting it up. That _should_ work since it shouldn't contain the beast master code at all.
If that doesn't work either, you'll probably have more success with getting help in the AC discord. They should know the module stuff way better than i do.
rektbyfaith
06-24-2025, 06:51 AM #8

Archived author: Kaev • Posted: 2025-06-24T06:51:39.559000+00:00
Original source

You need to recompile or else the world server .exe will still contain the module code. Removing the module folder, running cmake again and then recompile should in theory be correct (i haven't used AC in a long time so i can't give more clues on what you might did wrong - It's also possible that they copy the module files somewhere in setup process but i doubt it).
Try to clone the AC repo to a different location and redo all the initial steps that you've done for setting it up. That _should_ work since it shouldn't contain the beast master code at all.
If that doesn't work either, you'll probably have more success with getting help in the AC discord. They should know the module stuff way better than i do.

Recently Browsing
 1 Guest(s)
Recently Browsing
 1 Guest(s)