So i am learning the Yii Framework, and there is that thing with the built in admin/demo accounts when you first create the sceleton application. I would like to remove them cause even after uplodet to my webserver i can still log in with them. So where can i remove that please?
Share
In the folder protected/components/ you’ll have a file UserIdentity.php that’s where these default logins appear, you can change/remove them.
You can use your db to authenticate against your users table, somewhat like this:
Check this article in the guide.