I was able to bypass ADMIN redirect and clean installation if you need help regarding the installation contact me.
Now to fix the problem with admin redirection you need to go to
/public_html/
vendor/mehedi-iitdu/core-component-repository/src/CoreComponentRepository.php
and change
"
protected static function finalizeRepository($rn) {
if($rn != 'nice') {
return redirect('
https://activeitzone.com/check/')->send();
}
"
to
"
protected static function finalizeRepository($rn) {
if($rn != 'nice') {
return redirect()->route('admin.dashboard');
}
"
This is the quickest way