Welcome Guest, Not a member yet? Register   Sign In
Myth\Auth
#1
Lightbulb 

Dear,
I using MythAuth
I do not want use Email
How i config for only use Username, no Email, no Activate by email
Thanks for help

Learning CI4 from my works, from errors and how to fix bugs in the community

Love CI & Thanks CI Teams

Reply
#2

Not tested but from the comment in the Config/Auth.php

In Config/Auth.pp add this:

PHP Code:
// Remark this out so that you do not lose it.
// public $requireActivation = 'Myth\Auth\Authentication\Activators\EmailActivator';

// Add this:
public $requireActivation false

I did look at the registration code and that is what tells it not to send and email.

Good Luck.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#3

@InsiteFX
Thanks for help
And as your answer, i find
$this->config->requireActivation !== false ? $user->generateActivateHash() : $user->activate();

Thanks thanks

Learning CI4 from my works, from errors and how to fix bugs in the community

Love CI & Thanks CI Teams

Reply
#4

Right but if you set the Auth config item to false it should not send the email.
What did you Try? What did you Get? What did you Expect?

Joined CodeIgniter Community 2009.  ( Skype: insitfx )
Reply
#5

(09-13-2020, 12:00 PM)InsiteFX Wrote: Right but if you set the Auth config item to false it should not send the email.

Thanks,

Learning CI4 from my works, from errors and how to fix bugs in the community

Love CI & Thanks CI Teams

Reply
#6

Not sure if this is still relevant. W head a similar use case where we do not want to capture user emails at all. In addition to following the given instructions on the thread, we also had to comment out the email field from the $validationRules property of the UserModel. We did this by extending the UserModel to create a new Model in our app Namespace and then overriding this property without the email in that new model and using that model at most of the places. This worked for us, but I am not sure if this is the right way to go. Any suggestions will be appreciated.
Reply
#7

@anup you might want to take a look at the upcoming CodeIgniter Shield auth solution, as it intentionally decouples user identities (like email) from the functions.
Reply
#8

(This post was last modified: 09-24-2022, 10:33 AM by stipica.)

...so i have myth-auth worked in previous project. It was version 1.0-beta.3.

I am now trying to use version v1.2.0. Installation worked fine but when I try to register new user I got an error:

Class 'CodeIgniter\Entity\Entity' not found

I don't have any idea what am i doing wrong.
Here is the screenshot, please give some advice:


[Image: ci4-error.png]
Reply
#9

The screenshot didn't come through. Can you try posting it again? Or the complete stack trace of the exception?

CodeIgniter Wizard (CRUD code generator for Mac) instantly scaffolds Bootstrap-based web applications with an administrative interface (admin templates include Bootstrap5)

Reply




Theme © iAndrew 2016 - Forum software by © MyBB