• 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"

Fleet Manager v5.0 - Vehicle Management & Booking System

scalvadev

New member
Jan 25, 2021
12
0
1
Fleet Manager v5.0 - Vehicle Management & Booking System

1612227981098.png

Fleet Manager v5.0 - Vehicle Management & Booking System
Fleet manager is a simple yet intuitive web application that provides a full, end-to-end Fleet management platform for fleet-based companies of all sizes. It enables the company to manage vehicles and drivers, customers, manage inventory, keep a track of income and expenses and get detailed periodical reports. This efficient web application would ease the task of managing complex tasks related to companies in the transportation business. You get API for your mobile & web apps to manage bookings and tracking.

Open your preferred web browser and enter anything in the purchase code field and also add your database detail, then click install..............DONE.
 

Attachments

  • 1612227903816.png
    1612227903816.png
    707.6 KB · Views: 56
  • Like
Reactions: Red dragon
I'm totally curious from where you've got this and also made a resource out of it.
 
Please send by PM proof of purchase meaning a screenshot from your codecanyon account where this item appear
 
Fleet Manager v5.0 - Vehicle Management & Booking System

1612227981098.png

Fleet Manager v5.0 - Vehicle Management & Booking System
Fleet manager is a simple yet intuitive web application that provides a full, end-to-end Fleet management platform for fleet-based companies of all sizes. It enables the company to manage vehicles and drivers, customers, manage inventory, keep a track of income and expenses and get detailed periodical reports. This efficient web application would ease the task of managing complex tasks related to companies in the transportation business. You get API for your mobile & web apps to manage bookings and tracking.

Open your preferred web browser and enter anything in the purchase code field and also add your database detail, then click install..............DONE.
Where is the download link?
 
[QUOTE = "scalvadev, publicación: 382231, miembro: 110154"]
lo compré en codecanyon y lo usé

1612228898615.png
[/CITAR]
pueden d my buddy? thank you
 
Just try and its work, thanks


Thank so much. Dear admin @Babak please help null 😁
Just edit the LaravelWebInstaller.php Controller
you can find this file in framework/app/Http/Controllers/LaravelWebInstaller.php
around line 90 there is a function install

public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = $this->check_status($code);

change
$xx = $this->check_status($code);
to
$xx = 1;


public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = 1;
 
Just try and its work, thanks



Just edit the LaravelWebInstaller.php Controller
you can find this file in framework/app/Http/Controllers/LaravelWebInstaller.php
around line 90 there is a function install

public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = $this->check_status($code);

change
$xx = $this->check_status($code);
to
$xx = 1;


public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = 1;
Thank you so much bro!! all the best
 
I found the purchase code part of the installer, now to test it and see if it can be done without it. Will update soon.
 
Just try and its work, thanks



Just edit the LaravelWebInstaller.php Controller
you can find this file in framework/app/Http/Controllers/LaravelWebInstaller.php
around line 90 there is a function install

public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = $this->check_status($code);

change
$xx = $this->check_status($code);
to
$xx = 1;


public function install(LaravelWebInstallerRequest $request, InstalledFileManager $fileManager)
{
$code = $request->purchase_code;
$xx = 1;

this won't work, but I did figure out that if you do

PHP:
    private function check_status($code)
    {
        $data = array("pcode" => $code, 'domain' => $_SERVER['SERVER_NAME']);
        $data_string = json_encode($data);

        $ch = curl_init('https://3xy2s8y7c9.execute-api.ap-south-1.amazonaws.com/prod');
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json',
            'Content-Length: ' . strlen($data_string))
        );

        $result = curl_exec($ch);
        return 1;
    }

then replace it with

PHP:
    private function check_status($code)
    {
                return 1;
    }

Then you can do a purchase code of 123456 or anything and it will install.

Now once you do that, you can then login with the login of

[email protected] : password (straight from the defaultadmin.php file)

it will work. I tested it :D
 
this won't work, but I did figure out that if you do

PHP:
    private function check_status($code)
    {
        $data = array("pcode" => $code, 'domain' => $_SERVER['SERVER_NAME']);
        $data_string = json_encode($data);

        $ch = curl_init('https://3xy2s8y7c9.execute-api.ap-south-1.amazonaws.com/prod');
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array(
            'Content-Type: application/json',
            'Content-Length: ' . strlen($data_string))
        );

        $result = curl_exec($ch);
        return 1;
    }

then replace it with

PHP:
    private function check_status($code)
    {
                return 1;
    }

Then you can do a purchase code of 123456 or anything and it will install.

Now once you do that, you can then login with the login of

[email protected] : password (straight from the defaultadmin.php file)

it will work. I tested it :D
Yap, I don't know but my method works for me
Your method also works well
Actually thats only need to bypass check_status function and it should be working fine
 
After trying DJJigsaw's method and Newbie25's method, all i'm getting is

404
Oops! Page not found.
We could not find the page you were looking for. Meanwhile, you may return to dashboard.

the page redirects me to

any help

i installed v6
 
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