I'm using symfony 1.2 with sfguard 1.4.1. What's the best practice for registering a new user on the system?
How to add users to sfguard
It's:
symfony guard:create-user <username> <password>
You can use sfDoctrineApply. This plugin generates the necessary templates for creating and validating users in the frontend. It can also send emails to users to validated accounts. It's necessary to install ZendMail.
© 2022 - 2024 — McMap. All rights reserved.
symfony guard:create-user email name password
you can also add--is-super-admin
to grant that user super admin permissions. – Pisci