CT
Asked
I have having Error 500 with user edits with regards to group changes
users created cant login
same with changing user permissions(groups)
Unable to reset password same errors 500 as well.
I am using version 1.0.0
Kindly advise.
users created cant login
same with changing user permissions(groups)
Unable to reset password same errors 500 as well.
I am using version 1.0.0
Kindly advise.
Attachments
- MSAnsweredHello,
The login issue, please edit `store` method of `app/Http/Controllers/UsersController.php` and add the line below before `$user = User::create($v);`
```php
$v['password'] = \Illuminate\Support\Facades\Hash::make($v['password']);
```
For others, please check the latest log file in the `storage/logs/` folder and let me know the error details so that I can suggest.
Just a thought, did you update your email settings at the system settings page? If you please update them and check forgor password again.
Thank you - Login to Reply