Modesy - Marketplace & Classified Ads Script

Modesy - Marketplace & Classified Ads Script V2.5.2

No permission to download

MrSam_1

Well-known member
Administrative
Trusted Seller
Dec 1, 2018
23,599
26,952
120
On the second part of adding a product the details page the CSS is broke
when I replace the original system files it's giving me an invalid licence key so I can not confirm if its the null patch that doing this

I have tested on different browsers and different computers are still the same so it looks to be in the code

can anyone confirm if there having the same issue?

Check with developer tools in chrome (for example) or any tool of your convenience and see the errors that appear when loading your website. More than sure there are some 404 or 403 errors.
 

phpCore

ReLOADED
Trusted Uploader
Banned User
Jun 6, 2020
1,511
1,657
120
127.0.0.1/::1
On the second part of adding a product the details page the CSS is broke
when I replace the original system files it's giving me an invalid licence key so I can not confirm if its the null patch that doing this

I have tested on different browsers and different computers are still the same so it looks to be in the code

can anyone confirm if there having the same issue?
css1.png

You can check the original files within the system directory. Functions are set only in order to do license check/validation with the ugly script stop.
Can you confirm that the original files have css or js inclusion anywhere ? No.
Have you an antivirus (kaspersky for example with its js inclusion in each web page) ?
Have you adblock enabled ?
Tried another browser ?
Cleared the cache (use ccleaner for example) ?
 

Proxybunker

Well-known member
Jan 3, 2021
2,660
1,841
120
codecanyonscripts.com
You can check the original files within the system directory. Functions are set only in order to do license check/validation with the ugly script stop.
Can you confirm that the original files have css or js inclusion anywhere ? No.
Have you an antivirus (kaspersky for example with its js inclusion in each web page) ?
Have you adblock enabled ?
Tried another browser ?
Cleared the cache (use ccleaner for example) ?
I did all the clearing of the cache I have it installed on my server
I will test an install locally just in case its to do with the server config as well
 

yomyom

New member
Oct 26, 2020
21
3
3
Hello, Can you help me . this is what i get after installation

Invalid License Code!

kindly help

Thanks
 

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,607
2,060
120
Near You

New Update!


8 November 21 – Version 1.9

- Added Help Center (With Ticket System and Knowledge Base)
- Added Refund System
- Added Shops Page
- Added Reject Item Option
- Added AJAX Post for Add to cart and Wishlist buttons
- Added File Input Option for Shop Opening Form (With Description Option)
- Added Bitcoin (BTC) Payout Option for Vendors
- Added Categories to the Search Bar
- Added New Newsletter System
- Added External Link Option to Bulk Product Upload System
- Added Shipping System Warning for Vendors
- Added Show/Hide Category on the Menu Option
- Updated Main Navigation
- Updated Email Settings Section (Added Encryption and "Reply to" Options)
- Fixed Shipping Location Selection bug
- Fixed Reported Bugs

Clean Version Not Nulled


@White Devil
 

ShadowWalker126

New member
Jul 8, 2022
0
1
0

New Update!


8 November 21 – Version 1.9

- Added Help Center (With Ticket System and Knowledge Base)
- Added Refund System
- Added Shops Page
- Added Reject Item Option
- Added AJAX Post for Add to cart and Wishlist buttons
- Added File Input Option for Shop Opening Form (With Description Option)
- Added Bitcoin (BTC) Payout Option for Vendors
- Added Categories to the Search Bar
- Added New Newsletter System
- Added External Link Option to Bulk Product Upload System
- Added Shipping System Warning for Vendors
- Added Show/Hide Category on the Menu Option
- Updated Main Navigation
- Updated Email Settings Section (Added Encryption and "Reply to" Options)
- Fixed Shipping Location Selection bug
- Fixed Reported Bugs

Clean Version Not Nulled


@White Devil
THANKS FOR SHARING 😘😘😘
 

Triggenx

New member
Jul 12, 2022
0
0
0

New Update!


8 November 21 – Version 1.9

- Added Help Center (With Ticket System and Knowledge Base)
- Added Refund System
- Added Shops Page
- Added Reject Item Option
- Added AJAX Post for Add to cart and Wishlist buttons
- Added File Input Option for Shop Opening Form (With Description Option)
- Added Bitcoin (BTC) Payout Option for Vendors
- Added Categories to the Search Bar
- Added New Newsletter System
- Added External Link Option to Bulk Product Upload System
- Added Shipping System Warning for Vendors
- Added Show/Hide Category on the Menu Option
- Updated Main Navigation
- Updated Email Settings Section (Added Encryption and "Reply to" Options)
- Fixed Shipping Location Selection bug
- Fixed Reported Bugs

Clean Version Not Nulled


@White Devil
NUll Please
 

armandillo

New member
May 12, 2020
18
1
3
I have the same problem. how can I solve it? v1.9
if you really want to use it on an online site. never settle for downloading> installing> using

(I have the modesy online script for a store running without any problem) what you have to do is review the entire script and read all the lines of code to detect possible errors or malicious code. I have not had problems in the script, security or functionality errors. I have it all 100%. Before using it, I had to go through it line by line and clean up the entire script. (That is my advice from my experience)
 

Triggenx

New member
Jul 12, 2022
0
0
0
I upgraded from v1.8 - 1.9.
in admin/currency-settings
A PHP Error was encountered
Severity: Notice

Message: Undefined variable: currencies

Filename: currency/currency_settings.php

Line Number: 162

Backtrace:

File: /home/xxxxx/public_html/application/views/admin/currency/currency_settings.php
Line: 162
Function: _error_handler

File: /home/xxxxx/public_html/application/controllers/Admin_controller.php
Line: 531
Function: view

File: /home/xxxxx/public_html/index.php
Line: 328
Function: require_once
 

Triggenx

New member
Jul 12, 2022
0
0
0
Yes, it's a bug... You can wrap the foreach ($currencies as $item): xxx endforeach; in line 162 with if (!empty($currencies)) : xxx endif;
The file Admin_controller.php v1.9 is missing $data['currencies'] = $this->currency_model->get_currencies();
 
  • Like
Reactions: pmak47

Triggenx

New member
Jul 12, 2022
0
0
0
I fixed the error :
add :
$data['currencies'] = $this->currency_model->get_currencies();
to line 529 file (public_html/application/controllers/Admin_controller.php)

And repeat (public_html/application/helpers/product_helper.php)
//get price
if (!function_exists('get_price')) {
function get_price($price, $format_type)
{
$ci =& get_instance();
if ($format_type == "input") {
$price = $price / 100;
if (filter_var($price, FILTER_VALIDATE_INT) !== false) {
$price = number_format($price, 0, ".", "");
} else {
$price = number_format($price, 2, ".", "");
}
if ($ci->thousands_separator == ',') {
$price = str_replace('.', ',', $price);
}
return $price;
} elseif ($format_type == "decimal") {
$price = $price / 100;
if (filter_var($price, FILTER_VALIDATE_INT) !== false) {
return number_format($price, 0, ".", "");
} else {
return number_format($price, 2, ".", "");
}
} elseif ($format_type == "database") {
$price = str_replace(',', '.', $price);
$price = floatval($price);
$price = number_format($price, 2, '.', '') * 100;
return $price;
} elseif ($format_type == "separator_format") {
$price = $price / 100;
$dec_point = '.';
$thousands_sep = ',';
if ($ci->thousands_separator != '.') {
$dec_point = ',';
$thousands_sep = '.';
}
return number_format($price, 2, $dec_point, $thousands_sep);
}
}

}
 
  • Like
Reactions: pmak47

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,607
2,060
120
Near You

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