Ask, reply and learn. Join the community of Akaunting.
Hello team,
i have trouble creating new user, previously i was able to do so.
when i change database connection to other database i can create but when i use current db its redirect me to create user page without any notification.
please help me troubleshoot that problem.
currently i think its validation issue, any more info that can help me solve this issue.
Regards
Hi Said,
Firstly please check user profile access is enabled?
Second one is about roles and permissions please check again.
Third one is about password correct issue please check again.
Tell us if you are doing it correctly these steps but still are not working.
Have a nice day!
Hello Batuhan,
After troubleshooting i realize it throws validation exception and automatic redirect to users registration page when in user register view it has following
@if (setting('general.use_gravatar', '0') == '1')
{{ Form::hidden('picture', trans_choice('general.pictures', 1)) }}
<div class="form-group col-md-6">
{!! Form::label('picture', trans_choice('general.pictures', 1), ['class' => 'control-label']) !!}
<div class="input-group">
<div class="input-group-addon"><i class="fa fa-picture-o"></i></div>
{!! Form::text('fake_picture', null, ['id' => 'fake_picture', 'class' => 'form-control', 'disabled' => 'disabled', 'placeholder' => trans('settings.appearance.use_gravatar')]) !!}
{!! Form::hidden('picture', null, ['id' => 'picture', 'class' => 'form-control']) !!}
</div>
</div>
@else
{{ Form::fileGroup('picture', trans_choice('general.pictures', 1)) }}
@endif
but when i remove the condition and only remain with
{{ Form::fileGroup('picture', trans_choice('general.pictures', 1)) }}
it access the store function and manage to store i hope you will work on it.
Hi Said,
Actually we solved this problem with new version(1.2.13), please check it out!
Have a nice day!
Showing 1 to 4 of 4 discussions