• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

ERPGo SaaS - All In One Business ERP With Project, Account, HRM, CRM & POS

ERPGo SaaS - All In One Business ERP With Project, Account, HRM, CRM & POS 6.5

No permission to download
Hi, guys!

It seems like the installer is broken, it's not working as it should. Could there be a missing PHP extension or something similar on my cPanel server?

Can anyone help me, please?

Thanks.
Screenshot_1.png
 
Hi, guys!

It seems like the installer is broken, it's not working as it should. Could there be a missing PHP extension or something similar on my cPanel server?

Can anyone help me, please?

Thanks.
Screenshot_1.png
i have same problem, u can do install, but after complete, the site also have same view.
 

Attachments

  • Snapshot_240322173625.png
    Snapshot_240322173625.png
    21.7 KB · Views: 11
I installed it, it works and works fine
what panel you use? im using cloudpanel, now i can see my app but, i cant change the logo and favicon, im try add my nginx config (docs), but still have same problem, anyone know what should i do?
 

Attachments

  • Snapshot_240324030142.png
    Snapshot_240324030142.png
    235.3 KB · Views: 13
You have to check the password reset confirmation link sent to the email, it was problematic for me and I have successfully resolved it
Hi i found same problem (Server Error 500) after i click the reset link, can you share how you solve that issue?

thanks
 
Hi i found same problem (Server Error 500) after i click the reset link, can you share how you solve that issue?

thanks
open this file:
resources\views\auth\passwords\reset.blade

replace this code in the line 40:
Code:
<input type="hidden" name="token" value="{{ $token }}">

with this:
Code:
<input type="hidden" name="token" value="<?php echo isset($token) ? $token : '';?>">
 
open this file:
resources\views\auth\passwords\reset.blade

replace this code in the line 40:
Code:
<input type="hidden" name="token" value="{{ $token }}">

with this:
Code:
<input type="hidden" name="token" value="<?php echo isset($token) ? $token : '';?>">
1712072738329.png

Hi, I've tried it with panel editor, but the server error 500 still appears. Is there a step I need to do after that?
 
chage reset.blade with this:
Code:
@extends('layouts.auth')
@php
  //  $logo=asset(Storage::url('uploads/logo/'));
    $logo=\App\Models\Utility::get_file('uploads/logo');
 $company_logo=Utility::getValByName('company_logo');
@endphp
@section('page-title')
    {{__('Forgot Password')}}
@endsection

@php
    $languages = App\Models\Utility::languages();
@endphp
@section('language-bar')
    <div class="lang-dropdown-only-desk">
        <li class="dropdown dash-h-item drp-language">
            <a class="dash-head-link dropdown-toggle btn" href="#" data-bs-toggle="dropdown" aria-expanded="false">
                <span class="drp-text"> {{ $languages['en'] }}
                </span>
            </a>
        </li>
    </div>
@endsection

@section('content')
    <div class="card-body">
        <div>
            <h2 class="mb-3 f-w-600">{{ __('Reset Password') }}</h2>
            {{-- <p>{{ __('Sign in by entering the information below?') }} </p> --}}
        </div>
    {{Form::open(array('route'=>'password.update','method'=>'post','id'=>'loginForm'))}}
    <input type="hidden" name="token" value="<?php echo isset($token) ? $token : '';?>">
    <div class="">
        <div class="form-group mb-3">
            {{Form::label('email',__('E-Mail Address'),['class'=>'form-label'])}}
            {{Form::text('email',null,array('class'=>'form-control' , 'placeholder'=>__('Enter email')))}}
            @error('email')
            <span class="invalid-email text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="form-group mb-3">
            {{Form::label('password',__('Password'),['class'=>'form-label'])}}
            {{Form::password('password',array('class'=>'form-control' , 'placeholder'=>__('Enter Password')))}}
            @error('password')
            <span class="invalid-password text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="form-group mb-3">
            {{Form::label('password_confirmation',__('Password Confirmation'),['class'=>'form-label'])}}
            {{Form::password('password_confirmation',array('class'=>'form-control' , 'placeholder'=>__('Enter Confirm Password')))}}
            @error('password_confirmation')
            <span class="invalid-password_confirmation text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="d-grid">
            {{Form::submit(__('Reset'),array('class'=>'btn btn-primary btn-block mt-2','id'=>'resetBtn'))}}
        </div>

    </div>

    {{Form::close()}}
</div>

@endsection
 
  • Like
Reactions: phlovy
Code:
@extends('layouts.auth')
@php
  //  $logo=asset(Storage::url('uploads/logo/'));
    $logo=\App\Models\Utility::get_file('uploads/logo');
 $company_logo=Utility::getValByName('company_logo');
@endphp
@section('page-title')
    {{__('Forgot Password')}}
@endsection

@php
    $languages = App\Models\Utility::languages();
@endphp
@section('language-bar')
    <div class="lang-dropdown-only-desk">
        <li class="dropdown dash-h-item drp-language">
            <a class="dash-head-link dropdown-toggle btn" href="#" data-bs-toggle="dropdown" aria-expanded="false">
                <span class="drp-text"> {{ $languages['en'] }}
                </span>
            </a>
        </li>
    </div>
@endsection

@section('content')
    <div class="card-body">
        <div>
            <h2 class="mb-3 f-w-600">{{ __('Reset Password') }}</h2>
            {{-- <p>{{ __('Sign in by entering the information below?') }} </p> --}}
        </div>
    {{Form::open(array('route'=>'password.update','method'=>'post','id'=>'loginForm'))}}
    <input type="hidden" name="token" value="<?php echo isset($token) ? $token : '';?>">
    <div class="">
        <div class="form-group mb-3">
            {{Form::label('email',__('E-Mail Address'),['class'=>'form-label'])}}
            {{Form::text('email',null,array('class'=>'form-control' , 'placeholder'=>__('Enter email')))}}
            @error('email')
            <span class="invalid-email text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="form-group mb-3">
            {{Form::label('password',__('Password'),['class'=>'form-label'])}}
            {{Form::password('password',array('class'=>'form-control' , 'placeholder'=>__('Enter Password')))}}
            @error('password')
            <span class="invalid-password text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="form-group mb-3">
            {{Form::label('password_confirmation',__('Password Confirmation'),['class'=>'form-label'])}}
            {{Form::password('password_confirmation',array('class'=>'form-control' , 'placeholder'=>__('Enter Confirm Password')))}}
            @error('password_confirmation')
            <span class="invalid-password_confirmation text-danger" role="alert">
                        <strong>{{ $message }}</strong>
                    </span>
            @enderror
        </div>
        <div class="d-grid">
            {{Form::submit(__('Reset'),array('class'=>'btn btn-primary btn-block mt-2','id'=>'resetBtn'))}}
        </div>

    </div>

    {{Form::close()}}
</div>

@endsection
Wow, now it's work, thank you very much @Ultraboot19 !
 
Hi, guys!

It seems like the installer is broken, it's not working as it should. Could there be a missing PHP extension or something similar on my cPanel server?

Can anyone help me, please?

Thanks.
Screenshot_1.png
Did you find a solution to the problem?
 
I have the same problem while installing with CloudPanel.

Does anyone have a solution for this issue?

Thanks in advance...
 
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock