Auctioneer not working

Cannot post item due to confirmation timeout.

If I have the addon enabled, I am unable to post any auction, not even if I am trying to use the wow ah tabs. Is anyone else having this problem? I had to switch to auctionator which has far less options and info.

Auctioneer 4.4.1070, Sept 29, 2024 is the latest on curse.

2 Likes

Switching to TradeSkillMaster is easy and it works just fine at its base functions without having to watch any tutorials.

I switched to auctionstor it works fine without the mess that is tsm

I am experiencing the same issue but unfortunately I do not currently have a solution for you.

I was able to resolve the post timeout issue by going to the following file:

\World of Warcraft_classic_era_\Interface\AddOns\Auc-Advanced\CorePost.lua

and chaning line 1266 from:

PostAuction(request.bid, request.buy, request.duration, request.count, request.stacks )

to

PostAuction(request.bid, request.buy, request.duration, request.count, request.stacks, confirmation )

2 Likes

How did you open the .lua file and save it?

Open it as a text file then save after editing

1 Like

Damn, even changing the file info didn’t fix mine. It’s saying the error is with Stubby, which is a requirement for auctioneer. I’m at loss with this one!

I had to also change this line in the CoreScan.lua file
line 2943
return private.Hook.PostAuction(minBid, buyoutPrice, runTime, stackSize, numStacks, …)
To
return private.Hook.PostAuction(minBid,buyoutPrice, runTime, stackSize, numStacks, true, …)