Hi I am using October CMS, after installation when i try to login. I get "No User found", error.
After logging in to MySQL, doing SELECT
for admin user, i get result :-
mysql> select * from backend_users;
Empty set (0.00 sec)
I need help in re-generating admin account. How can i do it ?
Thanks
One solution is that you can delete all your tables from database(if you don't have critical data in tables) and fire following command from console
php artisan october:up
This command fire all migration(create table) and seed all datas.