Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
Sentry activate_user issue
  • Hello all, first sorry if im not posting this to the right topic.

    I ran in to an issue with senty activate_user function.

    No matter what i do, i always get User not exsist, triple checked the user, everything okay, the has the email, but im with out luck, the code is based on a tutorial form vimeo made by the stry team.

    here is the code

    class Controller_Activate extends Controller {

        function action_user($email = null, $hash = null)
        {
            try {
                $activate_user = Sentry::activate_user($email, $hash);

                if($activate_user):
                    echo "Success";
                else:
                    echo "Error";
                endif;

            } catch (SentryAuthException $e) {
                echo $e->getMessage();
            }
        }

    }

    Woud be really happy if someone could give me a hint
  • HarroHarro
    Accepted Answer
    Which Sentry package and version are you using?

    The latest one can be found at http://github.com/fuel-packages

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion