ROCKETTHEME IS CLOSING ON JUNE 30, 2025. As a thank-you to our community, enjoy 50% off all themes with the promo code THANKYOU before we shut down.
Read our Farewell Blog Post for more details.
Today I have gotten myself into a problem with my RT account. I needed to change my account password and went through the steps to do so and every time I have tried I get the same result "Your password reset confirmation failed because the token was invalid.. " I have emailed through the Contact Us link but I have not heard back from anyone.
Does anyone monitoring the forums know how to help me? I urgently need to get this resolved.
I had the simular issue myself and since it had nothing to do with the missing Username (see other threads) I started to debug it myself.
It turns out that in the file:
components/com_user/models/reset.php on line 126 it says
$row = $db->loadObject();
while on row 129 it says
if (!($row = $db->loadObject()))
This means that the row is filled twice with the result of $db->loadObject() and with some other components like JoomFish in place this gives the mentioned error.
You can remove row 126 and your problem should be fixed.