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: 52
  • Like
Reactions: Red dragon

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,599
26,952
120
I'm totally curious from where you've got this and also made a resource out of it.
 

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,599
26,952
120
Please send by PM proof of purchase meaning a screenshot from your codecanyon account where this item appear
 

Makinlak

New member
Oct 28, 2019
27
7
3
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?
 

pepegrillo12

Active member
Trusted Uploader
Jul 15, 2020
197
58
28
[QUOTE = "scalvadev, publicación: 382231, miembro: 110154"]
lo compré en codecanyon y lo usé

1612228898615.png
[/CITAR]
pueden d my buddy? thank you
 

uptomods

New member
Jul 20, 2022
0
1
0
India
uptomods.com
Just try and its work, thanks


Thank so much. Dear admin @Tomz 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;
 

sojibzump3

New member
Jun 26, 2022
0
1
0
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
 

DJJigsaw

Active member
Nov 10, 2020
255
137
43
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.
 

DJJigsaw

Active member
Nov 10, 2020
255
137
43
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
 

uptomods

New member
Jul 20, 2022
0
1
0
India
uptomods.com
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
 

Zekiel.j

New member
Jul 6, 2022
0
0
0
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
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu