• Take time to read Forum Rules | Hot Note | Why You Choose Us?

    Let try and keep the forum Post, comments and reviews in English

    Thank you for being part of our growing community of learners and developers.
    — The Scriptzhub Team

Garage Master - Garage Management System

Garage Master - Garage Management System v4.6.5

No permission to download
Codeyon ITServices

Avinash

Administrator
Staff member
LV
0
 
Avinash submitted a new resource:

Garage Master - Garage Management System - The Plugin works best on Cpanel/WHM enabled hosting

Garage Master - Garage Management System - CodeCanyon Item for Sale


The Plugin works best on Cpanel/WHM enabled hosting. Usage/installation on Nginx / Plesk is not recommended and we will not be able to provide support for the same..

Read more about this resource...
 
Avinash updated Garage Master - Garage Management System with a new update entry:

Garage Master - Garage Management System v4.0.0

[Improvement] Add multiple notes feature to the following modules:
- Supplier
- Product
- Purchase
- Customer
- Vehicle
- Jobcard
- Quotation
- Invoice
[Improvement] Display the total amount for all invoices within a selected date range in the report module.
[Improvement] Design an email template for sent mails.
[Improvement] Add some default observation libraries.
[Bug] Fix tax issue in the view invoice module.

Read the rest of this update entry...
 
Avinash updated Garage Master - Garage Management System with a new update entry:

Garage Master - Garage Management System v4.2.0

[Improvement] Translate MOT module strings in other language.
[Improvement] Open specific module on "Open In Garage" button click in email
[Improvement] Add modal popup - select brand label add
[Improvement] Add modal popup - add validation to select branch or auto select 1st brand
[Bug] Stripe key field limit issue fixed
[Bug] Update branch issue fixed.
[Bug] Other branch should have different location address in invoice - fixed.
[Bug] if we add part from service invoice should be less from...

Read the rest of this update entry...
 
Avinash updated Garage Master - Garage Management System with a new update entry:

Garage Master - Garage Management System v4.3.0

[Improvement] Car condition or car damange marker integration in car image
[Improvement] Export card marked image as pdf or image
[Improvement] Add Custom error page and replace default error page. Email error/credentials
[Improvement] Email setting - Add Test email Button for sending test email
[Improvement] Add default payment method cash and card
[Improvement] Dashboard : add sample data -when user click on button it automatically add sample data
[Improvement] Change Observation Dropdown...

Read the rest of this update entry...
 
Avinash updated Garage Master - Garage Management System with a new update entry:

Garage Master - Garage Management System v4.6.5

========v4.6.5=======

[Bug] Fixed license register issue
[Bug] Fixed ckeditor disable issue
[Bug] Fixed password reset mail sending issue
[Bug] Fixed accordian closed issue
[Bug] Fixed the edit part sell product list issue
[Bug] Fixed missing state & city issue
[Improvement] laravel version updated from laravel9 to laravel 12
[Improvement] password reset email notification template added
[Improvement] New feature selling price with margin,tax and discount added in product inventory...

Read the rest of this update entry...
 

How to bypass this version 4.4.0:


Open the file DomainController.php, located in:


Code:

..\app\Http\Controllers\



Step 01​

Comment or delete those lines from #23 to #79
(Server Verify)




Code:

$api_server = 'license.dasinfomedia.com';

// $whitelist = [
// '192.168.1.62',
// ];
// if (!in_array($domain_name, $whitelist)) {

$fp = @fsockopen($api_server, 80, $errno, $errstr, 2);
if (!$fp) {
$server_rerror = 'Down';
} else {
$server_rerror = "up";
}

if ($server_rerror == "up") {
$url = 'https://license.dasinfomedia.com/admin/api/license/register';
$fields = array(
'pkey' => $licence_key,
'email' => $purchase_email,
'domain' => $domain_name
);

$ch = curl_init();

curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $fields
));

$response = curl_exec($ch);

curl_close($ch);

// Parse the JSON response
$response_data = json_decode($response, true);
$result = $response_data['message'];

if ($result == 'Invalid license') {
return redirect('/domain')->with('message', '1');
die;
} elseif ($result == 'License already registered') {
return redirect('/domain')->with('message', '2');
die;
} elseif ($result == 'Please enter a valid URL') {
return redirect('/domain')->with('message', '3');
die;
} elseif ($result == 'Failed to register license') {
return redirect('/domain')->with('message', '4');
die;
}
} else {
return redirect('/domain')->with('message', '5');
die;
}
// }




Step 02​

Open the file instaltionController.php, located in:


Code:

..\app\Http\Controllers\


(Server Verify and Whitelist)
Comment or delete those lines from #44 to #128




Step 03​

Open the file CheckDomain.php, located in:


Code:

..\app\Http\Middleware\


Modify the line #33 to:
(remove the comma)



Code:

'localhost'


Comment or delete the line #34
(Whitelist and api licence)



Code:

// 'garagemaster_web.test',


Change the lines from #44 to #45
From:



Code:

$current_domain = $_SERVER['SERVER_NAME'];
$current_domain = preg_replace('/^www\./', '', $current_domain);


To:



Code:

$result = ($current_domain == $registered_domain);
if ($result) {


Comment or delete the lines from #46 to #90


it is okay, the script is bypassed

 
Back
Top