We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

How to use email to register account for Phosphorum

How to use email to register account?

Need to install other Libs?



43.9k

Hi,

did you run the composer install commeand. If yes, you should have installed all the required libraries.

Then, check if you .env file is ok ( see here https://github.com/phalcon/forum/blob/master/.env.example#L60)

Hi,

did you run the composer install commeand. If yes, you should have installed all the required libraries.

Then, check if you .env file is ok ( see here https://github.com/phalcon/forum/blob/master/.env.example#L60)

I have run the composer, and set up the email configuration,

Website only github login page,

Useless email login page,

I can not find the email login url


btlos bicycle



43.9k

Website only github login page

yes, forum user sessions use github oauth: https://github.com/phalcon/forum/blob/master/app/controller/SessionController.php

mail is used for sending reports/notifications to users.

If you want another kind of authentication system (and an user registration page), you will have to code it by your own. Modifying SessionController to fit your needs is a good starting point ;-)



43.9k